コード例 #1
0
ファイル: ModelFluid.java プロジェクト: FinalMiner/ThatMod
 public IBakedModel bake(
     IModelState state,
     VertexFormat format,
     Function<ResourceLocation, TextureAtlasSprite> bakedTextureGetter) {
   ImmutableMap<TransformType, TRSRTransformation> map =
       IPerspectiveAwareModel.MapWrapper.getTransforms(state);
   return new BakedFluid(
       state.apply(Optional.<IModelPart>absent()),
       map,
       format,
       fluid.getColor(),
       bakedTextureGetter.apply(fluid.getStill()),
       bakedTextureGetter.apply(fluid.getFlowing()),
       fluid.isGaseous(),
       Optional.<IExtendedBlockState>absent());
 }
コード例 #2
0
ファイル: ModelFluid.java プロジェクト: FinalMiner/ThatMod
 public Collection<ResourceLocation> getTextures() {
   return ImmutableSet.of(fluid.getStill(), fluid.getFlowing());
 }