mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-19 22:53:47 +00:00
uninitialized variables-verve
This commit is contained in:
parent
43259e29c1
commit
36cbc4c962
3 changed files with 12 additions and 7 deletions
|
|
@ -49,7 +49,8 @@ VActorPhysicsController::VActorPhysicsController( void ) :
|
|||
mControlState( k_NullControlState ),
|
||||
mMoveState( k_NullMove ),
|
||||
mVelocity( VectorF::Zero ),
|
||||
mGravity( 0.f, 0.f, -9.8f )
|
||||
mGravity( 0.f, 0.f, -9.8f ),
|
||||
mOnGround(false)
|
||||
{
|
||||
// Void.
|
||||
}
|
||||
|
|
@ -1274,4 +1275,4 @@ void VActorPhysicsController::unpackUpdate( NetConnection *pConnection, BitStrea
|
|||
// Apply.
|
||||
setPosition( position );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue