use of com.simibubi.create.foundation.block.connected.CTModel in project Create by Creators-of-Create.
the class CreateRegistrate method registerCTBehviour.
@OnlyIn(Dist.CLIENT)
private static void registerCTBehviour(Block entry, Supplier<ConnectedTextureBehaviour> behaviorSupplier) {
ConnectedTextureBehaviour behavior = behaviorSupplier.get();
CreateClient.MODEL_SWAPPER.getCustomBlockModels().register(entry.delegate, model -> new CTModel(model, behavior));
}
Aggregations