Package net.minecraftforge.client.model
Class CompositeModel.ModelDataWrapper
java.lang.Object
net.minecraftforge.client.model.data.ModelDataMap
net.minecraftforge.client.model.CompositeModel.ModelDataWrapper
- All Implemented Interfaces:
IModelData
- Enclosing class:
- CompositeModel
Wrapper for an IModelData instance which allows forwarding queries to the parent,
but stores any new/modified values itself, avoiding modifications to the parent.
-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraftforge.client.model.data.ModelDataMap
ModelDataMap.Builder -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T> TgetData(ModelProperty<T> prop) booleanhasProperty(ModelProperty<?> prop) Check if this data has a property, even if the value isnull.<T> TsetData(ModelProperty<T> prop, T data) static IModelDatawrap(IModelData parent)
-
Field Details
-
parent
-
-
Constructor Details
-
ModelDataWrapper
-
-
Method Details
-
wrap
-
hasProperty
Description copied from interface:IModelDataCheck 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 returnnulleven if this method returnstrue.- Specified by:
hasPropertyin interfaceIModelData- Overrides:
hasPropertyin classModelDataMap- Parameters:
prop- The property to check for inclusion in this model data- Returns:
trueif this data has the given property, even if no value is present
-
getData
- Specified by:
getDatain interfaceIModelData- Overrides:
getDatain classModelDataMap
-
setData
- Specified by:
setDatain interfaceIModelData- Overrides:
setDatain classModelDataMap
-