Class ModelDataMap
java.lang.Object
net.minecraftforge.client.model.data.ModelDataMap
- All Implemented Interfaces:
IModelData
- Direct Known Subclasses:
CompositeModel.CompositeModelData
,CompositeModel.ModelDataWrapper
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T> T
getData
(ModelProperty<T> prop) boolean
hasProperty
(ModelProperty<?> prop) Check if this data has a property, even if the value isnull
.<T> T
setData
(ModelProperty<T> prop, T data)
-
Field Details
-
backingMap
-
-
Constructor Details
-
ModelDataMap
-
ModelDataMap
protected ModelDataMap()
-
-
Method Details
-
hasProperty
Description copied from interface:IModelData
Check if this data has a property, even if the value isnull
. Can be used by code that intends to fill in data for a render pipeline, such as the forge animation system.IMPORTANT:
IModelData.getData(ModelProperty)
can returnnull
even if this method returnstrue
.- Specified by:
hasProperty
in interfaceIModelData
- Parameters:
prop
- The property to check for inclusion in this model data- Returns:
true
if this data has the given property, even if no value is present
-
getData
- Specified by:
getData
in interfaceIModelData
-
setData
- Specified by:
setData
in interfaceIModelData
-