Need suggestions to improve game
Catch The Ball is FREE - http://itunes.apple.com/app/catch-ball/id455516366?mt=8
Feel free to download and tell me how s*** it is (I know it is) BUT i am working on a big update and ONLY problem I have and need help with is...
I used the collide rule to make the balls bounce (left to right) and (up and down). Is there a way to make the ball/balls, move left to right - up and down WITHOUT using collide rule?
collide rule would work fine but these balls are rounded (of course, its a ball) but sometimes the balls bounce off the screen and this is a problem.
Any help would be great. Try the game out (again its free) then leave a suggestion for improvement.
Thanks
Feel free to download and tell me how s*** it is (I know it is) BUT i am working on a big update and ONLY problem I have and need help with is...
I used the collide rule to make the balls bounce (left to right) and (up and down). Is there a way to make the ball/balls, move left to right - up and down WITHOUT using collide rule?
collide rule would work fine but these balls are rounded (of course, its a ball) but sometimes the balls bounce off the screen and this is a problem.
Any help would be great. Try the game out (again its free) then leave a suggestion for improvement.
Thanks
Comments
(put these in the ball) make an attribute in the ball called lefttoright
Rule: when attribute self. position.x = (most left position)
change attribute self.lefttoright to false
Rule: when attribute self.position.x = (most right position)
change attribute self.lefttoright to true
Rule: when attribute self.lefttoright = false
interpolate self.position.x to (most right position)
Rule: when attribute self.lefttoright = true
interpolate self.position.x to (most left position)
Hope thats what you needed. If you want up and down change the self.position.x to self.position.y
BTW the artwork is great!
aslo what is (most right position) and (most left position)? do i need to make seperate attributes for this? Numbers?
i don't understand
David