cumulative update

This commit is contained in:
2025-12-01 00:02:14 +07:00
parent e12b75be45
commit 66fcc6a2bb
12 changed files with 131 additions and 151 deletions

View File

@@ -7,23 +7,14 @@ namespace VeloX;
[Title( "VeloX - Car" )]
public partial class VeloXCar : VeloXBase
{
protected override void FixedUpdate()
{
UpdateInput();
PhysicsSimulate();
UpdateABS();
UpdateESC();
}
protected override void OnFixedUpdate()
{
if ( IsProxy )
return;
base.OnFixedUpdate();
if ( IsProxy )
return;
UpdateABS();
UpdateESC();
var dt = Time.Delta;
//EngineThink( dt );
SimulateAerodinamics( dt );