made joints scene the default

This commit is contained in:
jorrit 2017-06-30 16:22:13 +02:00
parent db16171b26
commit 2307fc7d7b

View File

@ -93,14 +93,14 @@ void TestbedApplication::init() {
// Create all the scenes
void TestbedApplication::createScenes() {
// Cubes scene
CubesScene* cubeScene = new CubesScene("Cubes");
mScenes.push_back(cubeScene);
// Joints scene
JointsScene* jointsScene = new JointsScene("Joints");
mScenes.push_back(jointsScene);
// Cubes scene
CubesScene* cubeScene = new CubesScene("Cubes");
mScenes.push_back(cubeScene);
// Collision shapes scene
CollisionShapesScene* collisionShapesScene = new CollisionShapesScene("Collision Shapes");
mScenes.push_back(collisionShapesScene);