Jump to content

[1.14.4] Block Structure (TileEntity)


Afroman

Recommended Posts

So, I made this structure that when assembled by the player it performs a continuous action. First I would just check for its existence every tick or once every tick, but i still tought it was a shitty solution, so I just added a TileEntity to every Block that was a part of the structure with

world.addTileEntity()

and use the remove() method of these "structural tile entities" as a way to refer to the "central" TileEntity and remove it. But I found that I could only register TileEntityTypes assigned to a block, which i wouldn't want to do, even though it wouldn't actually be assigned to the block in the sense that when adding the block to the world it would never create a tile entity unless I explicit tell it to do so on the Block class, so registering it with a block seems strange.

Is there any way to register a TileEntity without beeing assigned to a Block? Or it just doesn't matter? Or, I can just create a dummy block?????

All this is based on my understanding of what i saw in the code and that is that I can add any TileEntity to the world to any Block, but if the TileEntity isn't registered it won't add it.

 

Generally,

Is there any way to make an on demand one for all TileEntity?

Link to comment
Share on other sites

5 hours ago, Afroman said:

Is there any way to make an on demand one for all TileEntity?

You would have to give it a set of all Blocks. TileEntities can have more than one block.

  • Like 1

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

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.