Posted November 5, 20177 yr So i am working on my seasons mod, and i fixed the seasons register system, but i want to edit grass color depending on the seasons, I cant work out how to do this, i want to get it in my btf.utils.seasons package. Could someone please help? source: https://github.com/eaglesmoddingteam/Eagles-Essentials Edited November 5, 20177 yr by tebreca
November 5, 20177 yr Create an implementation of IBlockColor that returns the appropriate grass colour based on the biome/season and then register it for Blocks.GRASS (and any other blocks you want to colour) by calling BlockColors#registerBlockColorHandler in init. You can get the BlockColors instance from Minecraft#getBlockColors. 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.
November 5, 20177 yr Author 4 minutes ago, Choonster said: Create an implementation of IBlockColor that returns the appropriate grass colour based on the biome/season and then register it for Blocks.GRASS (and any other blocks you want to colour) by calling BlockColors#registerBlockColorHandler in init. You can get the BlockColors instance from Minecraft#getBlockColors. thx, ill try that
November 5, 20177 yr Author 2 hours ago, Choonster said: Create an implementation of IBlockColor that returns the appropriate grass colour based on the biome/season and then register it for Blocks.GRASS (and any other blocks you want to colour) by calling BlockColors#registerBlockColorHandler in init. You can get the BlockColors instance from Minecraft#getBlockColors. what are the values of the colors?
November 5, 20177 yr Do you mean the colors returned? Those are in hexadecimal format (for example, 0xFFFFFF is white). 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/
November 5, 20177 yr Author 3 minutes ago, larsgerrits said: Do you mean the colors returned? Those are in hexadecimal format (for example, 0xFFFFFF is white). i need to return an int, i dont know which nuber will give me wich color
November 5, 20177 yr The integer returned is (again) in hexadecimal format. If you search for a color picker on the internet, you'll most likely find a color picker which also displays the hexadecimal value. 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/
November 5, 20177 yr I will point out that if your seasons change and thereby the color changes, the game won't rerender everything unless the chunk is already set to be rerendered (e.g. a block changes). Block colors aren't meant to be dynamic over time. 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.
November 5, 20177 yr Author 6 minutes ago, larsgerrits said: The integer returned is (again) in hexadecimal format. If you search for a color picker on the internet, you'll most likely find a color picker which also displays the hexadecimal value. ok, thx
November 5, 20177 yr Author 1 minute ago, Draco18s said: I will point out that if your seasons change and thereby the color changes, the game won't rerender everything unless the chunk is already set to be rerendered (e.g. a block changes). Block colors aren't meant to be dynamic over time. what sould i then use to make this work
November 5, 20177 yr 21 minutes ago, tebreca said: what sould i then use to make this work I do not have an answer. 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.
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.