Class FabricRegistryBuilder<T,R extends net.minecraft.util.registry.MutableRegistry<T>>
java.lang.Object
net.fabricmc.fabric.api.event.registry.FabricRegistryBuilder<T,R>
- Type Parameters:
T
- The type stored in the RegistryR
- The registry type
public final class FabricRegistryBuilder<T,R extends net.minecraft.util.registry.MutableRegistry<T>>
extends Object
Used to create custom registries, with specified registry attributes.
SimpleRegistry<String> registry = FabricRegistryBuilder.createSimple(String.class, new Identifier("registry_sync", "fabric_registry"))
.attribute(RegistryAttribute.SYNCED)
.buildAndRegister();
-
Method Summary
Modifier and TypeMethodDescriptionattribute(RegistryAttribute attribute)
Add aRegistryAttribute
to the registry.Applies the attributes to the registry and registers it.static <T> FabricRegistryBuilder<T,net.minecraft.util.registry.DefaultedRegistry<T>>
createDefaulted(Class<T> type, net.minecraft.util.Identifier registryId, net.minecraft.util.Identifier defaultId)
Create a newFabricRegistryBuilder
using aDefaultedRegistry
, the registry has theRegistryAttribute.MODDED
attribute by default.static <T> FabricRegistryBuilder<T,net.minecraft.util.registry.SimpleRegistry<T>>
createSimple(Class<T> type, net.minecraft.util.Identifier registryId)
Create a newFabricRegistryBuilder
using aSimpleRegistry
, the registry has theRegistryAttribute.MODDED
attribute by default.static <T, R extends net.minecraft.util.registry.MutableRegistry<T>>
FabricRegistryBuilder<T,R>from(R registry)
Create a newFabricRegistryBuilder
, the registry has theRegistryAttribute.MODDED
attribute by default.
-
Method Details
-
from
public static <T, R extends net.minecraft.util.registry.MutableRegistry<T>> FabricRegistryBuilder<T,R> from(R registry)Create a newFabricRegistryBuilder
, the registry has theRegistryAttribute.MODDED
attribute by default.- Type Parameters:
T
- The type stored in the RegistryR
- The registry type- Parameters:
registry
- The base registry type such asSimpleRegistry
orDefaultedRegistry
- Returns:
- An instance of FabricRegistryBuilder
-
createSimple
public static <T> FabricRegistryBuilder<T,net.minecraft.util.registry.SimpleRegistry<T>> createSimple(Class<T> type, net.minecraft.util.Identifier registryId)Create a newFabricRegistryBuilder
using aSimpleRegistry
, the registry has theRegistryAttribute.MODDED
attribute by default.- Type Parameters:
T
- The type stored in the Registry- Parameters:
registryId
- The registryIdentifier
used as the registry id- Returns:
- An instance of FabricRegistryBuilder
-
createDefaulted
public static <T> FabricRegistryBuilder<T,net.minecraft.util.registry.DefaultedRegistry<T>> createDefaulted(Class<T> type, net.minecraft.util.Identifier registryId, net.minecraft.util.Identifier defaultId)Create a newFabricRegistryBuilder
using aDefaultedRegistry
, the registry has theRegistryAttribute.MODDED
attribute by default.- Type Parameters:
T
- The type stored in the Registry- Parameters:
registryId
- The registryIdentifier
used as the registry iddefaultId
- The default registry id- Returns:
- An instance of FabricRegistryBuilder
-
attribute
Add aRegistryAttribute
to the registry.- Parameters:
attribute
- theRegistryAttribute
to add to the registry- Returns:
- the instance of
FabricRegistryBuilder
-
buildAndRegister
Applies the attributes to the registry and registers it.- Returns:
- the registry instance with the attributes applied
-