d516aab8fa
Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="Reference" inherits="Object" category="Core" version="3.0-stable">
|
|
<brief_description>
|
|
Base class for anything that keeps a reference count.
|
|
</brief_description>
|
|
<description>
|
|
Base class for anything that keeps a reference count. Resource and many other helper objects inherit this. References keep an internal reference counter so they are only released when no longer in use.
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<demos>
|
|
</demos>
|
|
<methods>
|
|
<method name="init_ref">
|
|
<return type="bool">
|
|
</return>
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="reference">
|
|
<return type="bool">
|
|
</return>
|
|
<description>
|
|
Increase the internal reference counter. Use this only if you really know what you are doing.
|
|
</description>
|
|
</method>
|
|
<method name="unreference">
|
|
<return type="bool">
|
|
</return>
|
|
<description>
|
|
Decrease the internal reference counter. Use this only if you really know what you are doing.
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<constants>
|
|
</constants>
|
|
</class>
|