/ld26

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-04-28 01:24:54 UTC
  • Revision ID: josh@9ix.org-20130428012454-b7kpooluezexnvde
fade out

Show diffs side-by-side

added added

removed removed

1
1
Player = Tile:extend {
2
2
   image = 'data/player-null.png',
3
 
   minY = 0, maxY = 600,
4
 
   canMove = true,
5
3
   onNew = function(self)
6
4
              the.player = self
7
5
 
19
17
                        ms = ms * 4
20
18
                     end
21
19
 
22
 
                     if self.canMove then
23
 
                        if the.keys:pressed('up') then
24
 
                           self.velocity.y = -100 * ms
25
 
                        elseif the.keys:pressed('down') then
26
 
                           self.velocity.y = 100 * ms
27
 
                        else
28
 
                           self.velocity.y = 0
29
 
                        end
 
20
                     if the.keys:pressed('up') then
 
21
                        self.velocity.y = -100 * ms
 
22
                     elseif the.keys:pressed('down') then
 
23
                        self.velocity.y = 100 * ms
 
24
                     else
 
25
                        self.velocity.y = 0
 
26
                     end
30
27
 
31
 
                        if the.keys:pressed('right') then
32
 
                           self.velocity.x = 100 * ms
33
 
                        elseif the.keys:pressed('left') then
34
 
                           self.velocity.x = -100 * ms
35
 
                        else
36
 
                           self.velocity.x = 0
37
 
                        end
 
28
                     if the.keys:pressed('right') then
 
29
                        self.velocity.x = 100 * ms
 
30
                     elseif the.keys:pressed('left') then
 
31
                        self.velocity.x = -100 * ms
 
32
                     else
 
33
                        self.velocity.x = 0
38
34
                     end
39
35
                  end,
40
36
   onUpdate = function(self, dt)