It works as advertised... but not what i`m searching for.
I want the entire sex scene looped.
This "this.play(X, 1f)" think looks promising though.
I typed in as such:
this.Play(1, 1f);
this.Play(2, 1f);
this.Play(3, 1f);
this.Play(4, 1f);
this will play all animation... but at 4 it starts looping the end_scene as it does when you put either "loop" or set "end = false"
Putting
this.Play(1, 1f);
this.Play(2, 1f);
this.Play(3, 1f);
this.Play(4, 1f);
this.Play(1, 1f);
this.Play(2, 1f);
this.Play(3, 1f);
this.Play(4, 1f);
this.Play(1, 1f);
this.Play(2, 1f);
this.Play(3, 1f);
this.Play(4, 1f);
only plays till 4 and then loops that as bevor.
Is there some smart trick to let the system start again from "this.Play(1, 1f);"?