Interface ConnectingModelDataBuilder
- All Superinterfaces:
VanillaModelDataBuilder<ConnectingModelDataBuilder,ConnectingModelData>
- All Known Implementing Classes:
ConnectingModelDataBuilderImpl
public interface ConnectingModelDataBuilder
extends VanillaModelDataBuilder<ConnectingModelDataBuilder,ConnectingModelData>
Created 01/05/2023 by SuperMartijn642
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectingModelDataBuilderbuilder()connection(ConnectionPredicate predicate) Adds a new connection predicate.connection(String texture, ConnectionPredicate predicate) Adds a new connection predicate for the given texture.Methods inherited from interface com.supermartijn642.fusion.api.model.data.VanillaModelDataBuilder
build, parent, texture, texture
-
Method Details
-
builder
-
connection
Adds a new connection predicate. Of the added predicates, only one needs to be satisfied to form a connection. In case multiple predicates should be satisfied, useDefaultConnectionPredicates.and(ConnectionPredicate...). -
connection
Adds a new connection predicate for the given texture. Of the added predicates, only one needs to be satisfied to form a connection. In case multiple predicates should be satisfied, useDefaultConnectionPredicates.and(ConnectionPredicate...).
-