Reputation: 38583
I am writing a program for an Android phone (Which uses Java as the programming language)
I am writing a game that needs objects to - move around - other objects. For example: if an object was to move from point A to point B and there was another game object in the way, it would move around it.
I also need to detect collisions with object, for example if an object hits another object.
Any good resources for this stuff?
Upvotes: 0
Views: 289
Reputation: 15925
as for collision detection, theres some points you might consider according to your specific needs:
Upvotes: 1
Reputation: 5740
It's been a long time since I studied this, but pathfinding with potential fields might be useful.
Upvotes: 0