Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

mateus_craft

Members
  • Joined

  • Last visited

  1. Thank you , but im too dumb to understand what to do so i decided to stop making mods
  2. So how do i add them ? [move]im a complete noob[/move]
  3. Oh sorry they have almost the same names so i messed it up but here it is "variants": { "facing=north": { "model": "modii:cortador" } "facing=south": { "model": "modii:cortador", "y": 180 }, "facing=west": { "model": "modii:cortador", "y": 270 }, "facing=east": { "model": "modii:cortador", "y": 90 } }
  4. BlockState { "parent": "block/orientable", "textures": { "top": "modii:blocks/cortador_lado", "side": "modii:blocks/cortador_lado", "front": "modii:blocks/cortador" } } Class package com.mateus.Morestuff.blocks; import javax.annotation.Nullable; import com.google.common.base.Predicate; import com.mateus.Morestuff.IdDoMod; import com.mateus.Morestuff.init.MTabs; import net.minecraft.block.Block; import net.minecraft.block.BlockDirectional; import net.minecraft.block.BlockHorizontal; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.PropertyDirection; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLivingBase; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumFacing; import net.minecraft.util.Mirror; import net.minecraft.util.Rotation; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; public class Cortador extends Block { public Cortador() { super(Material.ANVIL); setUnlocalizedName(IdDoMod.MateusBlocks.CORTADOR.getUnlocalizedName()); setRegistryName(IdDoMod.MateusBlocks.CORTADOR.getRegistryName()); setCreativeTab(MTabs.tabMateus); } }
  5. Here is how my blocks class : package com.mateus.Morestuff.init; import net.minecraft.block.Block; import net.minecraft.block.BlockCrops; import net.minecraft.block.BlockPotato; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.item.ItemBlock; import net.minecraftforge.fml.common.registry.GameRegistry; import com.mateus.Morestuff.blocks.AlfaceCrops; import com.mateus.Morestuff.blocks.Cortador; import com.mateus.Morestuff.blocks.Lampa; public class MBlocks { public static Block cortador; public static void init() { cortador = new Cortador(); } public static void register(){ registerBlock(cortador); } private static void registerBlock(Block block){ GameRegistry.register(block); ItemBlock item = new ItemBlock(block); item.setRegistryName(block.getRegistryName()); GameRegistry.register(item); } public static void registerRenders(){ registerRender(cortador); } public static void registerRender(Block block){ Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Item.getItemFromBlock(block), 0, new ModelResourceLocation(block.getRegistryName(), "inventory")); } } And the place where i register the unlocalizedname and registryname : public static enum MateusBlocks { CORTADOR("cortador", "Cortador"); private String registryName; private String unlocalizedName; MateusBlocks(String unlocalizedName, String registryName) { this.unlocalizedName = unlocalizedName; this.registryName = registryName; } public String getUnlocalizedName() { return unlocalizedName; } public String getRegistryName() { return registryName; } } The block model ? didnt i showed it , well here is itagain { "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", "textures": { "0": "modii:blocks/cortador", "1": "modii:blocks/cortador_lado" }, "display": { "gui": { "rotation": [ 30, 225, 0 ], "translation": [ 0, 0, 0], "scale":[ 0.625, 0.625, 0.625 ] }, "ground": { "rotation": [ 0, 0, 0 ], "translation": [ 0, 3, 0], "scale":[ 0.25, 0.25, 0.25 ] }, "fixed": { "rotation": [ 0, 0, 0 ], "translation": [ 0, 0, 0], "scale":[ 0.5, 0.5, 0.5 ] }, "thirdperson_righthand": { "rotation": [ 75, 45, 0 ], "translation": [ 0, 2.5, 0], "scale": [ 0.375, 0.375, 0.375 ] }, "firstperson_righthand": { "rotation": [ 0, 45, 0 ], "translation": [ 0, 0, 0 ], "scale": [ 0.40, 0.40, 0.40 ] }, "firstperson_lefthand": { "rotation": [ 0, 225, 0 ], "translation": [ 0, 0, 0 ], "scale": [ 0.40, 0.40, 0.40 ] } }, "elements": [ { "name": "Cube", "from": [ 0.0, 0.0, 0.0 ], "to": [ 16.0, 16.0, 16.0 ], "faces": { "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "east": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "south": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "west": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "up": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "down": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 16.0 ] } } } ] } my model location : assets/modii/models/block/cortador.json my blockstate location : assets/modii/blockstates/Cortador.json
  6. I wanna do an block in my mod that places like an furnace. But after editing the json file, the block is with the black and purple (or pink idk) texture. Here are my json files : My blockstate json file : http://pastebin.com/Jbhnb9rn My block model json : http://pastebin.com/cM000ztD My item model json : http://pastebin.com/gYmfxwxj Here is the block class : http://pastebin.com/Udc81FV5

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.