Does A* have these AI behaviors: Wander, Move towards Goal, Move Along Spline?

If not, what might be some recommended Unity Assets, compatible with A*, that have these behaviors? Thanks.

Hi

It supports move towards goal, and there is a guide for wandering. But in general this package is not focused around these kinds of behaviors.

1 Like

Behavior designer (a behavior tree asset) has a movement pack with Wander, Patrol and other behaviors that’s implemented for A* Pathfinding Project: Behavior Designer - Movement Pack | AI | Unity Asset Store

But A*PP itself doesn’t cover behaviors like this, it’s just pathfinding AFAIK

Although if you’re wanting splines you may want smoothing on your paths?:
https://arongranberg.com/astar/documentation/4_0_7_2297d27/class_pathfinding_1_1_simple_smooth_modifier.php

A*PP has path modifiers including smoothing, and you can write your own modifiers: A* Pathfinding Project: Writing Modifiers

2 Likes

+1 for Behaviour Designer. It integrates very nicely with A*PP and they are a powerful duo when paired together.