| Package | Description |
|---|---|
| org.geysermc.connector.registry |
| Modifier and Type | Field and Description |
|---|---|
static SimpleMappedRegistry<String,BlockEntityTranslator> |
Registries.BLOCK_ENTITIES
A mapped registry which stores a block entity identifier to its
BlockEntityTranslator. |
static SimpleMappedRegistry<Integer,BlockCollision> |
Registries.COLLISIONS
A mapped registry containing which holds block IDs to its
BlockCollision. |
static SimpleMappedRegistry<String,String> |
BlockRegistries.JAVA_TO_BEDROCK_IDENTIFIERS
A mapped registry which stores Java to Bedrock block identifiers.
|
static SimpleMappedRegistry<com.github.steveice10.mc.protocol.data.game.world.particle.ParticleType,ParticleMapping> |
Registries.PARTICLES
A mapped registry holding the
ParticleType to a corresponding ParticleMapping, containing various pieces of
data primarily for how Bedrock should handle the particle. |
static SimpleMappedRegistry<Integer,com.nukkitx.protocol.bedrock.data.SoundEvent> |
Registries.RECORDS
A mapped registry holding the available records, with the ID of the record being the key, and the
SoundEvent
as the value. |
static SimpleMappedRegistry<com.github.steveice10.mc.protocol.data.game.world.effect.SoundEffect,Effect> |
Registries.SOUND_EFFECTS
A mapped registry holding
SoundEffects to their corresponding Effect. |
static SimpleMappedRegistry<SoundHandler,SoundInteractionHandler<?>> |
Registries.SOUND_HANDLERS
A mapped registry holding
SoundHandlers to their corresponding SoundInteractionHandler. |
static SimpleMappedRegistry<String,SoundMapping> |
Registries.SOUNDS
A mapped registry holding sound identifiers to their corresponding
SoundMapping. |
| Modifier and Type | Method and Description |
|---|---|
static <I,K,V> SimpleMappedRegistry<K,V> |
SimpleMappedRegistry.create(I input,
RegistryLoader<I,Map<K,V>> registryLoader)
Creates a new mapped registry with the given
RegistryLoader and input. |
static <I,K,V> SimpleMappedRegistry<K,V> |
SimpleMappedRegistry.create(I input,
Supplier<RegistryLoader<I,Map<K,V>>> registryLoader)
Creates a new mapped registry with the given
RegistryLoader and input. |
static <I,K,V> SimpleMappedRegistry<K,V> |
SimpleMappedRegistry.create(RegistryLoader<I,Map<K,V>> registryLoader)
Creates a new mapped registry with the given
RegistryLoader. |
static <I,K,V> SimpleMappedRegistry<K,V> |
SimpleMappedRegistry.create(Supplier<RegistryLoader<I,Map<K,V>>> registryLoader)
Creates a new mapped registry with the given
RegistryLoader supplier. |
Copyright © 2021 GeyserMC. All rights reserved.