pub struct RefCounted { /* private fields */ }Expand description
Godot class RefCounted.
Inherits Object.
Related symbols:
IRefCounted: virtual methods
See also Godot docs for RefCounted.
§Construction
This class is reference-counted. You can create a new instance using RefCounted::new_gd().
Implementations§
Source§impl RefCounted
impl RefCounted
pub fn get_reference_count(&self) -> i32
Methods from Deref<Target = 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
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>)
Sourcepub fn get_meta(&self, name: impl AsArg<StringName>) -> Variant
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>
Sourcepub fn add_user_signal(&mut self, signal: impl AsArg<GString>)
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>)
Sourcepub fn emit_signal(
&mut self,
signal: impl AsArg<StringName>,
varargs: &[Variant],
) -> Error
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.
Sourcepub fn try_emit_signal(
&mut self,
signal: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Error, CallError>
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.
Sourcepub fn call(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Variant
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.
Sourcepub fn try_call(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Variant, CallError>
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.
Sourcepub fn call_deferred(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Variant
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.
Sourcepub fn try_call_deferred(
&mut self,
method: impl AsArg<StringName>,
varargs: &[Variant],
) -> Result<Variant, CallError>
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
Sourcepub fn tr(&self, message: impl AsArg<StringName>) -> GString
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>
Sourcepub fn tr_n(
&self,
message: impl AsArg<StringName>,
plural_message: impl AsArg<StringName>,
n: i32,
) -> GString
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)
Sourcepub fn notify(&mut self, what: ObjectNotification)
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.
Sourcepub fn notify_reversed(&mut self, what: ObjectNotification)
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§
Source§impl Bounds for RefCounted
impl Bounds for RefCounted
Source§type Memory = MemRefCounted
type Memory = MemRefCounted
Source§type Declarer = DeclEngine
type Declarer = DeclEngine
Source§impl Debug for RefCounted
impl Debug for RefCounted
Source§impl Deref for RefCounted
impl Deref for RefCounted
Source§impl DerefMut for RefCounted
impl DerefMut for RefCounted
Source§impl GodotClass for RefCounted
impl GodotClass for RefCounted
Source§const INIT_LEVEL: InitLevel = crate::init::InitLevel::Core
const INIT_LEVEL: InitLevel = crate::init::InitLevel::Core
Source§fn class_id() -> ClassId
fn class_id() -> ClassId
Source§fn class_name() -> ClassId
fn class_name() -> ClassId
class_id()Source§impl Inherits<Object> for RefCounted
impl Inherits<Object> for RefCounted
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AStar2D
impl Inherits<RefCounted> for AStar2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AStar3D
impl Inherits<RefCounted> for AStar3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AStarGrid2D
impl Inherits<RefCounted> for AStarGrid2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AesContext
impl Inherits<RefCounted> for AesContext
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimatedTexture
impl Inherits<RefCounted> for AnimatedTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Animation
impl Inherits<RefCounted> for Animation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationLibrary
impl Inherits<RefCounted> for AnimationLibrary
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNode
impl Inherits<RefCounted> for AnimationNode
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeAdd2
impl Inherits<RefCounted> for AnimationNodeAdd2
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeAdd3
impl Inherits<RefCounted> for AnimationNodeAdd3
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeAnimation
impl Inherits<RefCounted> for AnimationNodeAnimation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeBlend2
impl Inherits<RefCounted> for AnimationNodeBlend2
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeBlend3
impl Inherits<RefCounted> for AnimationNodeBlend3
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeBlendSpace1D
impl Inherits<RefCounted> for AnimationNodeBlendSpace1D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeBlendSpace2D
impl Inherits<RefCounted> for AnimationNodeBlendSpace2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeBlendTree
impl Inherits<RefCounted> for AnimationNodeBlendTree
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeExtension
impl Inherits<RefCounted> for AnimationNodeExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeOneShot
impl Inherits<RefCounted> for AnimationNodeOneShot
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeOutput
impl Inherits<RefCounted> for AnimationNodeOutput
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeStateMachine
impl Inherits<RefCounted> for AnimationNodeStateMachine
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeStateMachinePlayback
impl Inherits<RefCounted> for AnimationNodeStateMachinePlayback
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeStateMachineTransition
impl Inherits<RefCounted> for AnimationNodeStateMachineTransition
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeSub2
impl Inherits<RefCounted> for AnimationNodeSub2
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeSync
impl Inherits<RefCounted> for AnimationNodeSync
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeTimeScale
impl Inherits<RefCounted> for AnimationNodeTimeScale
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeTimeSeek
impl Inherits<RefCounted> for AnimationNodeTimeSeek
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationNodeTransition
impl Inherits<RefCounted> for AnimationNodeTransition
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AnimationRootNode
impl Inherits<RefCounted> for AnimationRootNode
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ArrayMesh
impl Inherits<RefCounted> for ArrayMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ArrayOccluder3D
impl Inherits<RefCounted> for ArrayOccluder3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AtlasTexture
impl Inherits<RefCounted> for AtlasTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioBusLayout
impl Inherits<RefCounted> for AudioBusLayout
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffect
impl Inherits<RefCounted> for AudioEffect
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectAmplify
impl Inherits<RefCounted> for AudioEffectAmplify
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectBandLimitFilter
impl Inherits<RefCounted> for AudioEffectBandLimitFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectBandPassFilter
impl Inherits<RefCounted> for AudioEffectBandPassFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectCapture
impl Inherits<RefCounted> for AudioEffectCapture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectChorus
impl Inherits<RefCounted> for AudioEffectChorus
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectCompressor
impl Inherits<RefCounted> for AudioEffectCompressor
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectDelay
impl Inherits<RefCounted> for AudioEffectDelay
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectDistortion
impl Inherits<RefCounted> for AudioEffectDistortion
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectEq
impl Inherits<RefCounted> for AudioEffectEq
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectEq10
impl Inherits<RefCounted> for AudioEffectEq10
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectEq21
impl Inherits<RefCounted> for AudioEffectEq21
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectEq6
impl Inherits<RefCounted> for AudioEffectEq6
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectFilter
impl Inherits<RefCounted> for AudioEffectFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectHardLimiter
impl Inherits<RefCounted> for AudioEffectHardLimiter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectHighPassFilter
impl Inherits<RefCounted> for AudioEffectHighPassFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectHighShelfFilter
impl Inherits<RefCounted> for AudioEffectHighShelfFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectInstance
impl Inherits<RefCounted> for AudioEffectInstance
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectLimiter
impl Inherits<RefCounted> for AudioEffectLimiter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectLowPassFilter
impl Inherits<RefCounted> for AudioEffectLowPassFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectLowShelfFilter
impl Inherits<RefCounted> for AudioEffectLowShelfFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectNotchFilter
impl Inherits<RefCounted> for AudioEffectNotchFilter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectPanner
impl Inherits<RefCounted> for AudioEffectPanner
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectPhaser
impl Inherits<RefCounted> for AudioEffectPhaser
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectPitchShift
impl Inherits<RefCounted> for AudioEffectPitchShift
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectRecord
impl Inherits<RefCounted> for AudioEffectRecord
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectReverb
impl Inherits<RefCounted> for AudioEffectReverb
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectSpectrumAnalyzer
impl Inherits<RefCounted> for AudioEffectSpectrumAnalyzer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectSpectrumAnalyzerInstance
impl Inherits<RefCounted> for AudioEffectSpectrumAnalyzerInstance
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioEffectStereoEnhance
impl Inherits<RefCounted> for AudioEffectStereoEnhance
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioSample
impl Inherits<RefCounted> for AudioSample
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioSamplePlayback
impl Inherits<RefCounted> for AudioSamplePlayback
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStream
impl Inherits<RefCounted> for AudioStream
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamGenerator
impl Inherits<RefCounted> for AudioStreamGenerator
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamGeneratorPlayback
impl Inherits<RefCounted> for AudioStreamGeneratorPlayback
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamInteractive
impl Inherits<RefCounted> for AudioStreamInteractive
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamMicrophone
impl Inherits<RefCounted> for AudioStreamMicrophone
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamMp3
impl Inherits<RefCounted> for AudioStreamMp3
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamOggVorbis
impl Inherits<RefCounted> for AudioStreamOggVorbis
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlayback
impl Inherits<RefCounted> for AudioStreamPlayback
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaybackInteractive
impl Inherits<RefCounted> for AudioStreamPlaybackInteractive
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaybackOggVorbis
impl Inherits<RefCounted> for AudioStreamPlaybackOggVorbis
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaybackPlaylist
impl Inherits<RefCounted> for AudioStreamPlaybackPlaylist
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaybackPolyphonic
impl Inherits<RefCounted> for AudioStreamPlaybackPolyphonic
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaybackResampled
impl Inherits<RefCounted> for AudioStreamPlaybackResampled
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaybackSynchronized
impl Inherits<RefCounted> for AudioStreamPlaybackSynchronized
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPlaylist
impl Inherits<RefCounted> for AudioStreamPlaylist
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamPolyphonic
impl Inherits<RefCounted> for AudioStreamPolyphonic
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamRandomizer
impl Inherits<RefCounted> for AudioStreamRandomizer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamSynchronized
impl Inherits<RefCounted> for AudioStreamSynchronized
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for AudioStreamWav
impl Inherits<RefCounted> for AudioStreamWav
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for BaseMaterial3D
impl Inherits<RefCounted> for BaseMaterial3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for BitMap
impl Inherits<RefCounted> for BitMap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for BoneMap
impl Inherits<RefCounted> for BoneMap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for BoxMesh
impl Inherits<RefCounted> for BoxMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for BoxOccluder3D
impl Inherits<RefCounted> for BoxOccluder3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for BoxShape3D
impl Inherits<RefCounted> for BoxShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ButtonGroup
impl Inherits<RefCounted> for ButtonGroup
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CallbackTweener
impl Inherits<RefCounted> for CallbackTweener
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CameraAttributes
impl Inherits<RefCounted> for CameraAttributes
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CameraAttributesPhysical
impl Inherits<RefCounted> for CameraAttributesPhysical
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CameraAttributesPractical
impl Inherits<RefCounted> for CameraAttributesPractical
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CameraFeed
impl Inherits<RefCounted> for CameraFeed
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CameraTexture
impl Inherits<RefCounted> for CameraTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CanvasItemMaterial
impl Inherits<RefCounted> for CanvasItemMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CanvasTexture
impl Inherits<RefCounted> for CanvasTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CapsuleMesh
impl Inherits<RefCounted> for CapsuleMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CapsuleShape2D
impl Inherits<RefCounted> for CapsuleShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CapsuleShape3D
impl Inherits<RefCounted> for CapsuleShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CharFxTransform
impl Inherits<RefCounted> for CharFxTransform
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CircleShape2D
impl Inherits<RefCounted> for CircleShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CodeHighlighter
impl Inherits<RefCounted> for CodeHighlighter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ColorPalette
impl Inherits<RefCounted> for ColorPalette
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Compositor
impl Inherits<RefCounted> for Compositor
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompositorEffect
impl Inherits<RefCounted> for CompositorEffect
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompressedCubemap
impl Inherits<RefCounted> for CompressedCubemap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompressedCubemapArray
impl Inherits<RefCounted> for CompressedCubemapArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompressedTexture2D
impl Inherits<RefCounted> for CompressedTexture2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompressedTexture2DArray
impl Inherits<RefCounted> for CompressedTexture2DArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompressedTexture3D
impl Inherits<RefCounted> for CompressedTexture3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CompressedTextureLayered
impl Inherits<RefCounted> for CompressedTextureLayered
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ConcavePolygonShape2D
impl Inherits<RefCounted> for ConcavePolygonShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ConcavePolygonShape3D
impl Inherits<RefCounted> for ConcavePolygonShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ConfigFile
impl Inherits<RefCounted> for ConfigFile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ConvexPolygonShape2D
impl Inherits<RefCounted> for ConvexPolygonShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ConvexPolygonShape3D
impl Inherits<RefCounted> for ConvexPolygonShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Crypto
impl Inherits<RefCounted> for Crypto
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CryptoKey
impl Inherits<RefCounted> for CryptoKey
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Cubemap
impl Inherits<RefCounted> for Cubemap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CubemapArray
impl Inherits<RefCounted> for CubemapArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Curve
impl Inherits<RefCounted> for Curve
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Curve2D
impl Inherits<RefCounted> for Curve2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Curve3D
impl Inherits<RefCounted> for Curve3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CurveTexture
impl Inherits<RefCounted> for CurveTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CurveXyzTexture
impl Inherits<RefCounted> for CurveXyzTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CylinderMesh
impl Inherits<RefCounted> for CylinderMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for CylinderShape3D
impl Inherits<RefCounted> for CylinderShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for DirAccess
impl Inherits<RefCounted> for DirAccess
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for DpiTexture
impl Inherits<RefCounted> for DpiTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for DtlsServer
impl Inherits<RefCounted> for DtlsServer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ENetConnection
impl Inherits<RefCounted> for ENetConnection
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ENetMultiplayerPeer
impl Inherits<RefCounted> for ENetMultiplayerPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ENetPacketPeer
impl Inherits<RefCounted> for ENetPacketPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorContextMenuPlugin
impl Inherits<RefCounted> for EditorContextMenuPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorDebuggerPlugin
impl Inherits<RefCounted> for EditorDebuggerPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorDebuggerSession
impl Inherits<RefCounted> for EditorDebuggerSession
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatform
impl Inherits<RefCounted> for EditorExportPlatform
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformAndroid
impl Inherits<RefCounted> for EditorExportPlatformAndroid
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformAppleEmbedded
impl Inherits<RefCounted> for EditorExportPlatformAppleEmbedded
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformExtension
impl Inherits<RefCounted> for EditorExportPlatformExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformIos
impl Inherits<RefCounted> for EditorExportPlatformIos
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformLinuxBsd
impl Inherits<RefCounted> for EditorExportPlatformLinuxBsd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformMacOs
impl Inherits<RefCounted> for EditorExportPlatformMacOs
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformPc
impl Inherits<RefCounted> for EditorExportPlatformPc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformVisionOs
impl Inherits<RefCounted> for EditorExportPlatformVisionOs
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformWeb
impl Inherits<RefCounted> for EditorExportPlatformWeb
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlatformWindows
impl Inherits<RefCounted> for EditorExportPlatformWindows
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPlugin
impl Inherits<RefCounted> for EditorExportPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorExportPreset
impl Inherits<RefCounted> for EditorExportPreset
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorFeatureProfile
impl Inherits<RefCounted> for EditorFeatureProfile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorFileSystemImportFormatSupportQuery
impl Inherits<RefCounted> for EditorFileSystemImportFormatSupportQuery
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorImportPlugin
impl Inherits<RefCounted> for EditorImportPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorInspectorPlugin
impl Inherits<RefCounted> for EditorInspectorPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorNode3DGizmo
impl Inherits<RefCounted> for EditorNode3DGizmo
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorNode3DGizmoPlugin
impl Inherits<RefCounted> for EditorNode3DGizmoPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorResourceConversionPlugin
impl Inherits<RefCounted> for EditorResourceConversionPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorResourcePreviewGenerator
impl Inherits<RefCounted> for EditorResourcePreviewGenerator
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorResourceTooltipPlugin
impl Inherits<RefCounted> for EditorResourceTooltipPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSceneFormatImporter
impl Inherits<RefCounted> for EditorSceneFormatImporter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSceneFormatImporterBlend
impl Inherits<RefCounted> for EditorSceneFormatImporterBlend
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSceneFormatImporterFbx2gltf
impl Inherits<RefCounted> for EditorSceneFormatImporterFbx2gltf
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSceneFormatImporterGltf
impl Inherits<RefCounted> for EditorSceneFormatImporterGltf
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSceneFormatImporterUfbx
impl Inherits<RefCounted> for EditorSceneFormatImporterUfbx
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorScenePostImport
impl Inherits<RefCounted> for EditorScenePostImport
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorScenePostImportPlugin
impl Inherits<RefCounted> for EditorScenePostImportPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorScript
impl Inherits<RefCounted> for EditorScript
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSettings
impl Inherits<RefCounted> for EditorSettings
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorSyntaxHighlighter
impl Inherits<RefCounted> for EditorSyntaxHighlighter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EditorTranslationParserPlugin
impl Inherits<RefCounted> for EditorTranslationParserPlugin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EncodedObjectAsId
impl Inherits<RefCounted> for EncodedObjectAsId
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for EngineProfiler
impl Inherits<RefCounted> for EngineProfiler
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Environment
impl Inherits<RefCounted> for Environment
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Expression
impl Inherits<RefCounted> for Expression
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ExternalTexture
impl Inherits<RefCounted> for ExternalTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FastNoiseLite
impl Inherits<RefCounted> for FastNoiseLite
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FbxDocument
impl Inherits<RefCounted> for FbxDocument
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FbxState
impl Inherits<RefCounted> for FbxState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FileAccess
impl Inherits<RefCounted> for FileAccess
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FogMaterial
impl Inherits<RefCounted> for FogMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FoldableGroup
impl Inherits<RefCounted> for FoldableGroup
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Font
impl Inherits<RefCounted> for Font
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FontFile
impl Inherits<RefCounted> for FontFile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for FontVariation
impl Inherits<RefCounted> for FontVariation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GDExtension
impl Inherits<RefCounted> for GDExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GDScript
impl Inherits<RefCounted> for GDScript
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GDScriptSyntaxHighlighter
impl Inherits<RefCounted> for GDScriptSyntaxHighlighter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfAccessor
impl Inherits<RefCounted> for GltfAccessor
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfAnimation
impl Inherits<RefCounted> for GltfAnimation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfBufferView
impl Inherits<RefCounted> for GltfBufferView
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfCamera
impl Inherits<RefCounted> for GltfCamera
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfDocument
impl Inherits<RefCounted> for GltfDocument
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfDocumentExtension
impl Inherits<RefCounted> for GltfDocumentExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfDocumentExtensionConvertImporterMesh
impl Inherits<RefCounted> for GltfDocumentExtensionConvertImporterMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfLight
impl Inherits<RefCounted> for GltfLight
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfMesh
impl Inherits<RefCounted> for GltfMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfNode
impl Inherits<RefCounted> for GltfNode
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfObjectModelProperty
impl Inherits<RefCounted> for GltfObjectModelProperty
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfPhysicsBody
impl Inherits<RefCounted> for GltfPhysicsBody
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfPhysicsShape
impl Inherits<RefCounted> for GltfPhysicsShape
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfSkeleton
impl Inherits<RefCounted> for GltfSkeleton
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfSkin
impl Inherits<RefCounted> for GltfSkin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfSpecGloss
impl Inherits<RefCounted> for GltfSpecGloss
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfState
impl Inherits<RefCounted> for GltfState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfTexture
impl Inherits<RefCounted> for GltfTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GltfTextureSampler
impl Inherits<RefCounted> for GltfTextureSampler
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Gradient
impl Inherits<RefCounted> for Gradient
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GradientTexture1D
impl Inherits<RefCounted> for GradientTexture1D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for GradientTexture2D
impl Inherits<RefCounted> for GradientTexture2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for HashingContext
impl Inherits<RefCounted> for HashingContext
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for HeightMapShape3D
impl Inherits<RefCounted> for HeightMapShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for HmacContext
impl Inherits<RefCounted> for HmacContext
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for HttpClient
impl Inherits<RefCounted> for HttpClient
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Image
impl Inherits<RefCounted> for Image
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImageFormatLoader
impl Inherits<RefCounted> for ImageFormatLoader
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImageFormatLoaderExtension
impl Inherits<RefCounted> for ImageFormatLoaderExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImageTexture
impl Inherits<RefCounted> for ImageTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImageTexture3D
impl Inherits<RefCounted> for ImageTexture3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImageTextureLayered
impl Inherits<RefCounted> for ImageTextureLayered
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImmediateMesh
impl Inherits<RefCounted> for ImmediateMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ImporterMesh
impl Inherits<RefCounted> for ImporterMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEvent
impl Inherits<RefCounted> for InputEvent
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventAction
impl Inherits<RefCounted> for InputEventAction
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventFromWindow
impl Inherits<RefCounted> for InputEventFromWindow
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventGesture
impl Inherits<RefCounted> for InputEventGesture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventJoypadButton
impl Inherits<RefCounted> for InputEventJoypadButton
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventJoypadMotion
impl Inherits<RefCounted> for InputEventJoypadMotion
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventKey
impl Inherits<RefCounted> for InputEventKey
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventMagnifyGesture
impl Inherits<RefCounted> for InputEventMagnifyGesture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventMidi
impl Inherits<RefCounted> for InputEventMidi
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventMouse
impl Inherits<RefCounted> for InputEventMouse
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventMouseButton
impl Inherits<RefCounted> for InputEventMouseButton
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventMouseMotion
impl Inherits<RefCounted> for InputEventMouseMotion
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventPanGesture
impl Inherits<RefCounted> for InputEventPanGesture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventScreenDrag
impl Inherits<RefCounted> for InputEventScreenDrag
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventScreenTouch
impl Inherits<RefCounted> for InputEventScreenTouch
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventShortcut
impl Inherits<RefCounted> for InputEventShortcut
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for InputEventWithModifiers
impl Inherits<RefCounted> for InputEventWithModifiers
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for IntervalTweener
impl Inherits<RefCounted> for IntervalTweener
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Json
impl Inherits<RefCounted> for Json
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for KinematicCollision2D
impl Inherits<RefCounted> for KinematicCollision2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for KinematicCollision3D
impl Inherits<RefCounted> for KinematicCollision3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for LabelSettings
impl Inherits<RefCounted> for LabelSettings
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for LightmapGiData
impl Inherits<RefCounted> for LightmapGiData
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Lightmapper
impl Inherits<RefCounted> for Lightmapper
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for LightmapperRd
impl Inherits<RefCounted> for LightmapperRd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Logger
impl Inherits<RefCounted> for Logger
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Material
impl Inherits<RefCounted> for Material
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Mesh
impl Inherits<RefCounted> for Mesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MeshConvexDecompositionSettings
impl Inherits<RefCounted> for MeshConvexDecompositionSettings
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MeshDataTool
impl Inherits<RefCounted> for MeshDataTool
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MeshLibrary
impl Inherits<RefCounted> for MeshLibrary
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MeshTexture
impl Inherits<RefCounted> for MeshTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MethodTweener
impl Inherits<RefCounted> for MethodTweener
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MissingResource
impl Inherits<RefCounted> for MissingResource
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MobileVrInterface
impl Inherits<RefCounted> for MobileVrInterface
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MultiMesh
impl Inherits<RefCounted> for MultiMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MultiplayerApi
impl Inherits<RefCounted> for MultiplayerApi
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MultiplayerApiExtension
impl Inherits<RefCounted> for MultiplayerApiExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MultiplayerPeer
impl Inherits<RefCounted> for MultiplayerPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for MultiplayerPeerExtension
impl Inherits<RefCounted> for MultiplayerPeerExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Node3DGizmo
impl Inherits<RefCounted> for Node3DGizmo
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Noise
impl Inherits<RefCounted> for Noise
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for NoiseTexture2D
impl Inherits<RefCounted> for NoiseTexture2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for NoiseTexture3D
impl Inherits<RefCounted> for NoiseTexture3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Occluder3D
impl Inherits<RefCounted> for Occluder3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OccluderPolygon2D
impl Inherits<RefCounted> for OccluderPolygon2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OfflineMultiplayerPeer
impl Inherits<RefCounted> for OfflineMultiplayerPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OggPacketSequence
impl Inherits<RefCounted> for OggPacketSequence
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OggPacketSequencePlayback
impl Inherits<RefCounted> for OggPacketSequencePlayback
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrAction
impl Inherits<RefCounted> for OpenXrAction
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrActionBindingModifier
impl Inherits<RefCounted> for OpenXrActionBindingModifier
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrActionMap
impl Inherits<RefCounted> for OpenXrActionMap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrActionSet
impl Inherits<RefCounted> for OpenXrActionSet
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrAnalogThresholdModifier
impl Inherits<RefCounted> for OpenXrAnalogThresholdModifier
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrApiExtension
impl Inherits<RefCounted> for OpenXrApiExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrBindingModifier
impl Inherits<RefCounted> for OpenXrBindingModifier
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrDpadBindingModifier
impl Inherits<RefCounted> for OpenXrDpadBindingModifier
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrFutureResult
impl Inherits<RefCounted> for OpenXrFutureResult
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrHapticBase
impl Inherits<RefCounted> for OpenXrHapticBase
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrHapticVibration
impl Inherits<RefCounted> for OpenXrHapticVibration
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrInteractionProfile
impl Inherits<RefCounted> for OpenXrInteractionProfile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrInterface
impl Inherits<RefCounted> for OpenXrInterface
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXrIpBinding
impl Inherits<RefCounted> for OpenXrIpBinding
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OpenXripBindingModifier
impl Inherits<RefCounted> for OpenXripBindingModifier
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OptimizedTranslation
impl Inherits<RefCounted> for OptimizedTranslation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for OrmMaterial3D
impl Inherits<RefCounted> for OrmMaterial3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PackedDataContainer
impl Inherits<RefCounted> for PackedDataContainer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PackedDataContainerRef
impl Inherits<RefCounted> for PackedDataContainerRef
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PackedScene
impl Inherits<RefCounted> for PackedScene
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PacketPeer
impl Inherits<RefCounted> for PacketPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PacketPeerDtls
impl Inherits<RefCounted> for PacketPeerDtls
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PacketPeerExtension
impl Inherits<RefCounted> for PacketPeerExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PacketPeerStream
impl Inherits<RefCounted> for PacketPeerStream
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PacketPeerUdp
impl Inherits<RefCounted> for PacketPeerUdp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PanoramaSkyMaterial
impl Inherits<RefCounted> for PanoramaSkyMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ParticleProcessMaterial
impl Inherits<RefCounted> for ParticleProcessMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PckPacker
impl Inherits<RefCounted> for PckPacker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicalSkyMaterial
impl Inherits<RefCounted> for PhysicalSkyMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsMaterial
impl Inherits<RefCounted> for PhysicsMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsPointQueryParameters2D
impl Inherits<RefCounted> for PhysicsPointQueryParameters2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsPointQueryParameters3D
impl Inherits<RefCounted> for PhysicsPointQueryParameters3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsRayQueryParameters2D
impl Inherits<RefCounted> for PhysicsRayQueryParameters2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsRayQueryParameters3D
impl Inherits<RefCounted> for PhysicsRayQueryParameters3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsShapeQueryParameters2D
impl Inherits<RefCounted> for PhysicsShapeQueryParameters2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsShapeQueryParameters3D
impl Inherits<RefCounted> for PhysicsShapeQueryParameters3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsTestMotionParameters2D
impl Inherits<RefCounted> for PhysicsTestMotionParameters2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsTestMotionParameters3D
impl Inherits<RefCounted> for PhysicsTestMotionParameters3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsTestMotionResult2D
impl Inherits<RefCounted> for PhysicsTestMotionResult2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PhysicsTestMotionResult3D
impl Inherits<RefCounted> for PhysicsTestMotionResult3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderCubemap
impl Inherits<RefCounted> for PlaceholderCubemap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderCubemapArray
impl Inherits<RefCounted> for PlaceholderCubemapArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderMaterial
impl Inherits<RefCounted> for PlaceholderMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderMesh
impl Inherits<RefCounted> for PlaceholderMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderTexture2D
impl Inherits<RefCounted> for PlaceholderTexture2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderTexture2DArray
impl Inherits<RefCounted> for PlaceholderTexture2DArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderTexture3D
impl Inherits<RefCounted> for PlaceholderTexture3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaceholderTextureLayered
impl Inherits<RefCounted> for PlaceholderTextureLayered
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PlaneMesh
impl Inherits<RefCounted> for PlaneMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PointMesh
impl Inherits<RefCounted> for PointMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PolygonOccluder3D
impl Inherits<RefCounted> for PolygonOccluder3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PolygonPathFinder
impl Inherits<RefCounted> for PolygonPathFinder
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PortableCompressedTexture2D
impl Inherits<RefCounted> for PortableCompressedTexture2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PrimitiveMesh
impl Inherits<RefCounted> for PrimitiveMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PrismMesh
impl Inherits<RefCounted> for PrismMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ProceduralSkyMaterial
impl Inherits<RefCounted> for ProceduralSkyMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for PropertyTweener
impl Inherits<RefCounted> for PropertyTweener
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for QuadMesh
impl Inherits<RefCounted> for QuadMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for QuadOccluder3D
impl Inherits<RefCounted> for QuadOccluder3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RandomNumberGenerator
impl Inherits<RefCounted> for RandomNumberGenerator
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdAttachmentFormat
impl Inherits<RefCounted> for RdAttachmentFormat
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdFramebufferPass
impl Inherits<RefCounted> for RdFramebufferPass
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdPipelineColorBlendState
impl Inherits<RefCounted> for RdPipelineColorBlendState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdPipelineColorBlendStateAttachment
impl Inherits<RefCounted> for RdPipelineColorBlendStateAttachment
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdPipelineDepthStencilState
impl Inherits<RefCounted> for RdPipelineDepthStencilState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdPipelineMultisampleState
impl Inherits<RefCounted> for RdPipelineMultisampleState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdPipelineRasterizationState
impl Inherits<RefCounted> for RdPipelineRasterizationState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdPipelineSpecializationConstant
impl Inherits<RefCounted> for RdPipelineSpecializationConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdSamplerState
impl Inherits<RefCounted> for RdSamplerState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdShaderFile
impl Inherits<RefCounted> for RdShaderFile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdShaderSource
impl Inherits<RefCounted> for RdShaderSource
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdShaderSpirv
impl Inherits<RefCounted> for RdShaderSpirv
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdTextureFormat
impl Inherits<RefCounted> for RdTextureFormat
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdTextureView
impl Inherits<RefCounted> for RdTextureView
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdUniform
impl Inherits<RefCounted> for RdUniform
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RdVertexAttribute
impl Inherits<RefCounted> for RdVertexAttribute
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RectangleShape2D
impl Inherits<RefCounted> for RectangleShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RegEx
impl Inherits<RefCounted> for RegEx
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RegExMatch
impl Inherits<RefCounted> for RegExMatch
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RenderSceneBuffers
impl Inherits<RefCounted> for RenderSceneBuffers
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RenderSceneBuffersConfiguration
impl Inherits<RefCounted> for RenderSceneBuffersConfiguration
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RenderSceneBuffersExtension
impl Inherits<RefCounted> for RenderSceneBuffersExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RenderSceneBuffersRd
impl Inherits<RefCounted> for RenderSceneBuffersRd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Resource
impl Inherits<RefCounted> for Resource
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceFormatLoader
impl Inherits<RefCounted> for ResourceFormatLoader
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceFormatSaver
impl Inherits<RefCounted> for ResourceFormatSaver
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporter
impl Inherits<RefCounted> for ResourceImporter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterBitMap
impl Inherits<RefCounted> for ResourceImporterBitMap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterBmFont
impl Inherits<RefCounted> for ResourceImporterBmFont
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterCsvTranslation
impl Inherits<RefCounted> for ResourceImporterCsvTranslation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterDynamicFont
impl Inherits<RefCounted> for ResourceImporterDynamicFont
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterImage
impl Inherits<RefCounted> for ResourceImporterImage
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterImageFont
impl Inherits<RefCounted> for ResourceImporterImageFont
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterLayeredTexture
impl Inherits<RefCounted> for ResourceImporterLayeredTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterMp3
impl Inherits<RefCounted> for ResourceImporterMp3
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterObj
impl Inherits<RefCounted> for ResourceImporterObj
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterOggVorbis
impl Inherits<RefCounted> for ResourceImporterOggVorbis
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterScene
impl Inherits<RefCounted> for ResourceImporterScene
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterShaderFile
impl Inherits<RefCounted> for ResourceImporterShaderFile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterSvg
impl Inherits<RefCounted> for ResourceImporterSvg
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterTexture
impl Inherits<RefCounted> for ResourceImporterTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterTextureAtlas
impl Inherits<RefCounted> for ResourceImporterTextureAtlas
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ResourceImporterWav
impl Inherits<RefCounted> for ResourceImporterWav
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RibbonTrailMesh
impl Inherits<RefCounted> for RibbonTrailMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for RichTextEffect
impl Inherits<RefCounted> for RichTextEffect
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SceneMultiplayer
impl Inherits<RefCounted> for SceneMultiplayer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SceneReplicationConfig
impl Inherits<RefCounted> for SceneReplicationConfig
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SceneState
impl Inherits<RefCounted> for SceneState
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SceneTreeTimer
impl Inherits<RefCounted> for SceneTreeTimer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Script
impl Inherits<RefCounted> for Script
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ScriptBacktrace
impl Inherits<RefCounted> for ScriptBacktrace
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ScriptExtension
impl Inherits<RefCounted> for ScriptExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SegmentShape2D
impl Inherits<RefCounted> for SegmentShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SeparationRayShape2D
impl Inherits<RefCounted> for SeparationRayShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SeparationRayShape3D
impl Inherits<RefCounted> for SeparationRayShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Shader
impl Inherits<RefCounted> for Shader
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ShaderInclude
impl Inherits<RefCounted> for ShaderInclude
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ShaderMaterial
impl Inherits<RefCounted> for ShaderMaterial
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Shape2D
impl Inherits<RefCounted> for Shape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Shape3D
impl Inherits<RefCounted> for Shape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Shortcut
impl Inherits<RefCounted> for Shortcut
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2D
impl Inherits<RefCounted> for SkeletonModification2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2DJiggle
impl Inherits<RefCounted> for SkeletonModification2DJiggle
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2DLookAt
impl Inherits<RefCounted> for SkeletonModification2DLookAt
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2DPhysicalBones
impl Inherits<RefCounted> for SkeletonModification2DPhysicalBones
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2DStackHolder
impl Inherits<RefCounted> for SkeletonModification2DStackHolder
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2DTwoBoneIk
impl Inherits<RefCounted> for SkeletonModification2DTwoBoneIk
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2Dccdik
impl Inherits<RefCounted> for SkeletonModification2Dccdik
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModification2Dfabrik
impl Inherits<RefCounted> for SkeletonModification2Dfabrik
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonModificationStack2D
impl Inherits<RefCounted> for SkeletonModificationStack2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonProfile
impl Inherits<RefCounted> for SkeletonProfile
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkeletonProfileHumanoid
impl Inherits<RefCounted> for SkeletonProfileHumanoid
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Skin
impl Inherits<RefCounted> for Skin
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SkinReference
impl Inherits<RefCounted> for SkinReference
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Sky
impl Inherits<RefCounted> for Sky
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SphereMesh
impl Inherits<RefCounted> for SphereMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SphereOccluder3D
impl Inherits<RefCounted> for SphereOccluder3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SphereShape3D
impl Inherits<RefCounted> for SphereShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SpriteFrames
impl Inherits<RefCounted> for SpriteFrames
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StandardMaterial3D
impl Inherits<RefCounted> for StandardMaterial3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StreamPeer
impl Inherits<RefCounted> for StreamPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StreamPeerBuffer
impl Inherits<RefCounted> for StreamPeerBuffer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StreamPeerExtension
impl Inherits<RefCounted> for StreamPeerExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StreamPeerGzip
impl Inherits<RefCounted> for StreamPeerGzip
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StreamPeerTcp
impl Inherits<RefCounted> for StreamPeerTcp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StreamPeerTls
impl Inherits<RefCounted> for StreamPeerTls
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StyleBox
impl Inherits<RefCounted> for StyleBox
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StyleBoxEmpty
impl Inherits<RefCounted> for StyleBoxEmpty
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StyleBoxFlat
impl Inherits<RefCounted> for StyleBoxFlat
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StyleBoxLine
impl Inherits<RefCounted> for StyleBoxLine
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for StyleBoxTexture
impl Inherits<RefCounted> for StyleBoxTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SubtweenTweener
impl Inherits<RefCounted> for SubtweenTweener
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SurfaceTool
impl Inherits<RefCounted> for SurfaceTool
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SyntaxHighlighter
impl Inherits<RefCounted> for SyntaxHighlighter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for SystemFont
impl Inherits<RefCounted> for SystemFont
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TcpServer
impl Inherits<RefCounted> for TcpServer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextLine
impl Inherits<RefCounted> for TextLine
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextMesh
impl Inherits<RefCounted> for TextMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextParagraph
impl Inherits<RefCounted> for TextParagraph
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextServer
impl Inherits<RefCounted> for TextServer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextServerAdvanced
impl Inherits<RefCounted> for TextServerAdvanced
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextServerDummy
impl Inherits<RefCounted> for TextServerDummy
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextServerExtension
impl Inherits<RefCounted> for TextServerExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture
impl Inherits<RefCounted> for Texture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture2D
impl Inherits<RefCounted> for Texture2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture2DArray
impl Inherits<RefCounted> for Texture2DArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture2DArrayRd
impl Inherits<RefCounted> for Texture2DArrayRd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture2Drd
impl Inherits<RefCounted> for Texture2Drd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture3D
impl Inherits<RefCounted> for Texture3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Texture3Drd
impl Inherits<RefCounted> for Texture3Drd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextureCubemapArrayRd
impl Inherits<RefCounted> for TextureCubemapArrayRd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextureCubemapRd
impl Inherits<RefCounted> for TextureCubemapRd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextureLayered
impl Inherits<RefCounted> for TextureLayered
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TextureLayeredRd
impl Inherits<RefCounted> for TextureLayeredRd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Theme
impl Inherits<RefCounted> for Theme
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TileMapPattern
impl Inherits<RefCounted> for TileMapPattern
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TileSet
impl Inherits<RefCounted> for TileSet
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TileSetAtlasSource
impl Inherits<RefCounted> for TileSetAtlasSource
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TileSetScenesCollectionSource
impl Inherits<RefCounted> for TileSetScenesCollectionSource
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TileSetSource
impl Inherits<RefCounted> for TileSetSource
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TlsOptions
impl Inherits<RefCounted> for TlsOptions
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TorusMesh
impl Inherits<RefCounted> for TorusMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Translation
impl Inherits<RefCounted> for Translation
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TranslationDomain
impl Inherits<RefCounted> for TranslationDomain
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TriangleMesh
impl Inherits<RefCounted> for TriangleMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for TubeTrailMesh
impl Inherits<RefCounted> for TubeTrailMesh
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Tween
impl Inherits<RefCounted> for Tween
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Tweener
impl Inherits<RefCounted> for Tweener
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for UdpServer
impl Inherits<RefCounted> for UdpServer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for Upnp
impl Inherits<RefCounted> for Upnp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for UpnpDevice
impl Inherits<RefCounted> for UpnpDevice
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VideoStream
impl Inherits<RefCounted> for VideoStream
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VideoStreamPlayback
impl Inherits<RefCounted> for VideoStreamPlayback
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VideoStreamTheora
impl Inherits<RefCounted> for VideoStreamTheora
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ViewportTexture
impl Inherits<RefCounted> for ViewportTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShader
impl Inherits<RefCounted> for VisualShader
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNode
impl Inherits<RefCounted> for VisualShaderNode
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeBillboard
impl Inherits<RefCounted> for VisualShaderNodeBillboard
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeBooleanConstant
impl Inherits<RefCounted> for VisualShaderNodeBooleanConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeBooleanParameter
impl Inherits<RefCounted> for VisualShaderNodeBooleanParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeClamp
impl Inherits<RefCounted> for VisualShaderNodeClamp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeColorConstant
impl Inherits<RefCounted> for VisualShaderNodeColorConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeColorFunc
impl Inherits<RefCounted> for VisualShaderNodeColorFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeColorOp
impl Inherits<RefCounted> for VisualShaderNodeColorOp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeColorParameter
impl Inherits<RefCounted> for VisualShaderNodeColorParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeComment
impl Inherits<RefCounted> for VisualShaderNodeComment
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeCompare
impl Inherits<RefCounted> for VisualShaderNodeCompare
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeConstant
impl Inherits<RefCounted> for VisualShaderNodeConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeCubemap
impl Inherits<RefCounted> for VisualShaderNodeCubemap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeCubemapParameter
impl Inherits<RefCounted> for VisualShaderNodeCubemapParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeCurveTexture
impl Inherits<RefCounted> for VisualShaderNodeCurveTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeCurveXyzTexture
impl Inherits<RefCounted> for VisualShaderNodeCurveXyzTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeCustom
impl Inherits<RefCounted> for VisualShaderNodeCustom
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeDerivativeFunc
impl Inherits<RefCounted> for VisualShaderNodeDerivativeFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeDeterminant
impl Inherits<RefCounted> for VisualShaderNodeDeterminant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeDistanceFade
impl Inherits<RefCounted> for VisualShaderNodeDistanceFade
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeDotProduct
impl Inherits<RefCounted> for VisualShaderNodeDotProduct
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeExpression
impl Inherits<RefCounted> for VisualShaderNodeExpression
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFaceForward
impl Inherits<RefCounted> for VisualShaderNodeFaceForward
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFloatConstant
impl Inherits<RefCounted> for VisualShaderNodeFloatConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFloatFunc
impl Inherits<RefCounted> for VisualShaderNodeFloatFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFloatOp
impl Inherits<RefCounted> for VisualShaderNodeFloatOp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFloatParameter
impl Inherits<RefCounted> for VisualShaderNodeFloatParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFrame
impl Inherits<RefCounted> for VisualShaderNodeFrame
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeFresnel
impl Inherits<RefCounted> for VisualShaderNodeFresnel
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeGlobalExpression
impl Inherits<RefCounted> for VisualShaderNodeGlobalExpression
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeGroupBase
impl Inherits<RefCounted> for VisualShaderNodeGroupBase
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeIf
impl Inherits<RefCounted> for VisualShaderNodeIf
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeInput
impl Inherits<RefCounted> for VisualShaderNodeInput
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeIntConstant
impl Inherits<RefCounted> for VisualShaderNodeIntConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeIntFunc
impl Inherits<RefCounted> for VisualShaderNodeIntFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeIntOp
impl Inherits<RefCounted> for VisualShaderNodeIntOp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeIntParameter
impl Inherits<RefCounted> for VisualShaderNodeIntParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeIs
impl Inherits<RefCounted> for VisualShaderNodeIs
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeLinearSceneDepth
impl Inherits<RefCounted> for VisualShaderNodeLinearSceneDepth
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeMix
impl Inherits<RefCounted> for VisualShaderNodeMix
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeMultiplyAdd
impl Inherits<RefCounted> for VisualShaderNodeMultiplyAdd
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeOuterProduct
impl Inherits<RefCounted> for VisualShaderNodeOuterProduct
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeOutput
impl Inherits<RefCounted> for VisualShaderNodeOutput
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParameter
impl Inherits<RefCounted> for VisualShaderNodeParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParameterRef
impl Inherits<RefCounted> for VisualShaderNodeParameterRef
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleAccelerator
impl Inherits<RefCounted> for VisualShaderNodeParticleAccelerator
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleBoxEmitter
impl Inherits<RefCounted> for VisualShaderNodeParticleBoxEmitter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleConeVelocity
impl Inherits<RefCounted> for VisualShaderNodeParticleConeVelocity
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleEmit
impl Inherits<RefCounted> for VisualShaderNodeParticleEmit
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleEmitter
impl Inherits<RefCounted> for VisualShaderNodeParticleEmitter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleMeshEmitter
impl Inherits<RefCounted> for VisualShaderNodeParticleMeshEmitter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleMultiplyByAxisAngle
impl Inherits<RefCounted> for VisualShaderNodeParticleMultiplyByAxisAngle
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleOutput
impl Inherits<RefCounted> for VisualShaderNodeParticleOutput
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleRandomness
impl Inherits<RefCounted> for VisualShaderNodeParticleRandomness
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleRingEmitter
impl Inherits<RefCounted> for VisualShaderNodeParticleRingEmitter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeParticleSphereEmitter
impl Inherits<RefCounted> for VisualShaderNodeParticleSphereEmitter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeProximityFade
impl Inherits<RefCounted> for VisualShaderNodeProximityFade
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeRandomRange
impl Inherits<RefCounted> for VisualShaderNodeRandomRange
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeRemap
impl Inherits<RefCounted> for VisualShaderNodeRemap
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeReroute
impl Inherits<RefCounted> for VisualShaderNodeReroute
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeResizableBase
impl Inherits<RefCounted> for VisualShaderNodeResizableBase
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeRotationByAxis
impl Inherits<RefCounted> for VisualShaderNodeRotationByAxis
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeSample3D
impl Inherits<RefCounted> for VisualShaderNodeSample3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeScreenNormalWorldSpace
impl Inherits<RefCounted> for VisualShaderNodeScreenNormalWorldSpace
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeScreenUvToSdf
impl Inherits<RefCounted> for VisualShaderNodeScreenUvToSdf
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeSdfRaymarch
impl Inherits<RefCounted> for VisualShaderNodeSdfRaymarch
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeSdfToScreenUv
impl Inherits<RefCounted> for VisualShaderNodeSdfToScreenUv
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeSmoothStep
impl Inherits<RefCounted> for VisualShaderNodeSmoothStep
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeStep
impl Inherits<RefCounted> for VisualShaderNodeStep
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeSwitch
impl Inherits<RefCounted> for VisualShaderNodeSwitch
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTexture
impl Inherits<RefCounted> for VisualShaderNodeTexture
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTexture2DArray
impl Inherits<RefCounted> for VisualShaderNodeTexture2DArray
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTexture2DArrayParameter
impl Inherits<RefCounted> for VisualShaderNodeTexture2DArrayParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTexture2DParameter
impl Inherits<RefCounted> for VisualShaderNodeTexture2DParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTexture3D
impl Inherits<RefCounted> for VisualShaderNodeTexture3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTexture3DParameter
impl Inherits<RefCounted> for VisualShaderNodeTexture3DParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTextureParameter
impl Inherits<RefCounted> for VisualShaderNodeTextureParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTextureParameterTriplanar
impl Inherits<RefCounted> for VisualShaderNodeTextureParameterTriplanar
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTextureSdf
impl Inherits<RefCounted> for VisualShaderNodeTextureSdf
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTextureSdfNormal
impl Inherits<RefCounted> for VisualShaderNodeTextureSdfNormal
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformCompose
impl Inherits<RefCounted> for VisualShaderNodeTransformCompose
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformConstant
impl Inherits<RefCounted> for VisualShaderNodeTransformConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformDecompose
impl Inherits<RefCounted> for VisualShaderNodeTransformDecompose
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformFunc
impl Inherits<RefCounted> for VisualShaderNodeTransformFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformOp
impl Inherits<RefCounted> for VisualShaderNodeTransformOp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformParameter
impl Inherits<RefCounted> for VisualShaderNodeTransformParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeTransformVecMult
impl Inherits<RefCounted> for VisualShaderNodeTransformVecMult
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeUIntConstant
impl Inherits<RefCounted> for VisualShaderNodeUIntConstant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeUIntFunc
impl Inherits<RefCounted> for VisualShaderNodeUIntFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeUIntOp
impl Inherits<RefCounted> for VisualShaderNodeUIntOp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeUIntParameter
impl Inherits<RefCounted> for VisualShaderNodeUIntParameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeUvFunc
impl Inherits<RefCounted> for VisualShaderNodeUvFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeUvPolarCoord
impl Inherits<RefCounted> for VisualShaderNodeUvPolarCoord
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVarying
impl Inherits<RefCounted> for VisualShaderNodeVarying
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVaryingGetter
impl Inherits<RefCounted> for VisualShaderNodeVaryingGetter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVaryingSetter
impl Inherits<RefCounted> for VisualShaderNodeVaryingSetter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVec2Constant
impl Inherits<RefCounted> for VisualShaderNodeVec2Constant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVec2Parameter
impl Inherits<RefCounted> for VisualShaderNodeVec2Parameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVec3Constant
impl Inherits<RefCounted> for VisualShaderNodeVec3Constant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVec3Parameter
impl Inherits<RefCounted> for VisualShaderNodeVec3Parameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVec4Constant
impl Inherits<RefCounted> for VisualShaderNodeVec4Constant
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVec4Parameter
impl Inherits<RefCounted> for VisualShaderNodeVec4Parameter
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorBase
impl Inherits<RefCounted> for VisualShaderNodeVectorBase
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorCompose
impl Inherits<RefCounted> for VisualShaderNodeVectorCompose
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorDecompose
impl Inherits<RefCounted> for VisualShaderNodeVectorDecompose
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorDistance
impl Inherits<RefCounted> for VisualShaderNodeVectorDistance
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorFunc
impl Inherits<RefCounted> for VisualShaderNodeVectorFunc
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorLen
impl Inherits<RefCounted> for VisualShaderNodeVectorLen
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorOp
impl Inherits<RefCounted> for VisualShaderNodeVectorOp
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeVectorRefract
impl Inherits<RefCounted> for VisualShaderNodeVectorRefract
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VisualShaderNodeWorldPositionFromDepth
impl Inherits<RefCounted> for VisualShaderNodeWorldPositionFromDepth
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for VoxelGiData
impl Inherits<RefCounted> for VoxelGiData
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WeakRef
impl Inherits<RefCounted> for WeakRef
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebRtcDataChannel
impl Inherits<RefCounted> for WebRtcDataChannel
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebRtcDataChannelExtension
impl Inherits<RefCounted> for WebRtcDataChannelExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebRtcMultiplayerPeer
impl Inherits<RefCounted> for WebRtcMultiplayerPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebRtcPeerConnection
impl Inherits<RefCounted> for WebRtcPeerConnection
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebRtcPeerConnectionExtension
impl Inherits<RefCounted> for WebRtcPeerConnectionExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebSocketMultiplayerPeer
impl Inherits<RefCounted> for WebSocketMultiplayerPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebSocketPeer
impl Inherits<RefCounted> for WebSocketPeer
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WebXrInterface
impl Inherits<RefCounted> for WebXrInterface
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for World2D
impl Inherits<RefCounted> for World2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for World3D
impl Inherits<RefCounted> for World3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WorldBoundaryShape2D
impl Inherits<RefCounted> for WorldBoundaryShape2D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for WorldBoundaryShape3D
impl Inherits<RefCounted> for WorldBoundaryShape3D
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for X509Certificate
impl Inherits<RefCounted> for X509Certificate
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XmlParser
impl Inherits<RefCounted> for XmlParser
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrBodyTracker
impl Inherits<RefCounted> for XrBodyTracker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrControllerTracker
impl Inherits<RefCounted> for XrControllerTracker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrFaceTracker
impl Inherits<RefCounted> for XrFaceTracker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrHandTracker
impl Inherits<RefCounted> for XrHandTracker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrInterface
impl Inherits<RefCounted> for XrInterface
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrInterfaceExtension
impl Inherits<RefCounted> for XrInterfaceExtension
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrPose
impl Inherits<RefCounted> for XrPose
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrPositionalTracker
impl Inherits<RefCounted> for XrPositionalTracker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for XrTracker
impl Inherits<RefCounted> for XrTracker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ZipPacker
impl Inherits<RefCounted> for ZipPacker
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl Inherits<RefCounted> for ZipReader
impl Inherits<RefCounted> for ZipReader
Source§const IS_SAME_CLASS: bool = false
const IS_SAME_CLASS: bool = false
Self == Base. Read moreSource§impl WithSignals for RefCounted
impl WithSignals for RefCounted
Source§type SignalCollection<'c, C: WithSignals> = SignalsOfObject<'c, C>
type SignalCollection<'c, C: WithSignals> = SignalsOfObject<'c, C>
impl GodotDefault for RefCounted
Auto Trait Implementations§
impl Freeze for RefCounted
impl RefUnwindSafe for RefCounted
impl !Send for RefCounted
impl !Sync for RefCounted
impl Unpin for RefCounted
impl UnwindSafe for RefCounted
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Inherits<T> for Twhere
T: GodotClass,
impl<T> Inherits<T> for Twhere
T: GodotClass,
Source§const IS_SAME_CLASS: bool = true
const IS_SAME_CLASS: bool = true
Self == Base. Read more