/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-05 22:06:58 UTC
  • Revision ID: josh@9ix.org-20130305220658-92yptjso9z57vzly
use zoetrope 288:a82a08660477 2013-02-23

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 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')
 
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')
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)
104
102
        end,
105
103
 
106
104
        __tostring = function (self)