0 votes

So when I read the docs, it says that AnimatedTexture has current_frame as variable to set.

https://docs.godotengine.org/en/stable/classes/class_animatedtexture.html#class-animatedtexture-property-current-frame

Except when I try to do that, like this:

onready var heart_fx_texture = preload("res://assets/textures/Effect04AnimatedTexture.tres")

var heart_fx = Light2D.new()
heart_fx.texture = heart_fx_texture
heart_fx.texture.current_frame = 0
add_child(heart_fx)

Result:

Invalid set index 'current_frame' (on base: AnimatedTexture)

It does not set the correct animation frame. I also do not have access to the 'oneshot' property. But the heartfxtexture is definitely of class AnimatedTexture.
I'm not sure what I'm missing. My Godot version is 3.2.1. Were these things added to AnimatedTexture in later versions?

in Engine by (12 points)

1 Answer

0 votes

Hello buddy, you see when you create a light 2d node does not have animated textures it just uses textures so if you wish for it to be animated you could try using particles

by (76 points)

No, actually I have the animated texture working as a resource for the Light2D, that is not the problem, buddy.

It turns out all I had to do was update Godot to the latest version. 3.2.3 AnimatedTextures do have the current_frame property.

Oh okay happy to hear

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.