接口 RegisterEvent.RegisterHelper<T>
- 封闭类:
RegisterEvent
- 函数接口:
- 这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。
-
方法概要
修饰符和类型方法说明default void
Registers the given value with the given name to the registry.default void
register
(ResourceKey<T> key, T value) Registers the given value with the given name to the registry.void
register
(ResourceLocation name, T value) Registers the given value with the given name to the registry.
-
方法详细资料
-
register
Registers the given value with the given name to the registry. The namespace is inferred based on the active mod container. If you wish to specify a namespace, useregister(ResourceLocation, Object)
instead.- 参数:
name
- the name of the object to register as its key with the namespaced inferred from the active mod containervalue
- the object value
-
register
Registers the given value with the given name to the registry.- 参数:
key
- the resource key of the object to registervalue
- the object value
-
register
Registers the given value with the given name to the registry.- 参数:
name
- the name of the object to register as its keyvalue
- the object value
-