소스 검색

Split ActorType::DYNAMIC in DYNAMIC_PHYSICAL and DYNAMIC_KINEMATIC

Daniele Bartolini 12 년 전
부모
커밋
6ac2ecb6fc
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      engine/physics/PhysicsTypes.h

+ 2 - 1
engine/physics/PhysicsTypes.h

@@ -32,7 +32,8 @@ struct ActorType
 	enum Enum
 	{
 		STATIC,
-		DYNAMIC
+		DYNAMIC_PHYSICAL,
+		DYNAMIC_KINEMATIC
 	};
 };