MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / SteerLeft

Method SteerLeft

ogsr_engine/xrGame/Car.cpp:1112–1122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1110 e_state_steer = right;
1111}
1112void CCar::SteerLeft()
1113{
1114 b_wheels_limited = true; // no need to limit wheels when stiring
1115 m_pPhysicsShell->Enable();
1116 xr_vector<SWheelSteer>::iterator i, e;
1117 i = m_steering_wheels.begin();
1118 e = m_steering_wheels.end();
1119 for (; i != e; ++i)
1120 i->SteerLeft();
1121 e_state_steer = left;
1122}
1123
1124void CCar::SteerIdle()
1125{

Callers

nothing calls this directly

Calls 3

EnableMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected