Hey Jlulian, I tried what you posted and for the most part everything seems to work fine... except when we try to put it into reverse...
Code:
Jaguar* jaguar1 = new Jaguar(1);
Jaguar* jaguar2 = new Jaguar(2);
jaguar1->Set(0.5);
Wait(2000);
jaguar2->Set(1.0);
I tried playing around with the code a bit and found that whenever I set the number to a negative value for example:
Code:
jaguar1->Set(-1.0);
... the code wouldn't run...
I haven't tried played around with it too much but I was wondering if you knew anything about this...