From 4e2ba3ddb117ce1f6ac6505cf8b10c499933777e Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sun, 3 Sep 2023 11:59:50 +0300 Subject: [PATCH] uncommented code --- mapEditorAppState.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mapEditorAppState.cpp b/mapEditorAppState.cpp index 839f7b2..0a7bc68 100644 --- a/mapEditorAppState.cpp +++ b/mapEditorAppState.cpp @@ -576,14 +576,12 @@ namespace battleship{ case Bind::CREATE_WATERBODY: if(isPressed) mapEditor->createWaterbody(); break; - /* case Bind::MOVE_TERR_OBJ: if(isPressed) mapEditor->setMovingTerrainObject(true); break; case Bind::STOP_TERR_OBJ: if(isPressed) mapEditor->setMovingTerrainObject(false); break; - */ case Bind::MOVE_X_AXIS: case Bind::MOVE_Y_AXIS: case Bind::MOVE_Z_AXIS: @@ -615,7 +613,6 @@ namespace battleship{ camCtr->orientCamera(Vector3(0, 1, 0), strength); break; - /* case Bind::PUSH_VERTS_UP: case Bind::PUSH_VERTS_DOWN: if(mapEditor->isPushing()) mapEditor->pushLandmassVerts(strength); @@ -623,7 +620,6 @@ namespace battleship{ mapEditor->moveTerrainObject(strength); break; - */ } } }