:github_url: hide .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Reference.xml. .. _class_Reference: Reference ========= **Inherits:** :ref:`Object` **Inherited By:** :ref:`AESContext`, :ref:`AnimationTrackEditPlugin`, :ref:`ARVRInterface`, :ref:`ARVRPositionalTracker`, :ref:`AStar`, :ref:`AStar2D`, :ref:`AudioEffectInstance`, :ref:`AudioStreamPlayback`, :ref:`CameraFeed`, :ref:`CharFXTransform`, :ref:`ConfigFile`, :ref:`Crypto`, :ref:`Directory`, :ref:`DTLSServer`, :ref:`EditorExportPlugin`, :ref:`EditorFeatureProfile`, :ref:`EditorInspectorPlugin`, :ref:`EditorResourceConversionPlugin`, :ref:`EditorResourcePreviewGenerator`, :ref:`EditorSceneImporter`, :ref:`EditorScenePostImport`, :ref:`EditorScript`, :ref:`EncodedObjectAsID`, :ref:`Expression`, :ref:`File`, :ref:`FuncRef`, :ref:`GDNative`, :ref:`GDScriptFunctionState`, :ref:`HashingContext`, :ref:`HMACContext`, :ref:`HTTPClient`, :ref:`JavaClass`, :ref:`JavaScriptObject`, :ref:`JSONParseResult`, :ref:`KinematicCollision`, :ref:`KinematicCollision2D`, :ref:`MeshDataTool`, :ref:`MultiplayerAPI`, :ref:`Mutex`, :ref:`PackedDataContainerRef`, :ref:`PacketPeer`, :ref:`PCKPacker`, :ref:`Physics2DShapeQueryParameters`, :ref:`Physics2DTestMotionResult`, :ref:`PhysicsShapeQueryParameters`, :ref:`PhysicsTestMotionResult`, :ref:`RandomNumberGenerator`, :ref:`RegEx`, :ref:`RegExMatch`, :ref:`Resource`, :ref:`ResourceFormatLoader`, :ref:`ResourceFormatSaver`, :ref:`ResourceImporter`, :ref:`ResourceInteractiveLoader`, :ref:`SceneState`, :ref:`SceneTreeTimer`, :ref:`SceneTreeTween`, :ref:`Semaphore`, :ref:`SkinReference`, :ref:`SpatialGizmo`, :ref:`SpatialVelocityTracker`, :ref:`StreamPeer`, :ref:`SurfaceTool`, :ref:`TCP_Server`, :ref:`Thread`, :ref:`TriangleMesh`, :ref:`Tweener`, :ref:`UDPServer`, :ref:`UPNP`, :ref:`UPNPDevice`, :ref:`VisualScriptFunctionState`, :ref:`WeakRef`, :ref:`WebRTCPeerConnection`, :ref:`XMLParser` Base class for reference-counted objects. .. rst-class:: classref-introduction-group Description ----------- Base class for any object that keeps a reference count. :ref:`Resource` and many other helper objects inherit this class. Unlike other :ref:`Object` types, References keep an internal reference counter so that they are automatically released when no longer in use, and only then. References therefore do not need to be freed manually with :ref:`Object.free`. In the vast majority of use cases, instantiating and using **Reference**-derived types is all you need to do. The methods provided in this class are only for advanced users, and can cause issues if misused. \ **Note:** In C#, references will not be freed instantly after they are no longer in use. Instead, garbage collection will run periodically and will free references that are no longer in use. This means that unused references will linger on for a while before being removed. .. rst-class:: classref-introduction-group Tutorials --------- - :doc:`When and how to avoid using nodes for everything <../tutorials/best_practices/node_alternatives>` .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +-------------------------+--------------------------------------------------------------------+ | :ref:`bool` | :ref:`init_ref` **(** **)** | +-------------------------+--------------------------------------------------------------------+ | :ref:`bool` | :ref:`reference` **(** **)** | +-------------------------+--------------------------------------------------------------------+ | :ref:`bool` | :ref:`unreference` **(** **)** | +-------------------------+--------------------------------------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_Reference_method_init_ref: .. rst-class:: classref-method :ref:`bool` **init_ref** **(** **)** Initializes the internal reference counter. Use this only if you really know what you are doing. Returns whether the initialization was successful. .. rst-class:: classref-item-separator ---- .. _class_Reference_method_reference: .. rst-class:: classref-method :ref:`bool` **reference** **(** **)** Increments the internal reference counter. Use this only if you really know what you are doing. Returns ``true`` if the increment was successful, ``false`` otherwise. .. rst-class:: classref-item-separator ---- .. _class_Reference_method_unreference: .. rst-class:: classref-method :ref:`bool` **unreference** **(** **)** Decrements the internal reference counter. Use this only if you really know what you are doing. Returns ``true`` if the decrement was successful, ``false`` otherwise. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`