소스 검색

Added directional indicator on zoom-out

tags/v0.0.6_dev
Madi 2 년 전
부모
커밋
de02ee57bf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/class/Player.lua

+ 1
- 1
src/class/Player.lua 파일 보기

@@ -194,5 +194,5 @@ function Player:draw()
love.graphics.circle("fill", x, y, 5, 20)

-- Directional Circle (temporary until actual rotatable ship texture is made)
love.graphics.circle("fill", x+dist*math.cos(self.angle), y-dist*math.sin(self.angle), 3, 20)
love.graphics.circle("fill", x+dist*(1/zoomlevel*2)*math.cos(self.angle), y-dist*(1/zoomlevel*2)*math.sin(self.angle), 1/zoomlevel*2)
end

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