Uses of Class
org.geysermc.geyser.registry.SimpleMappedRegistry
Packages that use SimpleMappedRegistry
-
Uses of SimpleMappedRegistry in org.geysermc.geyser.registry
Fields in org.geysermc.geyser.registry declared as SimpleMappedRegistryModifier and TypeFieldDescriptionstatic SimpleMappedRegistry<com.github.steveice10.mc.protocol.data.game.level.block.BlockEntityType,BlockEntityTranslator>Registries.BLOCK_ENTITIESA mapped registry which stores a block entity identifier to itsBlockEntityTranslator.static SimpleMappedRegistry<Integer,BlockCollision>Registries.COLLISIONSA mapped registry containing which holds block IDs to itsBlockCollision.Registries.ENCHANTMENTSA registry holding data of all the known enchantments.static SimpleMappedRegistry<com.github.steveice10.mc.protocol.data.game.entity.type.EntityType,EntityDefinition<?>>Registries.ENTITY_DEFINITIONSA map containing all entity types and their respective Geyser definitionsstatic SimpleMappedRegistry<String,EntityDefinition<?>>Registries.JAVA_ENTITY_IDENTIFIERSA map containing all Java entity identifiers and their respective Geyser definitionsstatic SimpleMappedRegistry<String,String>BlockRegistries.JAVA_TO_BEDROCK_IDENTIFIERSA mapped registry which stores Java to Bedrock block identifiers.static SimpleMappedRegistry<com.github.steveice10.mc.protocol.data.game.level.particle.ParticleType,ParticleMapping>Registries.PARTICLESA mapped registry holding theParticleTypeto a correspondingParticleMapping, containing various pieces of data primarily for how Bedrock should handle the particle.static SimpleMappedRegistry<Integer,com.nukkitx.protocol.bedrock.data.SoundEvent>Registries.RECORDSA mapped registry holding the available records, with the ID of the record being the key, and theSoundEventas the value.static SimpleMappedRegistry<com.github.steveice10.mc.protocol.data.game.level.event.SoundEvent,LevelEventTranslator>Registries.SOUND_EVENTSA mapped registry holdingSoundEvents to their correspondingLevelEventTranslator.Registries.SOUND_TRANSLATORSA mapped registry holdingSoundTranslators to their correspondingSoundInteractionTranslator.static SimpleMappedRegistry<String,SoundMapping>Registries.SOUNDSA mapped registry holding sound identifiers to their correspondingSoundMapping.Methods in org.geysermc.geyser.registry that return SimpleMappedRegistryModifier and TypeMethodDescriptionstatic <I, K, V> SimpleMappedRegistry<K,V>SimpleMappedRegistry.create(I input, Supplier<RegistryLoader<I,Map<K,V>>> registryLoader)Creates a new mapped registry with the givenRegistryLoaderand input.static <I, K, V> SimpleMappedRegistry<K,V>SimpleMappedRegistry.create(I input, RegistryLoader<I,Map<K,V>> registryLoader)Creates a new mapped registry with the givenRegistryLoaderand input.static <I, K, V> SimpleMappedRegistry<K,V>SimpleMappedRegistry.create(Supplier<RegistryLoader<I,Map<K,V>>> registryLoader)Creates a new mapped registry with the givenRegistryLoadersupplier.static <I, K, V> SimpleMappedRegistry<K,V>SimpleMappedRegistry.create(RegistryLoader<I,Map<K,V>> registryLoader)Creates a new mapped registry with the givenRegistryLoader.