Documented WeakRef and member functions

This commit is contained in:
Jan Heemstra 2016-04-27 16:10:10 +02:00
parent f2a73816c2
commit edff81c214
1 changed files with 4 additions and 1 deletions

View File

@ -43298,14 +43298,17 @@ This method controls whether the position between two cached points is interpola
</class> </class>
<class name="WeakRef" inherits="Reference" category="Core"> <class name="WeakRef" inherits="Reference" category="Core">
<brief_description> <brief_description>
Holds a [Reference] object, but does not contribute to the reference count of that reference.
</brief_description> </brief_description>
<description> <description>
A weakref holds a [Reference], without contributing to it's reference counter. A weakref can be created from a reference using [method @GDScript.weakref]. Weakrefs are useful in cases where multiple classes have variables that refer to eachother. Without weakrefs, using these classes could lead to memory leaks, since both references keep eachother from being released. Making part of the variables a weakref can prevent this cyclic dependency, and allows the references to be released.
</description> </description>
<methods> <methods>
<method name="get_ref" qualifiers="const"> <method name="get_ref" qualifiers="const">
<return type="Object"> <return type="Reference">
</return> </return>
<description> <description>
Returns the reference this weakref is referring to.
</description> </description>
</method> </method>
</methods> </methods>