cool
But in that case you would have to refresh the objects at the beginning of each track?
But in that case you would have to refresh the objects at the beginning of each track?
The 3DRad community can be found at classdev.net.
it could actually be possible, but with certain limitations.
you should use only one key to select car, looping the options (for example, start with car 1, <space> to choose car 2, <space> to choose car 3, <space> to choose car 1 again, and so on) with that key and selecting your choise with a second key (for example <enter>).
you should use the counter object, here is the value for the selected car, you setup it to start at 1 (car 1) and set the maximum to the max number of cars (for example 3 for 3 cars), and select the option to go back to start at 1 again with counter hit 4. you link the counter to an event on input (for example <space>, to pass the cars) and here you have the car selection.
to show the cars you use event on value linked to the counter object and hide and show cars according to the counter current number.
in the counter object (here's where you avoid scripting) you use the option to pass the value to a cross project file.
when you hit <enter> (to select the choosen car ) you call a exitFade object to close this project and call the next one, the cross project file you specified in the counter object one.
NOW!! here in this second project (the race), you have another counter object with the previous "select car screen" project file in cross project file to retrieve the number of choosen car, and using event on value to read the counter object value you start/stop and hide/show the right car.
and that would be it!
theoretically speaking