/spacey

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

« back to all changes in this revision

Viewing changes to rock.lua

  • Committer: Josh C
  • Date: 2013-05-18 00:09:56 UTC
  • Revision ID: josh@9ix.org-20130518000956-s9717aensfsq1b3c
fix double-removing sprites (and subsequent zombie mirror bullets).  
also lots of debug stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
                 rock = self
14
14
              }
15
15
 
16
 
              the.app.view:add(self.collider)
17
16
              the.rockColliders:add(self.collider)
18
17
           end,
19
18
   onUpdate = function(self, dt)
58
57
                     }
59
58
                     the.app.view:add(b)
60
59
 
61
 
                     the.app.view:remove(self.rock)
62
 
                     the.app.view:remove(self)
 
60
                     the.rocks:remove(self.rock)
63
61
                     the.rockColliders:remove(self)
64
62
                     self.rock = nil -- break circular reference
65
63
 
66
 
                     the.app.view:remove(other)
67
64
                     the.bullets:remove(other)
 
65
                     other:die()
68
66
                  end
69
67
               end
70
68
}
 
 
b'\\ No newline at end of file'