small changes to trimesh scaling
This commit is contained in:
parent
9b52b9badc
commit
cb6fdf19a7
@ -13779,40 +13779,7 @@
|
|||||||
<yRot>0.0</yRot>
|
<yRot>0.0</yRot>
|
||||||
<zRot>0.0</zRot>
|
<zRot>0.0</zRot>
|
||||||
<manualPos>false</manualPos>
|
<manualPos>false</manualPos>
|
||||||
<<<<<<< HEAD
|
|
||||||
<xPos>81.500000</xPos>
|
<xPos>81.500000</xPos>
|
||||||
=======
|
|
||||||
<xPos>212.500000</xPos>
|
|
||||||
<yOffset>3.0</yOffset>
|
|
||||||
<zPos>-222.500000</zPos>
|
|
||||||
<idGreen>1</idGreen>
|
|
||||||
<idBlue>67</idBlue>
|
|
||||||
<typeID>40</typeID>
|
|
||||||
<trigger>
|
|
||||||
<name>-</name>
|
|
||||||
<xPosition>0</xPosition>
|
|
||||||
<yPosition>0</yPosition>
|
|
||||||
<zPosition>0</zPosition>
|
|
||||||
<targetIdGreen>-</targetIdGreen>
|
|
||||||
<targetIdBlue>-</targetIdBlue>
|
|
||||||
<distance>1.0</distance>
|
|
||||||
<isBiggerThan>false</isBiggerThan>
|
|
||||||
<objectNum>0</objectNum>
|
|
||||||
<luaScript>-</luaScript>
|
|
||||||
<toChangeIdGreen>0</toChangeIdGreen>
|
|
||||||
<toChangeIdBlue>0</toChangeIdBlue>
|
|
||||||
<toChangeObjNum>0</toChangeObjNum>
|
|
||||||
</trigger>
|
|
||||||
</composition>
|
|
||||||
|
|
||||||
<composition>
|
|
||||||
<scale>1.0</scale>
|
|
||||||
<xRot>0.0</xRot>
|
|
||||||
<yRot>0.0</yRot>
|
|
||||||
<zRot>0.0</zRot>
|
|
||||||
<manualPos>false</manualPos>
|
|
||||||
<xPos>210.500000</xPos>
|
|
||||||
>>>>>>> 12ee9a4ac5b8c3350e8afc3b6b251992020790e2
|
|
||||||
<yOffset>0.0</yOffset>
|
<yOffset>0.0</yOffset>
|
||||||
<zPos>-244.500000</zPos>
|
<zPos>-244.500000</zPos>
|
||||||
<idGreen>1</idGreen>
|
<idGreen>1</idGreen>
|
||||||
|
@ -212,7 +212,7 @@ void Physics::addTriangleMeshBody(Entity entity, std::string path, float mass, f
|
|||||||
}
|
}
|
||||||
|
|
||||||
btBvhTriangleMeshShape* shape = new btBvhTriangleMeshShape(triMesh,true);
|
btBvhTriangleMeshShape* shape = new btBvhTriangleMeshShape(triMesh,true);
|
||||||
shape->setLocalScaling(btVector3(0.5f,0.5f,0.5f));
|
shape->setLocalScaling(btVector3(1.5,1.5,1.5));
|
||||||
btDefaultMotionState* motion = new btDefaultMotionState(btTransform(btQuaternion(0,0,0,1),btVector3(entity.getPosition().x,entity.getPosition().y,entity.getPosition().z)));
|
btDefaultMotionState* motion = new btDefaultMotionState(btTransform(btQuaternion(0,0,0,1),btVector3(entity.getPosition().x,entity.getPosition().y,entity.getPosition().z)));
|
||||||
|
|
||||||
btVector3 inertia(0,0,0);
|
btVector3 inertia(0,0,0);
|
||||||
|
Loading…
Reference in New Issue
Block a user