ArriveBehavior constructor

ArriveBehavior([
  1. Vector3? target,
  2. double deceleration = 3,
  3. double tolerance = 0
])

Constructs a new arrive behavior.

Implementation

ArriveBehavior([Vector3? target, this.deceleration = 3, this.tolerance = 0 ]):super() {
	this.target = target ?? Vector3();
}