Play animation from certain point

Hi,

Just wondering if there is a way to start an animation clip from a certain point, and play it from there?

I know you can set the time for each clip like this:

	m_book.animation.Stop();
	m_book.animation.Play("_name");
	m_book.animation["_name"].normalizedTime = perc;
	m_book.animation.Sample();
	m_book.animation.Stop();

But i’d like to just set it to a point and play, instead of setting it each frame.

Thanks!

I solved this by using time variable of animationstate. Here is the code

animation.Play(“Walk”);
animation[“Walk”].time = 8.0

Animation will start from 8th second;