Collision/bounce issue
saltysalt
Member Posts: 2
Hello, I'm making a game that's based around bouncing a ball against triangle bumpers into a "goal". I was able to get the angle down when the ball collides but it's bumping too early as if there is something there. I'm using a cropped triangle PNG image. Can anyone help?
Comments
saltysalt, as ktfright said, the actor is using a box defined by its width and length for collision. So currently this is the only way collision works. We are looking into collision for shapes other than boxes.
However, here are a couple of tips.
If your triangle actor is always on the bottom of the screen, you can can rotate the actor 45 degrees and use the corner of the box as the triangle.
If you make 3 thin actors, you can make the sides of the triangle. However, rotating the "super-actor" made by the 3 actors would be a tough problem.
I could really use triangle collision for my next game.