Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
api:creative_tabs [2023/05/09 11:31] shedanielapi:creative_tabs [2023/05/24 16:23] (current) – Add 1.20 tabs shedaniel
Line 5: Line 5:
 The first argument is the id of the new tab, which will be used to define the translation key. The first argument is the id of the new tab, which will be used to define the translation key.
 The second argument is the icon of the new tab, which is a supplier to a ''ItemStack'' instance. The second argument is the icon of the new tab, which is a supplier to a ''ItemStack'' instance.
 +
 +**1.20**
 +<code java>
 +public static final DeferredRegister<CreativeModeTab> TABS =
 +        DeferredRegister.create("modid", Registries.CREATIVE_MODE_TAB);
 +
 +public static final RegistrySupplier<CreativeModeTab> MY_TAB = TABS.register(
 +        "test_tab", // Tab ID
 +        () -> CreativeTabRegistry.create(
 +                Component.translatable("category.architectury_test"), // Tab Name
 +                () -> new ItemStack(TestRegistries.TEST_ITEM.get()) // Icon
 +        )
 +);
 +</code>
  
 **1.19.3 to 1.19.4** **1.19.3 to 1.19.4**
 <code java> <code java>
 public static final CreativeTabRegistry.TabSupplier MY_TAB = CreativeTabRegistry.create( public static final CreativeTabRegistry.TabSupplier MY_TAB = CreativeTabRegistry.create(
-        new ResourceLocation(modid, "test_tab"), // Tab ID+        new ResourceLocation("modid", "test_tab"), // Tab ID
         () -> new ItemStack(Items.STONE) // Icon         () -> new ItemStack(Items.STONE) // Icon
 ); );
Line 26: Line 40:
 To add an item to the tab, you can use the `tab` method in Item.Properties, since this method has been removed by Mojang in 1.19.3 in favour for a more manual setup, Architectury includes a custom `arch$tab` method for you. To add an item to the tab, you can use the `tab` method in Item.Properties, since this method has been removed by Mojang in 1.19.3 in favour for a more manual setup, Architectury includes a custom `arch$tab` method for you.
  
-**1.19.3 to 1.19.4**+**1.19.3 or above**
 <code java> <code java>
 new Item.Properties().arch$tab(MY_TAB); new Item.Properties().arch$tab(MY_TAB);