Time/RealTime.NowDouble (#4090)

This commit is contained in:
Conna Wiles
2026-02-22 14:56:54 +00:00
committed by GitHub
parent 25f8ffa9e8
commit 6262249de1
27 changed files with 171 additions and 102 deletions

View File

@@ -112,7 +112,7 @@ public abstract partial class GameObjectSystem : IDeltaSnapshot
return p.Value;
if ( InterpolatedVars.TryGetValue( p.PropertyName, out var i ) )
return (T)i.Query( Time.Now );
return (T)i.Query( Time.NowDouble );
return p.Value;
}