0 votes

I'm trying to change the animation, like this (but it's going wrong):

  onready var raycasts = $raycasts

   func _set_animation():
var anim = "Idle"

if !is_grounded:
    anim = "Jump"
elif velocity.x != 0:
    anim = "Run"

if $anim.assigned_animation != anim:
    $anim.play(anim)
Godot version 3.4.3
in Engine by (12 points)

1 Answer

0 votes

Use this metod(.animation metod), for example:

$anim.animation = "Idle" 

So, this code example can be usefull for you:

func _process(delta): # USE THE FUNCTION YOU LIKE
   if !is_grounded:
      $anim.animation = "Jump"
   elif velocity.x != 0:
      $anim.animation = "Run"

I hope it works for you! =)

by (18 points)
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.