IPathWaypoint interface
Пакет: com.hypixel.hytale.server.core.universe.world.path
Файл: com/hypixel/hytale/server/core/universe/world/path/IPathWaypoint.java
Методы (5)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
float |
getObservationAnglefloat getObservationAngle() |
abstract |
int |
getOrderint getOrder() |
abstract |
double |
getPauseTimedouble getPauseTime() |
abstract |
Vector3d |
getWaypointPositionVector3d getWaypointPosition(@Nonnull ComponentAccessor<EntityStore> var1) |
abstract |
Rotation3f |
getWaypointRotationRotation3f getWaypointRotation(@Nonnull ComponentAccessor<EntityStore> var1) |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.universe.world.path;
class="kw">import com.hypixel.hytale.component.ComponentAccessor;
class="kw">import com.hypixel.hytale.math.vector.Rotation3f;
class="kw">import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
class="kw">import javax.annotation.Nonnull;
class="kw">import org.joml.Vector3d;
class="kw">public class="kw">interface IPathWaypoint {
int getOrder();
Vector3d getWaypointPosition(@Nonnull ComponentAccessor<EntityStore> var1);
Rotation3f getWaypointRotation(@Nonnull ComponentAccessor<EntityStore> var1);
double getPauseTime();
float getObservationAngle();
}