Merge pull request #502 from MihailRis/devel

begin 0.28 development
This commit is contained in:
MihailRis
2025-04-02 20:09:43 +03:00
committed by GitHub
154 changed files with 3767 additions and 2810 deletions
-1
View File
@@ -14,7 +14,6 @@
#include "physics/PhysicsSolver.hpp"
#include "voxels/Chunks.hpp"
#include "window/Camera.hpp"
#include "window/Events.hpp"
#include "world/Level.hpp"
#include "data/dv_util.hpp"
#include "debug/Logger.hpp"
+13 -10
View File
@@ -18,16 +18,19 @@ struct Hitbox;
struct EngineSettings;
struct PlayerInput {
bool zoom : 1;
bool cameraMode : 1;
bool moveForward : 1;
bool moveBack : 1;
bool moveRight : 1;
bool moveLeft : 1;
bool sprint : 1;
bool shift : 1;
bool cheat : 1;
bool jump : 1;
struct {
bool zoom : 1;
bool cameraMode : 1;
bool moveForward : 1;
bool moveBack : 1;
bool moveRight : 1;
bool moveLeft : 1;
bool sprint : 1;
bool shift : 1;
bool cheat : 1;
bool jump : 1;
};
glm::vec2 delta;
};
struct CursorSelection {