Interface AvoidLivingGoal
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
AvoidLivingGoal.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static AvoidLivingGoal.Builder
builder()
Creates a newAvoidLivingGoal.Builder
for creating a newAvoidLivingGoal
.double
closeRangeSpeed()
double
farRangeSpeed()
float
searchDistance()
AvoidLivingGoal
setCloseRangeSpeed(double speed)
AvoidLivingGoal
setFarRangeSpeed(double speed)
AvoidLivingGoal
setSearchDistance(float distance)
AvoidLivingGoal
setTargetSelector(Predicate<Living> predicate)
Predicate<Living>
targetSelector()
Gets thePredicate
for filtering whichLiving
instances are qualified to have the owningAgent
move away from theLiving
of which thePredicate.test(Object)
returnstrue
.-
Methods inherited from interface org.spongepowered.api.entity.ai.goal.Goal
canBeInterrupted, canRunConcurrentWith, executor, owner, type
-
-
-
-
Method Detail
-
builder
static AvoidLivingGoal.Builder builder()
Creates a newAvoidLivingGoal.Builder
for creating a newAvoidLivingGoal
.- Returns:
- A new builder
-
targetSelector
Predicate<Living> targetSelector()
Gets thePredicate
for filtering whichLiving
instances are qualified to have the owningAgent
move away from theLiving
of which thePredicate.test(Object)
returnstrue
.- Returns:
- The predicate used to filter which entities to avoid
-
setTargetSelector
AvoidLivingGoal setTargetSelector(Predicate<Living> predicate)
Sets thePredicate
for filtering whichLiving
instances are considered to be "avoided" by the owningAgent
.- Parameters:
predicate
- The predicate- Returns:
- This task, for chaining
-
searchDistance
float searchDistance()
Gets the search distance at which anyLiving
instances in a radius of the parentAgent
are considered for avoiding.- Returns:
- The search distance
-
setSearchDistance
AvoidLivingGoal setSearchDistance(float distance)
Sets the search distance at which anyLiving
instances in a radius of the parentAgent
are considered for avoiding.- Parameters:
distance
- The search distance- Returns:
- This task, for chaining
-
closeRangeSpeed
double closeRangeSpeed()
Gets the speed "modifier" for which the parentAgent
will move away from a foundLiving
to "avoid" when in close range. Close range is currently defined as7
blocks.- Returns:
- The close range movement speed modifier
-
setCloseRangeSpeed
AvoidLivingGoal setCloseRangeSpeed(double speed)
Sets the peed "modifier" for which the parentAgent
will move away from a foundLiving
to "avoid" when in close range. Close range is currently defined as7
blocks.- Parameters:
speed
- The movement speed modifier- Returns:
- This task, for chaining
-
farRangeSpeed
double farRangeSpeed()
Gets the close range speed "modifier" for which the parentAgent
will move away from a foundLiving
to "avoid" when in a farther range than 7 blocks.- Returns:
- The close range speed
-
setFarRangeSpeed
AvoidLivingGoal setFarRangeSpeed(double speed)
Sets the close range speed "modifier" for which the parentAgent
will move away from a foundLiving
to "avoid" when in a farther range than 7 blocks.- Parameters:
speed
- The movement speed modifier- Returns:
- This task, for chaining
-
-