Questions tagged [animationcontroller]

37 questions
0
votes
1 answer

Player can still move after death when dying while pressing directional keys

I am currently learning unity using c# and I made the following code using someones tutorial but I think the tutorial I am currently using as a reference is not giving me much info about this current bug. I already added a bool called dead which I…
Johji
  • 240
  • 1
  • 19
0
votes
2 answers

Animator parameter doesnt change Unity2D

Hello I was trying to add an animation transition to my character so have written some code: void Update() { Vector3 characterScale = transform.localScale; if (Input.GetKey(KeyCode.A)) { …
0
votes
3 answers

Can't animate flutter widget after making it visible for a second time using AnimationController

I'm animating a widget using AnimationController (The widget is the red wave shown in the image attached). The widget starts with visibility = false and turns true for periods of 10 seconds after the user hits the red button to speak. The problem…
Ruben
  • 816
  • 1
  • 8
  • 21
0
votes
1 answer

Irregular behavior of animation

I tried to incorporate animation in my project where there would be a stack of Blue container and Yellow container and when the screen is tapped the upper container would slide down and when tapped again would slide up( the upper one is yellow),…
Ashu
  • 97
  • 2
  • 11
0
votes
1 answer

Problem with blend tree when float return 0 in unity 2019.4.1f1

I have a problem with blend tree which I'm using it and a script to change the float so I can control the player's animation. But the value of the parameter in the blend tree went crazy when it return to 0. It start appearing random numbers and the…
-1
votes
2 answers

Blank white screen with using animationController

Hello I want to add animationController and animatedBuilder to my project, I just want it to change width of container which includes background, but when I hit run, I dont recieve any error but just white blank screen appears on my welcome page,…
-1
votes
1 answer

How I do make my animation repeat when I click on it with animatedbuilder? flutter/dart

I'm working on a custom animation button. I want to repeat the animation every time the user taps on it. So when the user clicks on it, the container scales bigger. And returns to the normal size. And when the user clicks on it again it does it…
An Tran
  • 89
  • 3
  • 8
1 2
3