/traderous

To get this branch, use:
bzr branch /bzr/traderous

« back to all changes in this revision

Viewing changes to cursor.lua

  • Committer: Josh C
  • Date: 2013-05-05 14:00:45 UTC
  • Revision ID: josh@9ix.org-20130505140045-o1dcza3m347rkx3i
targeting cursor (manual switch to start)

Show diffs side-by-side

added added

removed removed

 
1
Cursor = Tile:extend {
 
2
   image = 'data/cursor.png',
 
3
   onUpdate = function(self)
 
4
                 if the.keys:justPressed('t') then
 
5
                    self.image = 'data/cursor-target.png'
 
6
                 end
 
7
                 if the.keys:justPressed('c') then
 
8
                    self.image = 'data/cursor.png'
 
9
                 end
 
10
 
 
11
              end,
 
12
   onEndFrame = function(self)
 
13
                   self.x = love.mouse.getX() + 8 + the.player.x - 400
 
14
                   self.y = love.mouse.getY() + 8 + the.player.y - 300
 
15
                end
 
16
}
 
 
'\\ No newline at end of file'