/ld27

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

« back to all changes in this revision

Viewing changes to util.lua

  • Committer: Josh C
  • Date: 2013-08-25 21:05:20 UTC
  • Revision ID: josh@9ix.org-20130825210520-2of9iq2uemncp336
overhaul collision and physics to fix an annoying collision resolution 
bug

Show diffs side-by-side

added added

removed removed

 
1
util = {
 
2
   dim = function(dir)
 
3
      if dir == 'x' then
 
4
         return 'width'
 
5
      elseif dir == 'y' then
 
6
         return 'height'
 
7
      else
 
8
         if STRICT then error('dir '..dir) end
 
9
      end
 
10
   end
 
11
}