SecondAmendment Posted March 2, 2017 Posted March 2, 2017 Is there a way of rendering an image above a block in 3d space? So like rendering a diamond pickaxe above a diamond ore signifying that a diamond pick can be used to mine that ore. or another example could be, rendering pictures of a chest's contents above the chest. Quote
Guest Posted March 2, 2017 Posted March 2, 2017 A similar topic was covered here recently (although I can't find it with all this spam) for a modded block involving a TESR, but I'm not sure about vanilla blocks. Quote
Animefan8888 Posted March 2, 2017 Posted March 2, 2017 Use the RenderWorldLastEvent to do that. Quote 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.
Matryoshika Posted March 2, 2017 Posted March 2, 2017 One can do this without the need of TESR's, by using a HUD (Heads Up display), and RayTracing. Create an EventHandler for the RenderGameOverlayEvent or RenderWorldLastEvent. The BlockPos can be gained from Minecraft::objectMouseOver. The player is always Minecraft::thePlayer, client-side. If the block/tile you are looking at is what you want, call a new method, from hereof called HUDBlock, passing the Minecraft instance. HUDBlock should of course extend GUI. In here, you can use GL however you want. Bind & render an image, draw strings on the screen etc. Quote 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.
Recommended Posts
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.