After updating to the newest S-U runtime, my TrackEntry.time calls are now returning an error. Is there a new way of setting time now? The change is not reflected in the documentation.
Here's an example.
trackEntry.TimeScale = 0;
trackEntry.Time = atThisFrame / 30f; //error
if (warmupTimer >= swingWarmupModified)
{
trackEntry.Time = 29; //error
}
Error CS1061 'TrackEntry' does not contain a definition for 'Time' and no extension method 'Time' accepting a first argument of type 'TrackEntry' could be found (are you missing a using directive or an assembly reference?) UG prototype.CSharp 2564 Active
Error CS1061 'TrackEntry' does not contain a definition for 'Time' and no extension method 'Time' accepting a first argument of type 'TrackEntry' could be found (are you missing a using directive or an assembly reference?) UG prototype.CSharp 2567 Active