I work with different type of animation with the animation tab in unity 3d. i can easly make it loop with the option buit in. but can i make an animation loop when i import it from maya or max. for exemple i have a bounce ball animation made with 3ds max. i import animation in unity and it work fine but i can't make it loop. the loop option dosn't work. can i make it.
thanks
You either need to set the animation to loop in the modelling program, or you need to use a script to set the "loop" flag in Unity manually. For the simple case (only one animation for the object, and have it play automatically), you can use:
function Start(){
animation.loop=true;
animation.Play();
}
I would imagine it should be possible to set the loop-flag of the animation in the import settings in the inspector, and re-import the model, but I don't know about that.