Quote:
Originally Posted by mrklempae
We're having trouble with out robot losing control every time Wait() is used.
|
This is a classic problem that new teams (or programmers) struggle with every season.
You need to either
a) use a state machine, or
b) put your wait code in a separate thread where it can run concurrently.
Here's a generic explanation of state machine.