コード例 #1
0
ファイル: Vehicle.cpp プロジェクト: cDoru/projectanarchy
void Vehicle::Update()
{
  UpdateHUD();
  UpdateWheels();
  UpdateEffects();
  UpdateSounds();
  UpdateCameraEntity();
  UpdateLight();
}
コード例 #2
0
void Vehicle::Update()
{
	//UpdateHUD();
	//UpdateWheels();
	//UpdateEffects();
	//UpdateSounds();
	if(!this->automated){
		UpdateCameraEntity();
	}
	else{
		this->SetInput(0,5,false,false,false);
	}
	//UpdateLight();
}