Jump to content

[1.10.2] TileEntitySpecialRenderer


PoiZoneMD

Recommended Posts

Also don't use a TESR if your model does not animate.

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.

Link to comment
Share on other sites

What do you mean by "specific renderer"?

Shortly, how can i render my tile entity?

You don't render your TileEntity you render your Block with the model system unless something about your TileEntity changes the way you want to render it, but in a drastic way like rendering EntityItems inside the Block. I recommend BD Craft Cubik Pro though it cost about 11 dollars.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

What do you mean by "specific renderer"?

Shortly, how can i render my tile entity?

You don't render your TileEntity you render your Block with the model system unless something about your TileEntity changes the way you want to render it, but in a drastic way like rendering EntityItems inside the Block. I recommend BD Craft Cubik Pro though it cost about 11 dollars.

 

 

So i Have something wrong with the models? I will look for it and tell you what happened. Ty for help ^^

Link to comment
Share on other sites

What do you mean by "specific renderer"?

Shortly, how can i render my tile entity?

You don't render your TileEntity you render your Block with the model system unless something about your TileEntity changes the way you want to render it, but in a drastic way like rendering EntityItems inside the Block. I recommend BD Craft Cubik Pro though it cost about 11 dollars.

 

 

So i Have something wrong with the models? I will look for it and tell you what happened. Ty for help ^^

You should be using the JSON model system, not the model system from back in 1.7.10 and down.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

What do you mean by "specific renderer"?

Shortly, how can i render my tile entity?

You don't render your TileEntity you render your Block with the model system unless something about your TileEntity changes the way you want to render it, but in a drastic way like rendering EntityItems inside the Block. I recommend BD Craft Cubik Pro though it cost about 11 dollars.

 

 

So i Have something wrong with the models? I will look for it and tell you what happened. Ty for help ^^

You should be using the JSON model system, not the model system from back in 1.7.10 and down.

I turned my block into a normal block and it renders Normally but when it is an tile entity it just doesn't render

Link to comment
Share on other sites

I turned my block into a normal block and it renders Normally but when it is an tile entity it just doesn't render

 

Stop putting your posts inside quotes.

 

I'm guessing your

Block

extended

BlockContainer

, which overrides

Block#getRenderType

to return

EnumBlockRenderType.INVISIBLE

(i.e. don't render the block). Instead of extending

BlockContainer

, extend

Block

and override

Block#hasTileEntity

and

Block#createTileEntity

.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

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