tutorial:trees
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tutorial:trees [2022/09/10 19:28] – nexus-dino | tutorial:trees [2022/12/21 01:40] (current) – 1.19.3 haykam | ||
|---|---|---|---|
| Line 27: | Line 27: | ||
| <code java> | <code java> | ||
| - | public static final RegistryEntry< | + | public static final RegistryEntry< |
| // Configure the feature using the builder | // Configure the feature using the builder | ||
| new TreeFeatureConfig.Builder( | new TreeFeatureConfig.Builder( | ||
| Line 76: | Line 76: | ||
| public static void register() { | public static void register() { | ||
| - | Registry.register(Registry.BLOCK, new Identifier(" | + | Registry.register(Registries.BLOCK, new Identifier(" |
| - | Registry.register(Registry.ITEM, new Identifier(" | + | Registry.register(Registries.ITEM, new Identifier(" |
| } | } | ||
| Line 163: | Line 163: | ||
| <code java> | <code java> | ||
| - | public static final TrunkPlacerType< | + | public static final TrunkPlacerType< |
| </ | </ | ||
| Line 220: | Line 220: | ||
| public static final Codec< | public static final Codec< | ||
| fillFoliagePlacerFields(instance) | fillFoliagePlacerFields(instance) | ||
| - | .and(IntProvider.createValidatingCodec(1, | + | .and(IntProvider.createValidatingCodec(1, |
| .apply(instance, | .apply(instance, | ||
| Line 277: | Line 277: | ||
| <code java> | <code java> | ||
| - | public static final FoliagePlacerType< | + | public static final FoliagePlacerType< |
| </ | </ | ||
| Line 329: | Line 329: | ||
| // Our constructor doesn' | // Our constructor doesn' | ||
| public static final Codec< | public static final Codec< | ||
| + | | ||
| + | private RichTreeDecorator() {} | ||
| @Override | @Override | ||
| Line 336: | Line 338: | ||
| @Override | @Override | ||
| - | public void generate(TestableWorld world, BiConsumer< | + | public void generate(TreeDecorator.Generator generator) { |
| // Iterate through block positions | // Iterate through block positions | ||
| - | | + | |
| + | Random random = generator.getRandom(); | ||
| // Pick a value from 0 (inclusive) to 4 (exclusive) and if it's 0, continue | // Pick a value from 0 (inclusive) to 4 (exclusive) and if it's 0, continue | ||
| // This is the chance for spawning the gold block | // This is the chance for spawning the gold block | ||
| Line 359: | Line 362: | ||
| replacer.accept(targetPosition, | replacer.accept(targetPosition, | ||
| } | } | ||
| - | } | + | }); |
| } | } | ||
| } | } | ||
| Line 368: | Line 371: | ||
| <code java> | <code java> | ||
| - | public static final TreeDecoratorType< | + | public static final TreeDecoratorType< |
| </ | </ | ||
| Line 385: | Line 388: | ||
| <code java> | <code java> | ||
| public class RichSaplingGenerator extends SaplingGenerator { | public class RichSaplingGenerator extends SaplingGenerator { | ||
| - | private final ConfiguredFeature< | ||
| - | |||
| - | public RichSaplingGenerator(ConfiguredFeature<?, | ||
| - | this.feature = (ConfiguredFeature< | ||
| - | } | ||
| - | |||
| @Nullable | @Nullable | ||
| @Override | @Override | ||
| - | protected ConfiguredFeature< | + | protected |
| int chance = random.nextInt(100); | int chance = random.nextInt(100); | ||
| | | ||
| // Each tree has a 10% chance | // Each tree has a 10% chance | ||
| - | | + | |
| - | | + | case 10 -> TreeConfiguredFeatures.OAK; |
| - | } else if (chance < 20) { | + | |
| - | return ConfiguredFeatures.BIRCH; | + | case 30 -> TreeConfiguredFeatures.MEGA_SPRUCE; |
| - | } else if (chance < 60) { | + | |
| - | return ConfiguredFeatures.SPRUCE; | + | |
| - | } else if (chance < 40) { | + | |
| - | return ConfiguredFeatures.MEGA_SPRUCE; | + | |
| - | } else if (chance < 50) { | + | |
| - | return ConfiguredFeatures.PINE; | + | |
| - | } else if (chance < 60) { | + | |
| - | return ConfiguredFeatures.MEGA_PINE; | + | |
| - | } else if (chance < 70) { | + | |
| - | return ConfiguredFeatures.MEGA_JUNGLE_TREE; | + | |
| } | } | ||
| - | + | } | |
| - | // If none of that happened (the random value was between 70 and 100), create the actual tree | + | |
| - | return feature; | + | |
| - | } | + | |
| } | } | ||
| </ | </ | ||
| Line 430: | Line 418: | ||
| <code java> | <code java> | ||
| [...] | [...] | ||
| - | .dirtProvider(new SimpleBlockStateProvider(Blocks.IRON_BLOCK.getDefaultState())) | + | .dirtProvider(BlockStateProvider.of(Blocks.IRON_BLOCK)) |
| [...] | [...] | ||
| </ | </ | ||
tutorial/trees.1662838115.txt.gz · Last modified: 2022/09/10 19:28 by nexus-dino