Jump to content

Recommended Posts

Posted

Hi,

I'm trying to create a new block and it is working fine in the inventory! But as soon as I place this block ist has this "Missing Texture"-texture.
I searched alot and I still don't know my failure :(

Here are some resources:

assets/tekklands/blockstates/block_ore_tekknium_infused_diamond.json: (Blockstate)

  Reveal hidden contents

 

assets/tekklands/models/block/block_ore_tekknium_infused_diamond.json: (Block model)

  Reveal hidden contents

 

And JavaCode:
BlockBase:

  Reveal hidden contents

 

TekklandsBlocks:

  Reveal hidden contents

 

ClientProxy:

  Reveal hidden contents

 

TekklandsMod:

  Reveal hidden contents

 

Well, and one Screenshot:

  Reveal hidden contents

 

2018-01-01_16.57.27.png

Posted (edited)
  1. Problematic Code #1
    Do not register your blocks/items by calling IForgeRegistry::register.
  2. Instead of creating your ModelResourceLocation as modid+":"+id, just call Item::getRegistryName. It has already been formatted to "modid:id" for you "behind the curtains"
  3. Please also add the fml-client-latest.log found in <modding-directory>/run/logs.
    Paste the contents to pastebin.com or as a github Gist. Please do not upload the file directly here, or copy/paste the contents as a post.

 

Edited by Matryoshika

Also previously known as eAndPi.

"Pi, is there a station coming up where we can board your train of thought?" -Kronnn

Published Mods: Underworld

Handy links: Vic_'s Forge events Own WIP Tutorials.

Posted

Registering blocks & Items using the Register<IForgeRegistry> events
Registering models during the ModelRegistryEvent

 

oh, I missed one thing earlier.
You never in any way connect the BlockState JSON to the model JSON.
You're just stating "use this texture".
Inside the variant "normal" [{}] in your BlockState, add a "model": "modid:name".

Example: "normal": [{ "model": "underworld:blockbrazier" }}

 

(It seems like you're in-between different formats. One that declares everything inside the BlockState JSON (which doesn't need any models) and one that makes use of a ready model JSON. I took the liberty of directing you to make full use of the second option, as you already had a JSON for that.)

Also previously known as eAndPi.

"Pi, is there a station coming up where we can board your train of thought?" -Kronnn

Published Mods: Underworld

Handy links: Vic_'s Forge events Own WIP Tutorials.

Posted
  On 1/1/2018 at 6:41 PM, Janrupf said:

item's and block's

Expand  

Your item's and block's what?

 

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)

I think I understood something wrong:

assets/tekklands/blockstates/block_ore_tekknium_infused_diamond.json: (Blockstate)

{
  "forge_marker": 1,
  "defaults": {
    "model": "cube_all",
    "transform": "forge:default-block"
  },
  "variants": {
    "inventory": [
      {
        "textures": {
          "all": "tekklands:blocks/tekknium_infused_diamond_ore"
        }
      }
    ],
    "normal": [
      {
        "model": "tekklands:block_ore_tekknium_infused_diamond"
      }
    ]
  }
}
  Reveal hidden contents
I didnd't change the the model json but now it is this big block without any texture or model.
Edited by Janrupf
Posted
  On 1/1/2018 at 7:28 PM, Janrupf said:

Oh come on :P I'm not englisch ^^

Expand  

Some people are and they still use the apostrophe wrong.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 1/4/2018 at 8:56 AM, LeoCTH said:

.........

why you use forge blockstates?

vanilla blockstates are enough to handle it

Expand  

The Forge blockstate format is version based ("forge_marker": 1, AKA version 1), which is pretty much guaranteed to be backwards compatibly, while the vanilla version isn't.

 

@OP you only set the textures in the inventory state, so they don't get set for the other states. Set the textures in both states, or set them in the defaults tag so it gets set for all states.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted
  On 1/4/2018 at 8:56 AM, LeoCTH said:

.........

why you use forge blockstates?

vanilla blockstates are enough to handle it

Expand  

Because the vanilla blockstate format looks like this:

 

"stateA=1,stateB=1,stateC=1,stateD=1" : { ... }
"stateA=1,stateB=1,stateC=1,stateD=2" : { ... }
"stateA=1,stateB=1,stateC=2,stateD=1" : { ... }
"stateA=1,stateB=1,stateC=2,stateD=2" : { ... }
... //11 nearly identical lines skipped
"stateA=2,stateB=2,stateC=2,stateC=2" : { ... }

And the forge blockstate format looks like this:

"stateA" : { "1" : { ... }, "2" : { ... } }
"stateB" : { "1" : { ... }, "2" : { ... } }
"stateC" : { "1" : { ... }, "2" : { ... } }
"stateD" : { "1" : { ... }, "2" : { ... } }

Which would you rather write?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 1/4/2018 at 6:00 PM, Draco18s said:

Because the vanilla blockstate format looks like this:

 

"stateA=1,stateB=1,stateC=1,stateD=1" : { ... }
"stateA=1,stateB=1,stateC=1,stateD=2" : { ... }
"stateA=1,stateB=1,stateC=2,stateD=1" : { ... }
"stateA=1,stateB=1,stateC=2,stateD=2" : { ... }
... //11 nearly identical lines skipped
"stateA=2,stateB=2,stateC=2,stateC=2" : { ... }

And the forge blockstate format looks like this:

"stateA" : { "1" : { ... }, "2" : { ... } }
"stateB" : { "1" : { ... }, "2" : { ... } }
"stateC" : { "1" : { ... }, "2" : { ... } }
"stateD" : { "1" : { ... }, "2" : { ... } }

Which would you rather write?

Expand  

......

Still, when you make something like multifacing blocks then you should use forge.

but if you could use vanilla blockstate JSONs then WHY you'll need more complicated forge ones? (Like when handling VERY simple blocks)

 

Quote from Forge Docs:

  Quote

You don’t have to use Forge’s blockstate format at all, you can also use the vanilla format!

Expand  

lol?

Posted
  On 1/5/2018 at 1:56 AM, LeoCTH said:

but if you could use vanilla blockstate JSONs then WHY you'll need more complicated forge ones?

Expand  

Which one of those two samples that I posted was more complicated?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)
  On 1/5/2018 at 3:16 AM, Draco18s said:

Which one of those two samples that I posted was more complicated?

Expand  

I mean the “forge_marker”s, all of the

 "defaults": {
    "model": "cube_all",
    "transform": "forge:default-block"
  },
  "variants": {
    "inventory": [
      {
        "textures": {
          "all": "tekklands:blocks/tekknium_infused_diamond_ore"
        }
      }
    ],
    "normal": [
      {
        "textures": {
          "all": "tekklands:blocks/tekknium_infused_diamond_ore"
        }
      }
    ]
  }

-ish stuff...

as the docs said: "You can also use vanilla format!"

why shall we use forge blockstate JSONs?

Edited by LeoCTH
grammar
Posted
  On 1/5/2018 at 3:44 AM, LeoCTH said:

I mean the “forge_marker”s, all of the

[...]

-ish stuff...

Expand  

You know how much of what you posted was Forge format specific?

 

None of it.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 1/5/2018 at 3:55 AM, LeoCTH said:

I mean, why I NEEDS TO AND MUST TO use forge?

why NOT vanilla?

Expand  

YOU DON'T HAVE TO. NO ONE SAID YOU DID.

YOUR the one who started asking about Forge blockstates.

And this isn't even your thread!

 

The whole reason the Forge format exists is to simplify complex state mappings (two or more different values) as Forge will do the cartesian grid for you (so you a) don't have to type out 366 lines of JSON and b) don't have to sort them alphabetically and get it wrong by fucking up and adding a space where one shouldn't be).

  • Like 1

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 1/5/2018 at 4:29 AM, Draco18s said:

YOU DON'T HAVE TO. NO ONE SAID YOU DID.

YOUR the one who started asking about Forge blockstates.

And this isn't even your thread!

 

The whole reason the Forge format exists is to simplify complex state mappings (two or more different values) as Forge will do the cartesian grid for you (so you a) don't have to type out 366 lines of JSON and b) don't have to sort them alphabetically and get it wrong by fucking up and adding a space where one shouldn't be).

Expand  

I'm just asking HIM, the POSTER of the thread and at least two people INTERRUPTED me and the POSTER don't even speak ANYTHING.

I apologize for replying someone frequently in other's thread, but WHY I'm asking someone else and you guy wanna join into it?

And why the heck are you kinda pissed off and spit it at me?

 

Again, I'm asking the one who have the problem.

 

PS. Are you misunderstanding me as "I have the problem"? no, not at all. I can figure out myself while I'm doing THIS level of things.

PPS. You and that largs guy are NOT the ones I'm asking. Need to tell you again?

Posted (edited)

Ok, things done. I quit this thread.

If the owner of this thread want to tell me, it's his opinion.

 

Again, I don't have that problem AT ALL when I'm creating a very very super duper easy placeholder-leveled block.

Edited by LeoCTH
specific someone

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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