mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 14:21:08 +00:00
Base key names on internal names
This commit is contained in:
+2
-2
@@ -27,10 +27,10 @@ public class ImageProviderTemplate implements ObjectTemplate<BiomeProvider> {
|
|||||||
@Description("Sets the resolution at which to sample the image.")
|
@Description("Sets the resolution at which to sample the image.")
|
||||||
private int resolution = 1;
|
private int resolution = 1;
|
||||||
|
|
||||||
@Value("image")
|
@Value("color-sampler")
|
||||||
private ColorSampler colorSampler;
|
private ColorSampler colorSampler;
|
||||||
|
|
||||||
@Value("biomes")
|
@Value("color-conversion")
|
||||||
private ColorConverter<Biome> colorConverter;
|
private ColorConverter<Biome> colorConverter;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@ import com.dfsek.terra.addons.image.sampler.image.SingleImageColorSampler;
|
|||||||
|
|
||||||
|
|
||||||
public class SingleImageColorSamplerTemplate extends ImageColorSamplerTemplate {
|
public class SingleImageColorSamplerTemplate extends ImageColorSamplerTemplate {
|
||||||
@Value("outside-image")
|
@Value("outside-sampler")
|
||||||
private ColorSampler fallback;
|
private ColorSampler fallback;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
+1
-1
@@ -8,6 +8,6 @@ import com.dfsek.terra.addons.image.sampler.ColorSampler;
|
|||||||
|
|
||||||
public abstract class MutateColorSamplerTemplate implements ObjectTemplate<ColorSampler> {
|
public abstract class MutateColorSamplerTemplate implements ObjectTemplate<ColorSampler> {
|
||||||
|
|
||||||
@Value("image")
|
@Value("color-sampler")
|
||||||
protected ColorSampler sampler;
|
protected ColorSampler sampler;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user