And wtf is the difference between
Code:
myModel = Instantiate(".."):
myModel.transform.Translate(...);
myModel.animation.Play("Walk");


and
Code:
myModel = TVActor.Load(".."):
myModel.Move(...);
myModel.PlayAnimation("Walk",...);


?