Added support for HkpExtendedMeshShape.

This commit is contained in:
ViktorLjung
2014-04-27 08:08:00 +02:00
parent cb6b0a58d8
commit 720cf3aa87
8 changed files with 153 additions and 207 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Components_MeshShape_h__
#define Components_MeshShape_h__
#include <string>
#include "Component.h"
namespace Components
{
struct MeshShape : Component
{
std::string ResourceName;
};
}
#endif // !Components_MeshShape_h__
+1 -1
View File
@@ -10,7 +10,7 @@ namespace Components
struct Vehicle : Component
{
Vehicle()
: MaxTorque(500.0f), MinRPM(1000.0f), OptimalRPM(5500.0f), MaxRPM(7500.0f), MaxSteeringAngle(35), TopSpeed(50.0f) { }
: MaxTorque(500.0f), MinRPM(800.0f), OptimalRPM(4000.0f), MaxRPM(6000.0f), MaxSteeringAngle(35), TopSpeed(50.0f) { }
float MaxTorque;
float MinRPM;