User Tools

Site Tools


tutorial:tags

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
tutorial:tags [2021/08/16 19:13] – [Sources] added Arcanus cammietutorial:tags [2021/10/01 15:31] – update to use tag factory API juuz
Line 16: Line 16:
 To register this tag and use it in your code, you will need to do the following (using the Fabric API): To register this tag and use it in your code, you will need to do the following (using the Fabric API):
 <code java> <code java>
-import net.fabricmc.fabric.api.tag.TagRegistry;+import net.fabricmc.fabric.api.tag.TagFactory;
 import net.minecraft.block.Block; import net.minecraft.block.Block;
 import net.minecraft.tag.Tag; import net.minecraft.tag.Tag;
Line 22: Line 22:
  
 public class BlockTags { public class BlockTags {
-  public static final Tag<Block> EXAMPLE_ORES = TagRegistry.block(new Identifier("examplemod", "example_ores"));+  public static final Tag<Block> EXAMPLE_ORES = TagFactory.BLOCK.create(new Identifier("examplemod", "example_ores"));
 } }
 </code> </code>
tutorial/tags.txt · Last modified: 2024/06/17 13:05 by solidblock