Uses of Class
net.minecraft.world.entity.EntityTrackingSection
Package | Description |
---|---|
net.minecraft.client.world | |
net.minecraft.server.world | |
net.minecraft.world.entity |
-
Uses of EntityTrackingSection in net.minecraft.client.world
Fields in net.minecraft.client.world declared as EntityTrackingSection Modifier and Type Field Description private EntityTrackingSection<T>
ClientEntityManager.Listener. section
Methods in net.minecraft.client.world with parameters of type EntityTrackingSection Modifier and Type Method Description private void
ClientEntityManager. removeIfEmpty(long packedChunkSection, EntityTrackingSection<T> entities)
Constructors in net.minecraft.client.world with parameters of type EntityTrackingSection Constructor Description Listener(T entity, long lastSectionPos, EntityTrackingSection<T> section)
-
Uses of EntityTrackingSection in net.minecraft.server.world
Fields in net.minecraft.server.world declared as EntityTrackingSection Modifier and Type Field Description private EntityTrackingSection<T>
ServerEntityManager.Listener. section
Methods in net.minecraft.server.world with parameters of type EntityTrackingSection Modifier and Type Method Description private void
ServerEntityManager. entityLeftSection(long sectionPos, EntityTrackingSection<T> section)
Constructors in net.minecraft.server.world with parameters of type EntityTrackingSection Constructor Description Listener(T entity, long sectionPos, EntityTrackingSection<T> section)
-
Uses of EntityTrackingSection in net.minecraft.world.entity
Fields in net.minecraft.world.entity with type parameters of type EntityTrackingSection Modifier and Type Field Description private Long2ObjectMap<EntityTrackingSection<T>>
SectionedEntityCache. trackingSections
Methods in net.minecraft.world.entity that return EntityTrackingSection Modifier and Type Method Description private EntityTrackingSection<T>
SectionedEntityCache. addSection(long sectionPos)
@Nullable EntityTrackingSection<T>
SectionedEntityCache. findTrackingSection(long sectionPos)
EntityTrackingSection<T>
SectionedEntityCache. getTrackingSection(long sectionPos)
Methods in net.minecraft.world.entity that return types with arguments of type EntityTrackingSection Modifier and Type Method Description Stream<EntityTrackingSection<T>>
SectionedEntityCache. getTrackingSections(long chunkPos)
Method parameters in net.minecraft.world.entity with type arguments of type EntityTrackingSection Modifier and Type Method Description void
SectionedEntityCache. forEachInBox(Box box, Consumer<EntityTrackingSection<T>> action)
Runs the given action on each collection of entities in the chunk sections within the given box.