Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have Pathfinding with moving obstacles so Astar isn't quite the right way but I think what I need I can get to work if I can update a matrix in my TiledMap on every step the PathModifier takes.

Is that possible?

There is onModifierStarted and onModifierFinished but there seems to be no "onModifierMove"?

share|improve this question

1 Answer

I think you kind of answered your own question really - take 1 step, and then in the onModifierFinished, make your matrix adjustments, then setup the next PathModifier to move 1 more step ... rinse, repeat as needed

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.