diff --git a/content/images/CameraZoomIn.png b/content/images/CameraZoomIn.png index da8f900..51d8d29 100644 Binary files a/content/images/CameraZoomIn.png and b/content/images/CameraZoomIn.png differ diff --git a/content/images/CameraZoomIn_dn.png b/content/images/CameraZoomIn_dn.png index 120ac0e..5546141 100644 Binary files a/content/images/CameraZoomIn_dn.png and b/content/images/CameraZoomIn_dn.png differ diff --git a/content/images/CameraZoomIn_ovr.png b/content/images/CameraZoomIn_ovr.png index df86686..f46ce27 100644 Binary files a/content/images/CameraZoomIn_ovr.png and b/content/images/CameraZoomIn_ovr.png differ diff --git a/content/images/SelectionRotate.png b/content/images/SelectionRotate.png index 023d5f0..50e1751 100644 Binary files a/content/images/SelectionRotate.png and b/content/images/SelectionRotate.png differ diff --git a/content/images/SelectionRotate_ds.png b/content/images/SelectionRotate_ds.png index e89d9be..5493614 100644 Binary files a/content/images/SelectionRotate_ds.png and b/content/images/SelectionRotate_ds.png differ diff --git a/content/images/SelectionRotate_ovr.png b/content/images/SelectionRotate_ovr.png index 920a402..2006408 100644 Binary files a/content/images/SelectionRotate_ovr.png and b/content/images/SelectionRotate_ovr.png differ diff --git a/content/images/SelectionTilt.png b/content/images/SelectionTilt.png index 0e9c805..beb32f8 100644 Binary files a/content/images/SelectionTilt.png and b/content/images/SelectionTilt.png differ diff --git a/content/images/SelectionTilt_ds.png b/content/images/SelectionTilt_ds.png index 3320405..fd90569 100644 Binary files a/content/images/SelectionTilt_ds.png and b/content/images/SelectionTilt_ds.png differ diff --git a/content/images/SelectionTilt_ovr.png b/content/images/SelectionTilt_ovr.png index 71cb3ed..da51623 100644 Binary files a/content/images/SelectionTilt_ovr.png and b/content/images/SelectionTilt_ovr.png differ diff --git a/src/source/DataModelV2/GuiRootInstance.cpp b/src/source/DataModelV2/GuiRootInstance.cpp index 8f79691..ade81d4 100644 --- a/src/source/DataModelV2/GuiRootInstance.cpp +++ b/src/source/DataModelV2/GuiRootInstance.cpp @@ -91,13 +91,13 @@ TextButtonInstance* makeToolbarTextButton(std::string title, std::string name, V TextButtonInstance* makeLeftMenuTextButton(std::string title, Vector2 boxBegin, Vector2 boxEnd) { TextButtonInstance* button = makeBaseTextButton(title, boxBegin, boxEnd); - button->textOutlineColor = Color4(0.5F,0.5F,0.5F,0.5F); + button->textOutlineColor = Color4(0.6F,0.6F,0.6F,0.5F); button->textColor = Color3(0,1,1); button->boxColor = Color4::clear(); button->textSize = 12; button->name = title; button->setAllColorsSame(); - button->textColorDis = Color3(0.8F,0.8F,0.8F); + button->textColorDis = Color3(0.65F,0.65F,0.65F); button->boxColorOvr = Color4(0.6F,0.6F,0.6F,0.4F); button->fontLocationRelativeTo = Vector2(10, 0); button->setButtonListener(gud); @@ -216,8 +216,8 @@ GuiRootInstance::GuiRootInstance() : _message(""), _messageTime(0) Texture::fromFile(VS03_WORKAROUND GetFileInPath("/content/images/SelectionRotate_ovr.png")), NULL, Texture::fromFile(VS03_WORKAROUND GetFileInPath("/content/images/SelectionRotate_ds.png"))); - instance->size = Vector2(30,30); - instance->position = Vector2(10, 175); + instance->size = Vector2(27,27); + instance->position = Vector2(17, 180); instance->setParent(this); instance->name = "Rotate"; instance->setButtonListener(rbl); @@ -227,8 +227,8 @@ GuiRootInstance::GuiRootInstance() : _message(""), _messageTime(0) Texture::fromFile(VS03_WORKAROUND GetFileInPath("/content/images/SelectionTilt_ovr.png")), NULL, Texture::fromFile(VS03_WORKAROUND GetFileInPath("/content/images/SelectionTilt_ds.png"))); - instance->size = Vector2(30,30); - instance->position = Vector2(40, 175); + instance->size = Vector2(20 ,20); + instance->position = Vector2(42, 183); instance->setParent(this); instance->name = "Tilt"; instance->setButtonListener(rbl);