/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-27 18:39:03 UTC
  • Revision ID: josh@9ix.org-20130427183903-3uc24myj115nckj0
scale movement with player size

Show diffs side-by-side

added added

removed removed

4
4
              the.player = self
5
5
 
6
6
              self.movementScale = self.height / 32
 
7
              print(self.movementScale)
7
8
 
8
9
              --self.scale = self.scaleHeight / self.height
9
10
              --self.width = self.height * .826
11
12
              --self:updateQuad()
12
13
           end,
13
14
   onStartFrame = function(self)
 
15
                     local ms = self.movementScale
 
16
 
14
17
                     if the.keys:pressed('up') then
15
 
                        self.velocity.y = -100
 
18
                        self.velocity.y = -100 * ms
16
19
                     elseif the.keys:pressed('down') then
17
 
                        self.velocity.y = 100
 
20
                        self.velocity.y = 100 * ms
18
21
                     else
19
22
                        self.velocity.y = 0
20
23
                     end
21
24
 
22
25
                     if the.keys:pressed('right') then
23
 
                        self.velocity.x = 100
 
26
                        self.velocity.x = 100 * ms
24
27
                     elseif the.keys:pressed('left') then
25
 
                        self.velocity.x = -100
 
28
                        self.velocity.x = -100 * ms
26
29
                     else
27
30
                        self.velocity.x = 0
28
31
                     end