Hi!
I'm bulding a PacMan game(it works good at this point). I went into a dilem. What kind of processing should I use about PacMan eating stuff? There's 2 hypothesis that begs me for attention.
Pixel Detection:
detect% = POINT(pac.x, pac.y)
IF detect% = 0 THEN ...
and so on...
Coordination:
IF pac.x = 12 AND pac.y = 20 THEN ...
and so on...
What should I do for my craving PacMan?
I'm bulding a PacMan game(it works good at this point). I went into a dilem. What kind of processing should I use about PacMan eating stuff? There's 2 hypothesis that begs me for attention.
Pixel Detection:
detect% = POINT(pac.x, pac.y)
IF detect% = 0 THEN ...
and so on...
Coordination:
IF pac.x = 12 AND pac.y = 20 THEN ...
and so on...
What should I do for my craving PacMan?