I try to Play a Animation Backwards, but i stuck and cant locate the misstake.
This is my Script:
function maintooptions () {
animation.Play("maintooptions");
}
function maintochose () {
animation.Play("maintochose");
}
function backtooptions () {
animation.Play("maintooptions").speed = -1;
}
and this is the shown Error:
Assets/Scripts/Menue/Camerascript.js(11,53): BCE0019: ‘speed’ is not a member of ‘boolean’.
But this make that all Animation go Backwards
– Projekt-Krieg