diff options
author | Alexander Holland <alexander.holland@live.de> | 2016-02-25 19:25:29 +0100 |
---|---|---|
committer | Alexander Holland <alexander.holland@live.de> | 2016-02-25 19:25:29 +0100 |
commit | d093f558ab3b33766cc346d9964f59a6ba09ed58 (patch) | |
tree | 2d65fb310ef34099dd7d33416a31c7f715bb98b2 /doc | |
parent | 32e1a56cd3b016d6834fdd0734da0e2b8fbb5c6c (diff) |
expose md5 for file(s) to gdscript
Diffstat (limited to 'doc')
-rw-r--r-- | doc/base/classes.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 9f12c7cb52..e661edf558 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<doc version="2.0.rc1.custom_build" name="Engine Types"> +<doc version="2.0.stable.custom_build" name="Engine Types"> <class name="@GDScript" category="Core"> <brief_description> Built-in GDScript functions. @@ -10691,6 +10691,16 @@ Returns an empty String "" at the end of the list. <description> </description> </method> + <method name="get_md5" qualifiers="const"> + <return type="String"> + </return> + <argument index="0" name="path" type="String"> + </argument> + <description> + Returns on success, a md5 String representing the file of the given path. + else, empty String "". + </description> + </method> <method name="get_endian_swap"> <return type="bool"> </return> @@ -29909,6 +29919,22 @@ This method controls whether the position between two cached points is interpola <description> </description> </method> + <method name="is_node_instance_placeholder" qualifiers="const"> + <return type="bool"> + </return> + <argument index="0" name="idx" type="int"> + </argument> + <description> + </description> + </method> + <method name="get_node_instance_placeholder" qualifiers="const"> + <return type="String"> + </return> + <argument index="0" name="idx" type="int"> + </argument> + <description> + </description> + </method> <method name="get_node_instance" qualifiers="const"> <return type="PackedScene"> </return> |