Merge pull request #311 from aismann/master

Update controller.cpp
This commit is contained in:
HALX99 2020-12-21 22:19:29 +08:00 committed by GitHub
commit 9c855006a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -93,11 +93,7 @@ public:
addTest("Node: Particles", [](){return new ParticleTests(); });
addTest("Node: Particle3D (PU)", [](){return new Particle3DTests(); });
#if CC_USE_PHYSICS
#if CC_ENABLE_CHIPMUNK_INTEGRATION
addTest("Node: Physics (Chipmunk2D)", []() { return new PhysicsTests(); });
#elif CC_ENABLE_BOX2D_INTEGRATION
addTest("Node: Physics (Box2D)", []() { return new PhysicsTests(); });
#endif
addTest("Node: Physics", []() { return new PhysicsTests(); });
#endif
addTest("Node: Physics3D", []() { return new Physics3DTests(); } );
addTest("Node: RenderTexture", [](){return new RenderTextureTests(); });