I would like to add speed controls to this rollercoaster playground example from the workshop docs:
I can change the speed of the rollercoaster by modifying line 571:
var speed = 0.5;
However, the scene begins to stutter when the passenger turns to look out at the start of the run and also on the curve up/down sections. Flat track appears to render smoothly.
I guess you need to generate more sections on the curved tracks. The transformation from one point to the next is probably too much. It is more noticeable when the speed is slower. If you can add more sections on the curved tracks, the transformation should be more smooth.