Selaa lähdekoodia

bullet updated.

Mark Sibly 7 vuotta sitten
vanhempi
commit
8f4342f416
1 muutettua tiedostoa jossa 8 lisäystä ja 4 poistoa
  1. 8 4
      modules/bullet/bullet.monkey2

+ 8 - 4
modules/bullet/bullet.monkey2

@@ -568,8 +568,16 @@ Class btRigidBody Extends btCollisionObject
 		
 End
 
+Const BT_CONSTRAINT_ERP:Int
+Const BT_CONSTRAINT_STOP_ERP:Int
+Const BT_CONSTRAINT_CFM:Int
+Const BT_CONSTRAINT_STOP_CFM:Int
+
 Class btTypedConstraint Extends btObject
 	
+	Method setParam( num:Int,value:btScalar,axis:Int=-1 )
+
+	Method getParam:btScalar( num:Int,axis:Int=-1 )
 End
 
 Class btPoint2PointConstraint Extends btTypedConstraint="bbBullet::Point2PointConstraint"
@@ -586,10 +594,6 @@ Class btPoint2PointConstraint Extends btTypedConstraint="bbBullet::Point2PointCo
 		
 	Method getPivotB:btVector3()
 		
-	Method setParam( num:Int,value:btScalar,axis:Int=-1 )
-
-	Method getParam:btScalar( num:Int,axis:Int=-1 )
-		
 End