cocos2d - x 노드 (CCPhysicsSetting. h) API

본문http://blog.csdn.net/runaying ,인용 은 출처 를 밝 혀 야 합 니 다!
cocos2d - x 노드 (CCPhysicsSetting. h) API
따뜻 한 알림: 여러분 이 더 잘 공부 할 수 있 도록 본인 의 블 로 그 를 보 는 것 을 강력 추천 합 니 다. Cocos2d - X 권위 있 는 안내서 노트
물리 엔진 설정 의 정의 입 니 다.
///cocos2d-x-3.0alpha0/cocos2dx/physics
//             


#ifndef __CCPHYSICS_SETTING_H__
#define __CCPHYSICS_SETTING_H__

#define CC_PHYSICS_UNKNOWN  0
#define CC_PHYSICS_BOX2D    1
#define CC_PHYSICS_CHIPMUNK 2

#define CC_USE_CHIPMUNK

#ifdef CC_USE_BOX2D
#define CC_PHYSICS_ENGINE CC_PHYSICS_BOX2D
#elif defined(CC_USE_CHIPMUNK)
#define CC_PHYSICS_ENGINE CC_PHYSICS_CHIPMUNK
#else
#define CC_PHYSICS_ENGINE CC_PHYSICS_UNKNOWN
#endif

#if (CC_PHYSICS_ENGINE != CC_PHYSICS_UNKNOWN)
#define CC_USE_PHYSICS
#endif

#endif // __CCPHYSICS_SETTING_H__

좋은 웹페이지 즐겨찾기