|
Re: Need Serious help !!!!
The operatorControl function is only called a single time so your code runs once, using one set of joystick info then does nothing for a long time.
You should surround the code you currently have in the operatorControl method with a loop:
while(isOperatorControl() && isEnabled())
{
}
|