aboutsummaryrefslogtreecommitdiff
path: root/doc/base/classes.xml
diff options
context:
space:
mode:
authorJan Heemstra2016-04-27 16:10:10 +0200
committerJan Heemstra2016-04-27 16:10:10 +0200
commitedff81c2142f75d811263dafed42fd817e407be0 (patch)
treeca353284fc4bd12481e291c89d0c0bf8cb6735c4 /doc/base/classes.xml
parentf2a73816c2202f0f155086e451a73f76fba67c42 (diff)
downloadgodot-edff81c2142f75d811263dafed42fd817e407be0.tar.gz
godot-edff81c2142f75d811263dafed42fd817e407be0.tar.zst
godot-edff81c2142f75d811263dafed42fd817e407be0.zip
Documented WeakRef and member functions
Diffstat (limited to '')
-rw-r--r--doc/base/classes.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 03fdfa5f6..5d8cc40a2 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -43298,14 +43298,17 @@ This method controls whether the position between two cached points is interpola
</class>
<class name="WeakRef" inherits="Reference" category="Core">
<brief_description>
+ Holds a [Reference] object, but does not contribute to the reference count of that reference.
</brief_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>
<methods>
<method name="get_ref" qualifiers="const">
- <return type="Object">
+ <return type="Reference">
</return>
<description>
+ Returns the reference this weakref is referring to.
</description>
</method>
</methods>