What kind of file are you looking for?
The model is made in Lightwave Modeler, .lwo
The bones and animation is done in LW Layout, .lws
Exported to .fbx
Imported into Unity and the animations get named by hand in the editor.
None of this is C# code except for the script that runs the animation on a key press.
- Code: Select all
using UnityEngine;
using System.Collections;
/*
* AnimationTest1
* Runs "Bend" animation on the Arrow
* When a key is pressed
*
*
* Started: 2/8/12
* Last edit: 2/8/12
*
*/
public class AnimationTest1 : MonoBehaviour
{
public void Update()
{
if (Input.GetKeyUp(KeyCode.P))
{
Debug.Log("trying to play anim");
animation.Play("Bend");
}
}
}
If you want Lightwave its not free.
Unity is free and you can download entire projects with all this done in it with tutorial documents.
If you want to learn animation, Blender is free.