AnimatedSprite3D

Inherits: SpriteBase3D < GeometryInstance < VisualInstance < Spatial < Node < Object

Category: Core

Brief Description

2D sprite node in 3D world, that can use multiple 2D textures for animation.

Properties

Stringanimation
intframe
SpriteFramesframes
boolplaying

Methods

boolis_playing ( ) const
voidplay ( String anim=”” )
voidstop ( )

Signals

  • frame_changed ( )

Emitted when frame changed.

Description

Animations are created using a SpriteFrames resource, which can be configured in the editor via the SpriteFrames panel.

Property Descriptions

Setterset_animation(value)
Getterget_animation()

The current animation from the frames resource. If this value changes, the frame counter is reset.


Setterset_frame(value)
Getterget_frame()

The displayed animation frame’s index.


Setterset_sprite_frames(value)
Getterget_sprite_frames()

The SpriteFrames resource containing the animation(s).


If true, the animation is currently playing.

Method Descriptions

  • bool is_playing ( ) const

Returns true if an animation if currently being played.


  • void play ( String anim=”” )

Play the animation set in parameter. If no parameter is provided, the current animation is played.


  • void stop ( )

Stop the current animation (does not reset the frame counter).