Browse Source

CIS FIX

legacy
Benjamin ‘Touky’ Huet touky 12 years ago
parent
commit
b37dfcabf8
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      test/Physics/EasyPhysics.cpp

+ 7
- 1
test/Physics/EasyPhysics.cpp View File

@@ -64,9 +64,15 @@ void EasyPhysics::SetShapeTo(btCollisionShape* collision_shape)
//Box Shape support //Box Shape support
void EasyPhysics::SetShapeToBox(lol::vec3& box_size) void EasyPhysics::SetShapeToBox(lol::vec3& box_size)
{ {
SetShapeTo(new btBoxShape(LOL2BT_VEC3(box_size * LOL2BT_UNIT * LOL2BT_SIZE)));
vec3 new_box_size = box_size * LOL2BT_UNIT * LOL2BT_SIZE;
SetShapeTo(new btBoxShape(LOL2BT_VEC3(new_box_size)));
} }


//void EasyPhysics::SetShapeToSphere(lol::vec3& box_size)
//{
// SetShapeTo(new btBoxShape(LOL2BT_VEC3(box_size * LOL2BT_UNIT * LOL2BT_SIZE)));
//}

//------------------------------------------------------------------------- //-------------------------------------------------------------------------
//Base Location/Rotation setup //Base Location/Rotation setup
//-- //--


Loading…
Cancel
Save