summary refs log tree commit diff stats
path: root/src/behaviour_system.h
Commit message (Collapse)AuthorAgeFilesLines
* Added moonwalking to pathfinding behaviourStar Rauchenberger2021-07-061-1/+2
| | | | This flag will make the sprite appear to be walking backwards.
* Handled case where a pathfollowing sprite overshoots its destinationKelly Rauchenberger2021-03-021-0/+1
| | | | This may happen due to lag or due to debugging with lldb. What happens is that 60 times a second, the engine will check whether the direction toward the current endpoint is equal to the direction in the pathfinding instruction, and if it isn't (because the sprite has gone past the endpoint) then it sets the sprite's position to the endpoint instantly so that the pathfinding can continue.
* Added A* pathfindingKelly Rauchenberger2021-02-271-0/+12
|
* Added a randomly wandering Ionia to the mapKelly Rauchenberger2021-02-201-0/+24