diff options
author | Gilles Roudière <gilles.roudiere@gmail.com> | 2022-12-07 12:11:28 +0100 |
---|---|---|
committer | Gilles Roudière <gilles.roudiere@gmail.com> | 2022-12-12 11:04:57 +0100 |
commit | be1c9d677d8bab3a14d4f966da313dd6d2dd3428 (patch) | |
tree | ebff4fcb211639e1cf257cf04d66ce658375b906 /doc/classes/GDExtensionManager.xml | |
parent | c241f1c52386b21cf2df936ee927740a06970db6 (diff) | |
download | redot-engine-be1c9d677d8bab3a14d4f966da313dd6d2dd3428.tar.gz |
Rename all gdnative occurences to gdextension
Non-exhaustive list of case-sensitive renames:
GDExtension -> GDNative
GDNATIVE -> GDEXTENSION
gdextension -> gdnative
ExtensionExtension ->Extension (for where there was GDNativeExtension)
EXTENSION_EXTENSION ->EXTENSION (for where there was GDNATIVE_EXTENSION)
gdnlib -> gdextension
gdn_interface -> gde_interface
gdni -> gde_interface
Diffstat (limited to 'doc/classes/GDExtensionManager.xml')
-rw-r--r-- | doc/classes/GDExtensionManager.xml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/doc/classes/GDExtensionManager.xml b/doc/classes/GDExtensionManager.xml new file mode 100644 index 0000000000..f682d800c6 --- /dev/null +++ b/doc/classes/GDExtensionManager.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class name="GDExtensionManager" inherits="Object" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> + <brief_description> + </brief_description> + <description> + </description> + <tutorials> + </tutorials> + <methods> + <method name="get_extension"> + <return type="GDExtension" /> + <param index="0" name="path" type="String" /> + <description> + </description> + </method> + <method name="get_loaded_extensions" qualifiers="const"> + <return type="PackedStringArray" /> + <description> + </description> + </method> + <method name="is_extension_loaded" qualifiers="const"> + <return type="bool" /> + <param index="0" name="path" type="String" /> + <description> + </description> + </method> + <method name="load_extension"> + <return type="int" enum="GDExtensionManager.LoadStatus" /> + <param index="0" name="path" type="String" /> + <description> + </description> + </method> + <method name="reload_extension"> + <return type="int" enum="GDExtensionManager.LoadStatus" /> + <param index="0" name="path" type="String" /> + <description> + </description> + </method> + <method name="unload_extension"> + <return type="int" enum="GDExtensionManager.LoadStatus" /> + <param index="0" name="path" type="String" /> + <description> + </description> + </method> + </methods> + <constants> + <constant name="LOAD_STATUS_OK" value="0" enum="LoadStatus"> + </constant> + <constant name="LOAD_STATUS_FAILED" value="1" enum="LoadStatus"> + </constant> + <constant name="LOAD_STATUS_ALREADY_LOADED" value="2" enum="LoadStatus"> + </constant> + <constant name="LOAD_STATUS_NOT_LOADED" value="3" enum="LoadStatus"> + </constant> + <constant name="LOAD_STATUS_NEEDS_RESTART" value="4" enum="LoadStatus"> + </constant> + </constants> +</class> |