/zoeplat

To get this branch, use:
bzr branch http://9ix.org/bzr/zoeplat

« back to all changes in this revision

Viewing changes to zoetrope/sprites/tile.lua

  • Committer: Josh C
  • Date: 2013-03-04 23:27:03 UTC
  • Revision ID: josh@9ix.org-20130304232703-nob2mg5wbo5co5is
basic tiles, map, player, movement

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
                y = math.floor(y or self.y)
61
61
        
62
62
                if STRICT then
63
 
                        assert(type(x) == 'number', 'visible tile does not have a numeric x property')
64
 
                        assert(type(y) == 'number', 'visible tile does not have a numeric y property')
65
 
                        assert(type(self.width) == 'number', 'visible tile does not have a numeric width property')
66
 
                        assert(type(self.height) == 'number', 'visible tile does not have a numeric height property')
 
63
                        assert(type(x) == 'number', 'visible fill does not have a numeric x property')
 
64
                        assert(type(y) == 'number', 'visible fill does not have a numeric y property')
 
65
                        assert(type(self.width) == 'number', 'visible fill does not have a numeric width property')
 
66
                        assert(type(self.height) == 'number', 'visible fill does not have a numeric height property')
67
67
                end
68
68
 
69
69
                if not self.image then return end
99
99
                if colored then
100
100
                        love.graphics.setColor(255, 255, 255, 255)
101
101
                end
 
102
                        
 
103
                Sprite.draw(self, x, y)
102
104
        end,
103
105
 
104
106
        __tostring = function (self)