Posted September 7, 201510 yr Hello guys, so I have never done a fluid before, but I think I got it right, except the rendering. I have the fluid block (BlockFluidClassic), I can place it and it can normally flow; However, it is invisible (with default RenderType = -1) or untextured blocks (with RenderType = 3). Does anyone know how to properly register a fluid in 1.8?
September 7, 201510 yr You need to use Forge's fluid model. Use the default render type of 3 (model specified by blockstates file). -1 stops the block being rendered at all (used by vanilla TESR blocks). Forge has an example here (blockstates file) and I have an example here (blockstates file). 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.
September 7, 201510 yr Author I see... for some reason my forge Fluid class is different from those, it doesn't have the ResourceLocation. What version are you using? Edit: I was using the recommended version 11.14.3.1450. I changed to version 11.14.3.1502 and it worked beautifully! Thanks Choonster!
September 8, 201510 yr Choonster, can you confirm the need to move up to 1502? I followed some of your suggestions on this issue before and finally gave up because I could never get it to render. Long time Bukkit & Forge Programmer Happy to try and help
September 8, 201510 yr Fluid Renderer wasn't added until build 1464, 1502 is just the last build before forge gradle 2.0 Did you really need to know?
September 9, 201510 yr Fluid Renderer wasn't added until build 1464, 1502 is just the last build before forge gradle 2.0 This is correct. I've just been updating to the latest Forge version occasionally, since it's just a test mod I don't worry about compatibility with older versions of Java or Forge. 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.
September 9, 201510 yr That explains a few problems. Thanks. Long time Bukkit & Forge Programmer Happy to try and help
October 10, 20159 yr Thanks so much for the post, it has really helped me with fluids in 1.8. However, I am having an issue with getting the texture hooked up correctly. I am currently getting a texture error saying that I am missing 2 textures (the flow and still) in DOMAIN minecraft, however I have it of course with my mod's assets. It seems like it is looking for it in the Minecraft asset structure. log below [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN minecraft [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: domain minecraft is missing 2 textures [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: domain minecraft has 3 locations: [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: mod FML resources at C:\Users\Jerrbear\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.3.1502\snapshot\20141130\forgeSrc-1.8-11.14.3.1502.jar [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: mod Forge resources at C:\Users\Jerrbear\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.3.1502\snapshot\20141130\forgeSrc-1.8-11.14.3.1502.jar [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain minecraft are: [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lifestream_flow.png [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/lifestream_still.png [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain minecraft [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN makomod [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: domain makomod is missing 1 texture [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: domain makomod has 1 location: [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: mod makomod resources at C:\Users\Jerrbear\Desktop\Minecraft\makomod\build\libs\makomod-1.0.jar [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain makomod are: [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/makoReactor.png [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain makomod [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [16:07:28] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= NOTE: I have textures working for other items and blocks, I just haven't gotten around to making a texture for the reactor, so ignore that one please. EDIT: I shouldn't blindly use source code for anyone else that might encounter this problem, make sure to include "modid:path/to/texture" in your constructor for your fluid, instead of just "path/to/texture" example: public FluidLifestream() { super(NAME, new ResourceLocation("makomod:blocks/lifestream_still"), new ResourceLocation("makomod:blocks/lifestream_flow")); }
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.