Uses of Class
org.geysermc.connector.registry.SimpleMappedRegistry
Packages that use SimpleMappedRegistry
-
Uses of SimpleMappedRegistry in org.geysermc.connector.registry
Fields in org.geysermc.connector.registry declared as SimpleMappedRegistryModifier and TypeFieldDescriptionRegistries.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.static 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.world.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.world.effect.SoundEffect,Effect>Registries.SOUND_EFFECTSA mapped registry holdingSoundEffects to their correspondingEffect.static SimpleMappedRegistry<SoundHandler,SoundInteractionHandler<?>>Registries.SOUND_HANDLERSA mapped registry holdingSoundHandlers to their correspondingSoundInteractionHandler.static SimpleMappedRegistry<String,SoundMapping>Registries.SOUNDSA mapped registry holding sound identifiers to their correspondingSoundMapping.Methods in org.geysermc.connector.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.