mirror of
https://github.com/xzeldon/ChromaBlocks.git
synced 2025-04-04 23:37:12 +03:00
- Added new green screen block with glow - Added GreenScreenBlockModel for fine-tune the block - Diffuse Shading and Ambient Occlusion has been removed from GreenScreenBlockModel - GreenScreenBlockModel also ignores the lightmap
20 lines
583 B
Java
20 lines
583 B
Java
package ru.xzeldon.greenscreenmod.block.custom;
|
|
|
|
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.block.Material;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.world.BlockView;
|
|
|
|
public class GreenScreenBlock extends Block {
|
|
public GreenScreenBlock(Settings settings) {
|
|
super(settings);
|
|
}
|
|
|
|
@Override
|
|
public float getAmbientOcclusionLightLevel(BlockState state, BlockView world, BlockPos pos) {
|
|
return 1.0F;
|
|
}
|
|
}
|