About to test prefabs but I need more horsepower

This commit is contained in:
2023-03-22 18:00:39 -07:00
parent 807f78fcda
commit d0aa23fdf4
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,7 @@ void GameCamera::onStart() {
if(current != slowTarget) { if(current != slowTarget) {
float_t m = 6.0f; float_t m = 6.0f;
float_t s = delta * 3.0f; float_t s = delta * 3.0f;
current += glm::vec2( current += glm::vec2(.
mathClamp<float_t>((slowTarget.x - current.x) * s, -m, m), mathClamp<float_t>((slowTarget.x - current.x) * s, -m, m),
mathClamp<float_t>((slowTarget.y - current.y) * s, -m, m) mathClamp<float_t>((slowTarget.y - current.y) * s, -m, m)
); );

View File

@ -18,7 +18,6 @@ namespace Dawn {
glm::vec2 lookOffsetScale = glm::vec2(6.0f, 3.0f); glm::vec2 lookOffsetScale = glm::vec2(6.0f, 3.0f);
float_t movementScrollSpeed = 0.5f; float_t movementScrollSpeed = 0.5f;
glm::vec3 zoomOffset = glm::vec3(0, 30.0f, 7.5f); glm::vec3 zoomOffset = glm::vec3(0, 30.0f, 7.5f);
PlayerController *player = nullptr; PlayerController *player = nullptr;
GameCamera(SceneItem *item); GameCamera(SceneItem *item);