hytale-server/com/hypixel/hytale/builtin/hytalegenerator/materialproviders/UpwardSpaceMaterialProvider...

22 lines
699 B
Java

package com.hypixel.hytale.builtin.hytalegenerator.materialproviders;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class UpwardSpaceMaterialProvider<V> extends MaterialProvider<V> {
@Nonnull
private final MaterialProvider<V> materialProvider;
private final int space;
public UpwardSpaceMaterialProvider(@Nonnull MaterialProvider<V> materialProvider, int space) {
this.materialProvider = materialProvider;
this.space = space;
}
@Nullable
@Override
public V getVoxelTypeAt(@Nonnull MaterialProvider.Context context) {
return this.space != context.spaceAboveFloor ? null : this.materialProvider.getVoxelTypeAt(context);
}
}