OnBoatPathGenerateUsage​Called before the ocean patrol path for a BaseBoat or CargoShip is generatedReturn a new List<Vector3> to change boat pathExamples​Change boat pathList<Vector3> OnBoatPathGenerate(BaseBoat boat){ return new List<Vector3>() { new Vector3(1f, 2f, 3f) };}Copy