Question by
pranesh-arry · Apr 21, 2017 at 08:05 PM ·
animationscripting probleminputinspectorplay
I cannot drag the animations into inspector please help [code snippet included] [C#]
Okay, so this is what happens, whenever i drag the animation to the inspector, all what happens is nothing!, it does not go into the animation slots Here's the code snippet:-
this is done in C#
public class anim : MonoBehaviour
{
public Animation aanimisnew;
public Animation wwww;
void Start()
{
wwww.Play();
}
private void FixedUpdate()
{
if (Input.GetKey("d"))
{
aanimisnew.Play();
}
}
}
Comment
I am also facing same problem. public Animation Bubble; But , when i am trying to get animation in inspector, it not showing anything or i am unable to drag any animation clip .
Your answer
Follow this Question
Related Questions
Animation Ignores Script 2 Answers
No Loop Time Options in Animation Inspector 1 Answer
Animation/Movement Error 1 Answer
Animation Input Not Working!!!!! 0 Answers