2
image = 'data/cursor.png',
3
inTargetArea = function(self)
4
-- TODO: memoize this per-tick
6
local mouseAngle = math.atan2(self.vector.y, self.vector.x)
7
local mouseVsShipAbs = math.abs(the.player.rotation - mouseAngle)
8
local mouseVsShip = math.min(2*math.pi - mouseVsShipAbs,
11
return mouseVsShip < 0.75
13
onStartFrame = function(self)
14
self.vector = vector.new(
15
love.mouse.getX() - the.app.width/2,
16
love.mouse.getY() - the.app.height/2
19
onUpdate = function(self)
20
if self.vector:len2() > 64^2 then
21
self.image = 'data/cursor-target.png'
23
self.image = 'data/cursor.png'
26
-- if self:inTargetArea() then
27
-- self.image = 'data/cursor-target.png'
29
-- self.image = 'data/cursor.png'
32
onEndFrame = function(self)
33
self.x = love.mouse.getX() + 8 + the.player.x - the.app.width / 2
34
self.y = love.mouse.getY() + 8 + the.player.y - the.app.height / 2
b'\\ No newline at end of file'