소스 검색

camera zoom while pause fix

tags/v0.0.6_dev
Niro 2 년 전
부모
커밋
67d73bc84c
1개의 변경된 파일9개의 추가작업 그리고 7개의 파일을 삭제
  1. +9
    -7
      main.lua

+ 9
- 7
main.lua 파일 보기

@@ -123,15 +123,17 @@ function cameraControls()
local step = settings.zoom.step

function love.wheelmoved(x, y)
if y > 0 then
-- Zoom in:
zoomlevel = zoomlevel + step*(zoomlevel*10)
elseif y < 0 then
-- Zoom out:
zoomlevel = zoomlevel - step*(zoomlevel*10)
if not button.pause.isActive then
if y > 0 then
-- Zoom in:
zoomlevel = zoomlevel + step*(zoomlevel*10)
elseif y < 0 then
-- Zoom out:
zoomlevel = zoomlevel - step*(zoomlevel*10)
end
end
end
-- Reset Zoom:
if love.mouse.isDown(controls.camera.zoom.reset) then
zoomlevel = settings.zoom.reset


불러오는 중...
취소
저장