Reference

Inherits: Object

Inherited By: ARVRInterface, AStar, AnimationTrackEditPlugin, AudioEffectInstance, AudioStreamPlayback, ConfigFile, Directory, EditorExportPlugin, EditorImportPlugin, EditorInspectorPlugin, EditorResourceConversionPlugin, EditorResourcePreviewGenerator, EditorSceneImporter, EditorScenePostImport, EditorScript, EncodedObjectAsID, Expression, File, FuncRef, GDNative, GDScriptFunctionState, GDScriptNativeClass, HTTPClient, JSONParseResult, KinematicCollision, KinematicCollision2D, Marshalls, MeshDataTool, MultiplayerAPI, Mutex, PCKPacker, PackedDataContainerRef, PacketPeer, Physics2DShapeQueryParameters, Physics2DShapeQueryResult, Physics2DTestMotionResult, PhysicsShapeQueryParameters, PhysicsShapeQueryResult, RandomNumberGenerator, RegEx, RegExMatch, Resource, ResourceFormatLoader, ResourceFormatSaver, ResourceImporter, ResourceInteractiveLoader, SceneState, SceneTreeTimer, Semaphore, SpatialGizmo, SpatialVelocityTracker, StreamPeer, SurfaceTool, TCP_Server, Thread, TriangleMesh, UPNP, UPNPDevice, VisualScriptFunctionState, WeakRef, XMLParser

Category: Core

Brief Description

Base class for reference-counted objects.

Description

Base class for any object that keeps a reference count. Resource and many other helper objects inherit this class.

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 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.

Method Descriptions

Initializes the internal reference counter. Use this only if you really know what you are doing.

Returns whether the initialization was successful.


  • bool reference ( )

Increments the internal reference counter. Use this only if you really know what you are doing.

Returns whether the increment was successful.


  • bool unreference ( )

Decrements the internal reference counter. Use this only if you really know what you are doing.

Returns whether the decrement was successful.