Bedrock blocks not showing

Started by danhowe0 on

Topic category: Help with modding (Bedrock Edition)

Last seen on 11:52, 5. Jul 2021
Joined Apr 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Bedrock blocks not showing
Fri, 06/05/2020 - 15:36 (edited)

I am working on a mod for bedrock edition but when I apply the behaviour pack to a new or existing world, i cant seem to find the blocks i have created anywhere. does anybody know why this is and how i can fix it?

Edited by danhowe0 on Fri, 06/05/2020 - 15:36
Last seen on 22:41, 29. Dec 2021
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Do you mean that when you…
Sun, 05/10/2020 - 12:15

Do you mean that when you place your block down it’s invisible, OR do you mean that you can’t find it in the creative inventory, OR do you mean it doesn’t naturally generate?

Please provide more information.

Make sure you enabled…
Sun, 05/10/2020 - 12:38

Make sure you enabled experimental gameplay and cheats for the given world and that you selected your addon (bp and rp) in the world menu.

Last seen on 23:19, 9. Dec 2021
Joined Dec 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Solution I am using in case…
Sun, 12/05/2021 - 23:55

Solution I am using in case anyone is still running into this problem.  I edit the JSON configuration to add in "minecraft:creativecategory" and this added the block to the inventory.  In the example below the block is just placed into Contstruction, but you can put it where ever you want.

{
  "format_version": "1.17.0",
  "minecraft:block": {
    "description": {
      "identifier": "test:test_block",
      "is_experimental": false
    },
    "components": {
      "minecraft:block_light_emission": 0,
      "minecraft:destroy_time": 1,
      "minecraft:explosion_resistance": 10,
      "minecraft:friction": 0.6,
      "minecraft:creative_category": {
          "group": "itemGroup.name.Construction",
          "category": "Construction"
      },

      "minecraft:flammable": {
        "flame_odds": 0,
        "burn_odds": 0
      }
    }
  }
}