瀏覽代碼

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

Loading…
取消
儲存