Object

Struct Object 

#[repr(C)]
pub struct Object { /* private fields */ }
Expand description

Godot class Object.

This is the base class for all other classes at the root of the hierarchy. Every instance of Object can be stored in a Gd smart pointer.

Related symbols:

See also Godot docs for Object.

§Construction

This class is manually managed. You can create a new instance using Object::new_alloc().

Do not forget to call free() or hand over ownership to Godot.

Implementations§

§

impl Object

pub fn get_script(&self) -> Option<Gd<Script>>

pub fn set_script(&mut self, script: impl AsArg<Option<Gd<Script>>>)

pub fn connect( &mut self, signal: impl AsArg<StringName>, callable: &Callable, ) -> Error

pub fn connect_flags( &mut self, signal: impl AsArg<StringName>, callable: &Callable, flags: ConnectFlags, ) -> Error

§

impl Object

pub fn get_class(&self) -> GString

pub fn is_class(&self, class: impl AsArg<GString>) -> bool

pub fn set(&mut self, property: impl AsArg<StringName>, value: &Variant)

pub fn get(&self, property: impl AsArg<StringName>) -> Variant

pub fn set_indexed( &mut self, property_path: impl AsArg<NodePath>, value: &Variant, )

pub fn get_indexed(&self, property_path: impl AsArg<NodePath>) -> Variant

pub fn get_property_list(&self) -> Array<Dictionary>

pub fn get_method_list(&self) -> Array<Dictionary>

pub fn property_can_revert(&self, property: impl AsArg<StringName>) -> bool

pub fn property_get_revert(&self, property: impl AsArg<StringName>) -> Variant

pub fn set_meta(&mut self, name: impl AsArg<StringName>, value: &Variant)

pub fn remove_meta(&mut self, name: impl AsArg<StringName>)

pub fn get_meta(&self, name: impl AsArg<StringName>) -> Variant

To set the default parameters, use Self::get_meta_ex and its builder methods. See the book for detailed usage instructions.

pub fn get_meta_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetMeta<'a>

pub fn has_meta(&self, name: impl AsArg<StringName>) -> bool

pub fn get_meta_list(&self) -> Array<StringName>

pub fn add_user_signal(&mut self, signal: impl AsArg<GString>)

To set the default parameters, use Self::add_user_signal_ex and its builder methods. See the book for detailed usage instructions.

pub fn add_user_signal_ex<'a>( &'a mut self, signal: impl AsArg<GString> + 'a, ) -> ExAddUserSignal<'a>

pub fn has_user_signal(&self, signal: impl AsArg<StringName>) -> bool

pub fn remove_user_signal(&mut self, signal: impl AsArg<StringName>)

pub fn emit_signal( &mut self, signal: impl AsArg<StringName>, varargs: &[Variant], ) -> Error

§Panics

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will panic in such a case.

pub fn try_emit_signal( &mut self, signal: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Error, CallError>

§Return type

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will return Err in such a case.

pub fn call( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant

§Panics

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will panic in such a case.

pub fn try_call( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>

§Return type

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will return Err in such a case.

pub fn call_deferred( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant

§Panics

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will panic in such a case.

pub fn try_call_deferred( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>

§Return type

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will return Err in such a case.

pub fn set_deferred( &mut self, property: impl AsArg<StringName>, value: &Variant, )

pub fn callv( &mut self, method: impl AsArg<StringName>, arg_array: &Array<Variant>, ) -> Variant

pub fn has_method(&self, method: impl AsArg<StringName>) -> bool

pub fn get_method_argument_count(&self, method: impl AsArg<StringName>) -> i32

pub fn has_signal(&self, signal: impl AsArg<StringName>) -> bool

pub fn get_signal_list(&self) -> Array<Dictionary>

pub fn get_signal_connection_list( &self, signal: impl AsArg<StringName>, ) -> Array<Dictionary>

pub fn get_incoming_connections(&self) -> Array<Dictionary>

pub fn disconnect( &mut self, signal: impl AsArg<StringName>, callable: &Callable, )

pub fn is_connected( &self, signal: impl AsArg<StringName>, callable: &Callable, ) -> bool

pub fn has_connections(&self, signal: impl AsArg<StringName>) -> bool

pub fn set_block_signals(&mut self, enable: bool)

pub fn is_blocking_signals(&self) -> bool

pub fn notify_property_list_changed(&mut self)

pub fn set_message_translation(&mut self, enable: bool)

pub fn can_translate_messages(&self) -> bool

pub fn tr(&self, message: impl AsArg<StringName>) -> GString

To set the default parameters, use Self::tr_ex and its builder methods. See the book for detailed usage instructions.

pub fn tr_ex<'a>(&'a self, message: impl AsArg<StringName> + 'a) -> ExTr<'a>

pub fn tr_n( &self, message: impl AsArg<StringName>, plural_message: impl AsArg<StringName>, n: i32, ) -> GString

To set the default parameters, use Self::tr_n_ex and its builder methods. See the book for detailed usage instructions.

pub fn tr_n_ex<'a>( &'a self, message: impl AsArg<StringName> + 'a, plural_message: impl AsArg<StringName> + 'a, n: i32, ) -> ExTrN<'a>

pub fn get_translation_domain(&self) -> StringName

pub fn set_translation_domain(&mut self, domain: impl AsArg<StringName>)

pub fn is_queued_for_deletion(&self) -> bool

pub fn cancel_free(&mut self)

pub fn notify(&mut self, what: ObjectNotification)

⚠️ Sends a Godot notification to all classes inherited by the object.

Triggers calls to on_notification(), and depending on the notification, also to Godot’s lifecycle callbacks such as ready().

Starts from the highest ancestor (the Object class) and goes down the hierarchy. See also Godot docs for Object::notification().

§Panics

If you call this method on a user-defined object while holding a GdRef or GdMut guard on the instance, you will encounter a panic. The reason is that the receiving virtual method on_notification() acquires a GdMut lock dynamically, which must be exclusive.

pub fn notify_reversed(&mut self, what: ObjectNotification)

⚠️ Like Self::notify(), but starts at the most-derived class and goes up the hierarchy.

See docs of that method, including the panics.

Trait Implementations§

§

impl Bounds for Object

§

type Memory = MemManual

Defines the memory strategy of the static type.
§

type Declarer = DeclEngine

Whether this class is a core Godot class provided by the engine, or declared by the user as a Rust struct.
§

impl Debug for Object

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl GodotClass for Object

§

const INIT_LEVEL: InitLevel = crate::init::InitLevel::Core

Initialization level, during which this class should be initialized with Godot. Read more
§

type Base = NoBase

The immediate superclass of T. This is always a Godot engine class.
§

fn class_id() -> ClassId

Globally unique class ID, linked to the name under which the class is registered in Godot. Read more
§

fn class_name() -> ClassId

👎Deprecated: Renamed to class_id()
§

fn inherits<Base>() -> bool
where Base: GodotClass,

Returns whether Self inherits from Base. Read more
§

impl Inherits<Object> for AStar2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AStar3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AStarGrid2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AcceptDialog

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AesContext

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimatableBody2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimatableBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimatedSprite2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimatedSprite3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimatedTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Animation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationLibrary

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationMixer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeAdd2

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeAdd3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeAnimation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeBlend2

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeBlend3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeBlendSpace1D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeBlendSpace2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeBlendTree

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeOneShot

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeOutput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeStateMachine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeStateMachinePlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeStateMachineTransition

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeSub2

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeSync

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeTimeScale

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeTimeSeek

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationNodeTransition

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationPlayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationRootNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AnimationTree

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Area2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Area3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ArrayMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ArrayOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AspectRatioContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AtlasTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioBusLayout

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectAmplify

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectBandLimitFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectBandPassFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectCapture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectChorus

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectCompressor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectDelay

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectDistortion

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectEq

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectEq10

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectEq21

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectEq6

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectHardLimiter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectHighPassFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectHighShelfFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectInstance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectLimiter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectLowPassFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectLowShelfFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectNotchFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectPanner

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectPhaser

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectPitchShift

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectRecord

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectReverb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectSpectrumAnalyzer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectSpectrumAnalyzerInstance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioEffectStereoEnhance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioListener2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioListener3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioSample

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioSamplePlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStream

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamGeneratorPlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamInteractive

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamMicrophone

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamMp3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamOggVorbis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaybackInteractive

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaybackOggVorbis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaybackPlaylist

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaybackPolyphonic

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaybackResampled

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaybackSynchronized

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlayer2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlayer3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPlaylist

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamPolyphonic

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamRandomizer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamSynchronized

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for AudioStreamWav

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BackBufferCopy

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BaseButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BaseMaterial3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BitMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Bone2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BoneAttachment3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BoneMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BoxContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BoxMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BoxOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for BoxShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Button

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ButtonGroup

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CallbackTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Camera2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Camera3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CameraAttributes

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CameraAttributesPhysical

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CameraAttributesPractical

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CameraFeed

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CameraServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CameraTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CanvasGroup

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CanvasItem

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CanvasItemMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CanvasLayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CanvasModulate

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CanvasTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CapsuleMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CapsuleShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CapsuleShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CenterContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CharFxTransform

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CharacterBody2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CharacterBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CheckBox

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CheckButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CircleShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ClassDb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CodeEdit

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CodeHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CollisionObject2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CollisionObject3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CollisionPolygon2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CollisionPolygon3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CollisionShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CollisionShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ColorPalette

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ColorPicker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ColorPickerButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ColorRect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Compositor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompositorEffect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompressedCubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompressedCubemapArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompressedTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompressedTexture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompressedTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CompressedTextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConcavePolygonShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConcavePolygonShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConeTwistJoint3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConfigFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConfirmationDialog

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Container

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Control

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConvexPolygonShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ConvexPolygonShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CpuParticles2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CpuParticles3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Crypto

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CryptoKey

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgBox3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgCombiner3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgCylinder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgMesh3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgPolygon3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgPrimitive3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgSphere3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CsgTorus3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Cubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CubemapArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Curve

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Curve2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Curve3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CurveTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CurveXyzTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CylinderMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for CylinderShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for DampedSpringJoint2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Decal

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for DirAccess

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for DirectionalLight2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for DirectionalLight3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for DisplayServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for DtlsServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ENetConnection

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ENetMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ENetPacketPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorCommandPalette

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorContextMenuPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorDebuggerPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorDebuggerSession

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatform

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformAndroid

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformIos

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformLinuxBsd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformMacOs

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformPc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformWeb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlatformWindows

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorExportPreset

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorFeatureProfile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorFileDialog

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorFileSystem

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorFileSystemDirectory

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorFileSystemImportFormatSupportQuery

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorImportPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorInspector

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorInspectorPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorNode3DGizmo

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorNode3DGizmoPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorPaths

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorProperty

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorResourceConversionPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorResourcePicker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorResourcePreview

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorResourcePreviewGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorResourceTooltipPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSceneFormatImporter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSceneFormatImporterBlend

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSceneFormatImporterFbx2gltf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSceneFormatImporterGltf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSceneFormatImporterUfbx

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorScenePostImport

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorScenePostImportPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorScript

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorScriptPicker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSelection

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSpinSlider

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorSyntaxHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorToaster

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorTranslationParserPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorUndoRedoManager

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EditorVcsInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EncodedObjectAsId

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Engine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EngineDebugger

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for EngineProfiler

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Environment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Expression

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ExternalTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FastNoiseLite

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FbxDocument

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FbxState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FileAccess

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FileDialog

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FileSystemDock

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FlowContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FogMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FogVolume

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Font

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FontFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FontVariation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for FramebufferCacheRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GDExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GDExtensionManager

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GDScript

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GDScriptSyntaxHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Generic6DofJoint3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Geometry2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Geometry3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GeometryInstance3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfAccessor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfAnimation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfBufferView

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfCamera

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfDocument

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfDocumentExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfDocumentExtensionConvertImporterMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfLight

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfObjectModelProperty

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfPhysicsBody

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfPhysicsShape

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfSkeleton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfSkin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfSpecGloss

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GltfTextureSampler

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticles2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticles3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesAttractor3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesAttractorBox3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesAttractorSphere3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesAttractorVectorField3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesCollision3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesCollisionBox3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesCollisionHeightField3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesCollisionSdf3d

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GpuParticlesCollisionSphere3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Gradient

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GradientTexture1D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GradientTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GraphEdit

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GraphElement

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GraphFrame

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GraphNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GridContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GridMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GridMapEditorPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for GrooveJoint2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HBoxContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HFlowContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HScrollBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HSeparator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HSlider

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HSplitContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HashingContext

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HeightMapShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HingeJoint3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HmacContext

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HttpClient

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for HttpRequest

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Image

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImageFormatLoader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImageFormatLoaderExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImageTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImageTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImageTextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImmediateMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImporterMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ImporterMeshInstance3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Input

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEvent

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventAction

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventFromWindow

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventGesture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventJoypadButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventJoypadMotion

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventKey

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventMagnifyGesture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventMidi

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventMouse

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventMouseButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventMouseMotion

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventPanGesture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventScreenDrag

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventScreenTouch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventShortcut

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputEventWithModifiers

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InputMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for InstancePlaceholder

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for IntervalTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Ip

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ItemList

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for JavaObject

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Joint2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Joint3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Json

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for JsonRpc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for KinematicCollision2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for KinematicCollision3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Label

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Label3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LabelSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Light2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Light3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LightOccluder2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LightmapGi

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LightmapGiData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LightmapProbe

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Lightmapper

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LightmapperRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Line2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LineEdit

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LinkButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for LookAtModifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MainLoop

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MarginContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Marker2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Marker3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Marshalls

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Material

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MenuBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MenuButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Mesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MeshConvexDecompositionSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MeshDataTool

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MeshInstance2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MeshInstance3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MeshLibrary

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MeshTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MethodTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MissingNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MissingResource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MobileVrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MovieWriter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiMeshInstance2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiMeshInstance3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiplayerApi

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiplayerApiExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiplayerPeerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiplayerSpawner

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for MultiplayerSynchronizer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NativeMenu

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationAgent2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationAgent3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationLink2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationLink3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationMeshGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationMeshSourceGeometryData2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationMeshSourceGeometryData3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationObstacle2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationObstacle3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationPathQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationPathQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationPathQueryResult2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationPathQueryResult3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationPolygon

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationRegion2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationRegion3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationServer2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NavigationServer3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NinePatchRect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Node

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Node2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Node3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Node3DGizmo

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Noise

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NoiseTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for NoiseTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Occluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OccluderInstance3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OccluderPolygon2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OfflineMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OggPacketSequence

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OggPacketSequencePlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OmniLight3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrAction

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrActionBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrActionMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrActionSet

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrAnalogThresholdModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrApiExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrBindingModifierEditor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrCompositionLayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrCompositionLayerCylinder

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrCompositionLayerEquirect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrCompositionLayerQuad

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrDpadBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrExtensionWrapperExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrHand

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrHapticBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrHapticVibration

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrInteractionProfile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrInteractionProfileEditor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrInteractionProfileEditorBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrInteractionProfileMetadata

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrIpBinding

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXrVisibilityMask

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OpenXripBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OptimizedTranslation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OptionButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for OrmMaterial3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Os

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PackedDataContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PackedDataContainerRef

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PackedScene

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PacketPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PacketPeerDtls

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PacketPeerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PacketPeerStream

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PacketPeerUdp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Panel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PanelContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PanoramaSkyMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Parallax2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ParallaxBackground

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ParallaxLayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ParticleProcessMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Path2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Path3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PathFollow2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PathFollow3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PckPacker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Performance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicalBone2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicalBone3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicalBoneSimulator3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicalSkyMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsBody2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectBodyState2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectBodyState2DExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectBodyState3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectBodyState3DExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectSpaceState2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectSpaceState2DExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectSpaceState3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsDirectSpaceState3DExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsPointQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsPointQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsRayQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsRayQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer2DExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer2DManager

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer3DExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer3DManager

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsServer3DRenderingServerHandler

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsShapeQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsShapeQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsTestMotionParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsTestMotionParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsTestMotionResult2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PhysicsTestMotionResult3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PinJoint2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PinJoint3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderCubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderCubemapArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderTexture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaceholderTextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PlaneMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PointLight2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PointMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Polygon2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PolygonOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PolygonPathFinder

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Popup

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PopupMenu

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PopupPanel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PortableCompressedTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PrimitiveMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PrismMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ProceduralSkyMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ProgressBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ProjectSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for PropertyTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for QuadMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for QuadOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RandomNumberGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Range

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RayCast2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RayCast3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdAttachmentFormat

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdFramebufferPass

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdPipelineColorBlendState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdPipelineColorBlendStateAttachment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdPipelineDepthStencilState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdPipelineMultisampleState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdPipelineRasterizationState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdPipelineSpecializationConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdSamplerState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdShaderFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdShaderSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdShaderSpirv

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdTextureFormat

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdTextureView

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdUniform

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RdVertexAttribute

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RectangleShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RefCounted

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ReferenceRect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ReflectionProbe

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RegEx

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RegExMatch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RemoteTransform2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RemoteTransform3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderDataExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderDataRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneBuffers

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneBuffersConfiguration

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneBuffersExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneBuffersRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneDataExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderSceneDataRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderingDevice

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RenderingServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Resource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceFormatLoader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceFormatSaver

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterBitMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterBmFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterCsvTranslation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterDynamicFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterImage

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterImageFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterLayeredTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterMp3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterObj

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterOggVorbis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterScene

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterShaderFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterTextureAtlas

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceImporterWav

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceLoader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourcePreloader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceSaver

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ResourceUid

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RetargetModifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RibbonTrailMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RichTextEffect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RichTextLabel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RigidBody2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RigidBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for RootMotionView

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SceneMultiplayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SceneReplicationConfig

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SceneState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SceneTree

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SceneTreeTimer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Script

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScriptCreateDialog

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScriptEditor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScriptEditorBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScriptExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScriptLanguage

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScriptLanguageExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScrollBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ScrollContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SegmentShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SeparationRayShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SeparationRayShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Separator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Shader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ShaderGlobalsOverride

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ShaderInclude

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ShaderIncludeDb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ShaderMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Shape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Shape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ShapeCast2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ShapeCast3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Shortcut

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Skeleton2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Skeleton3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonIk3d

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2DJiggle

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2DLookAt

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2DPhysicalBones

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2DStackHolder

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2DTwoBoneIk

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2Dccdik

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModification2Dfabrik

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModificationStack2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonModifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonProfile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkeletonProfileHumanoid

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Skin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SkinReference

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Sky

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Slider

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SliderJoint3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SoftBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SphereMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SphereOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SphereShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpinBox

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SplitContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpotLight3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpringArm3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpringBoneCollision3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpringBoneCollisionCapsule3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpringBoneCollisionPlane3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpringBoneCollisionSphere3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpringBoneSimulator3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Sprite2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Sprite3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpriteBase3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SpriteFrames

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StandardMaterial3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StaticBody2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StaticBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StatusIndicator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StreamPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StreamPeerBuffer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StreamPeerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StreamPeerGzip

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StreamPeerTcp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StreamPeerTls

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StyleBox

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StyleBoxEmpty

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StyleBoxFlat

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StyleBoxLine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for StyleBoxTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SubViewport

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SubViewportContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SubtweenTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SurfaceTool

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SyntaxHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for SystemFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TabBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TabContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TcpServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextEdit

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextLine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextParagraph

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextServerAdvanced

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextServerDummy

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextServerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextServerManager

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture2DArrayRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture2Drd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Texture3Drd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureCubemapArrayRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureCubemapRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureLayeredRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureProgressBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TextureRect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Theme

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ThemeDb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileMapLayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileMapPattern

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileSet

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileSetAtlasSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileSetScenesCollectionSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TileSetSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Time

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Timer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TlsOptions

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TorusMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TouchScreenButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Translation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TranslationDomain

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TranslationServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Tree

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TreeItem

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TriangleMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for TubeTrailMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Tween

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Tweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for UdpServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for UndoRedo

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for UniformSetCacheRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Upnp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for UpnpDevice

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VBoxContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VFlowContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VScrollBar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VSeparator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VSlider

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VSplitContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VehicleBody3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VehicleWheel3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VideoStream

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VideoStreamPlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VideoStreamPlayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VideoStreamTheora

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Viewport

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ViewportTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisibleOnScreenEnabler2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisibleOnScreenEnabler3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisibleOnScreenNotifier2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisibleOnScreenNotifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualInstance3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeBillboard

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeBooleanConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeBooleanParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeClamp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeColorConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeColorFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeColorOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeColorParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeComment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeCompare

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeCubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeCubemapParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeCurveTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeCurveXyzTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeCustom

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeDerivativeFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeDeterminant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeDistanceFade

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeDotProduct

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeExpression

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFaceForward

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFloatConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFloatFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFloatOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFloatParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFrame

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeFresnel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeGlobalExpression

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeGroupBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeIf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeInput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeIntConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeIntFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeIntOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeIntParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeIs

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeLinearSceneDepth

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeMix

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeMultiplyAdd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeOuterProduct

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeOutput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParameterRef

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleAccelerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleBoxEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleConeVelocity

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleEmit

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleMeshEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleMultiplyByAxisAngle

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleOutput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleRandomness

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleRingEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeParticleSphereEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeProximityFade

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeRandomRange

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeRemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeReroute

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeResizableBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeRotationByAxis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeSample3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeScreenNormalWorldSpace

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeScreenUvToSdf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeSdfRaymarch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeSdfToScreenUv

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeSmoothStep

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeStep

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeSwitch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTexture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTexture2DArrayParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTexture2DParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTexture3DParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTextureParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTextureParameterTriplanar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTextureSdf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTextureSdfNormal

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformCompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformDecompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeTransformVecMult

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeUIntConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeUIntFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeUIntOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeUIntParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeUvFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeUvPolarCoord

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVarying

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVaryingGetter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVaryingSetter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVec2Constant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVec2Parameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVec3Constant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVec3Parameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVec4Constant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVec4Parameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorCompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorDecompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorDistance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorLen

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeVectorRefract

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VisualShaderNodeWorldPositionFromDepth

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VoxelGi

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for VoxelGiData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WeakRef

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebRtcDataChannel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebRtcDataChannelExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebRtcMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebRtcPeerConnection

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebRtcPeerConnectionExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebSocketMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebSocketPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WebXrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Window

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WorkerThreadPool

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for World2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for World3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WorldBoundaryShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WorldBoundaryShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for WorldEnvironment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for X509Certificate

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XmlParser

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrAnchor3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrBodyModifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrBodyTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrCamera3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrController3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrControllerTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrFaceModifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrFaceTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrHandModifier3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrHandTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrInterfaceExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrNode3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrOrigin3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrPose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrPositionalTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for XrTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for Xrvrs

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ZipPacker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<Object> for ZipReader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl WithSignals for Object

§

type SignalCollection<'c, C: WithSignals> = SignalsOfObject<'c, C>

The associated struct listing all signals of this class. Read more
§

impl GodotDefault for Object

Auto Trait Implementations§

§

impl Freeze for Object

§

impl RefUnwindSafe for Object

§

impl !Send for Object

§

impl !Sync for Object

§

impl Unpin for Object

§

impl UnwindSafe for Object

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Inherits<T> for T
where T: GodotClass,

§

const IS_SAME_CLASS: bool = true

True iff Self == Base. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> NewAlloc for T
where T: GodotDefault<Memory = MemManual> + Bounds,

§

fn new_alloc() -> Gd<T>

Return a new, manually-managed Gd containing a default-constructed instance. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> UniformObjectDeref<DeclEngine> for T
where T: GodotClass<Declarer = DeclEngine>,

§

type TargetRef<'a> = Gd<T>

§

type TargetMut<'a> = Gd<T>

§

fn object_as_ref<'a>( gd: &'a Gd<T>, ) -> <T as UniformObjectDeref<DeclEngine>>::TargetRef<'a>

§

fn object_as_mut<'a>( gd: &'a mut Gd<T>, ) -> <T as UniformObjectDeref<DeclEngine>>::TargetMut<'a>