Skip to content

Commit

Permalink
- Update package
Browse files Browse the repository at this point in the history
- Code cleanup
  • Loading branch information
edunad committed May 26, 2024
1 parent b1c8c3b commit 94bf490
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ if(NOT WIN32 AND RAWRBOX_USE_WAYLAND)
CPMAddPackage("gl:wayland/weston@12.0.3")
endif()

CPMAddPackage("gh:stephenberry/glaze@2.6.1")
CPMAddPackage("gh:stephenberry/glaze@2.6.7")

# ---
if(RAWRBOX_BUILD_RAWRBOX_NETWORK OR RAWRBOX_BUILD_RAWRBOX_ASSIMP)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ CPMDeclarePackage(magic_enum
)
# glaze
CPMDeclarePackage(glaze
VERSION 2.6.1
VERSION 2.6.7
GITHUB_REPOSITORY stephenberry/glaze
SYSTEM YES
EXCLUDE_FROM_ALL YES
Expand Down Expand Up @@ -77,7 +77,7 @@ CPMDeclarePackage(cpptrace
# luau
CPMDeclarePackage(luau
NAME luau
GIT_TAG 0.625
GIT_TAG 0.626
GITHUB_REPOSITORY luau-lang/luau
OPTIONS
"LUAU_BUILD_CLI OFF"
Expand Down
12 changes: 5 additions & 7 deletions rawrbox.render/include/rawrbox/render/cameras/orbital.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#pragma once

#include <rawrbox/math/vector2.hpp>
#include <rawrbox/math/vector3.hpp>
#include <rawrbox/render/cameras/perspective.hpp>
#include <rawrbox/render/window.hpp>
#include <rawrbox/utils/keys.hpp>
Expand All @@ -11,12 +9,12 @@
namespace rawrbox {

struct CameraControls {
int rotate = MOUSE_BUTTON_2;
int rotate = rawrbox::MOUSE_BUTTON_2;

int forward = KEY_W;
int backwards = KEY_S;
int left = KEY_A;
int right = KEY_D;
int forward = rawrbox::KEY_W;
int backwards = rawrbox::KEY_S;
int left = rawrbox::KEY_A;
int right = rawrbox::KEY_D;
};

class CameraOrbital : public rawrbox::CameraPerspective {
Expand Down
2 changes: 1 addition & 1 deletion rawrbox.scripting/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CPMAddPackage(
GITHUB_REPOSITORY
luau-lang/luau
GIT_TAG
0.625
0.626
OPTIONS
"LUAU_BUILD_CLI OFF"
"LUAU_BUILD_TESTS OFF"
Expand Down

0 comments on commit 94bf490

Please sign in to comment.