Add missed files
This commit is contained in:
@@ -1,2 +1,18 @@
|
||||
package me.hypherionmc.craterlib.util;public class BlockStateUtils {
|
||||
package me.hypherionmc.craterlib.util;
|
||||
|
||||
import net.minecraft.world.level.block.state.BlockState;
|
||||
import net.minecraft.world.level.block.state.properties.BlockStateProperties;
|
||||
|
||||
import java.util.function.ToIntFunction;
|
||||
|
||||
public class BlockStateUtils {
|
||||
|
||||
public static ToIntFunction<BlockState> createLightLevelFromLitBlockState(int litLevel) {
|
||||
return state -> state.getValue(BlockStateProperties.LIT) ? litLevel : 0;
|
||||
}
|
||||
|
||||
public static ToIntFunction<BlockState> createLightLevelFromPoweredBlockState(int litLevel) {
|
||||
return state -> state.getValue(BlockStateProperties.POWERED) ? litLevel : 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user