diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-10-07 18:57:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-07 18:57:27 +0200 |
commit | b17e71b6e5e035f49b5b3b5b55b9cdac80215d72 (patch) | |
tree | 90dcb48cb3c2c5a1d306c311b41655002c946a5a /modules/mono | |
parent | cebbb2a325cc028f8311e18ea050f91801385597 (diff) | |
parent | b150ceb62cfd91f11b62f823f3dd5517a640cbc3 (diff) |
Merge pull request #22808 from KellyThomas/vector-one
Add ONE constants to Vector2 and Vector3
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/doc_classes/GodotSharp.xml | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/modules/mono/doc_classes/GodotSharp.xml b/modules/mono/doc_classes/GodotSharp.xml index 985c66464b..921c1ca825 100644 --- a/modules/mono/doc_classes/GodotSharp.xml +++ b/modules/mono/doc_classes/GodotSharp.xml @@ -23,18 +23,44 @@ Detaches the current thread from the mono runtime. </description> </method> - <method name="is_domain_loaded"> + <method name="get_domain_id"> + <return type="int"> + </return> + <description> + </description> + </method> + <method name="get_scripts_domain_id"> + <return type="int"> + </return> + <description> + </description> + </method> + <method name="is_domain_finalizing_for_unload"> + <return type="bool"> + </return> + <argument index="0" name="domain_id" type="int"> + </argument> + <description> + Returns whether the domain is being finalized. + </description> + </method> + <method name="is_runtime_initialized"> + <return type="bool"> + </return> + <description> + </description> + </method> + <method name="is_runtime_shutting_down"> <return type="bool"> </return> <description> - Returns whether the scripts domain is loaded. </description> </method> - <method name="is_finalizing_domain"> + <method name="is_scripts_domain_loaded"> <return type="bool"> </return> <description> - Returns whether the scripts domain is being finalized. + Returns whether the scripts domain is loaded. </description> </method> </methods> |