-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion: on load automatic texture creation #33
Comments
How would the items in need of texture autogeneration be determined? |
do checks for: this ideally would only need to be ran at minecraft world gen or world load, However it could be ran as often as every time the game starts. It could also skip over mods that have custom art already or check them for missing art depending on how it would be programmed. sadly I'm not a java programmer else I'd happily write the code myself and submit it. I love the concept of this mod |
How do you determine this? |
So, I took a loot at the code just now, and Dye Depot achieves this out-of-the-box "semi-compatibility" with other Mods by patching
Besides (4), which is "fairly simple" and (5) of which I have zero knowledge how easy or not that is, everything else requires a fair bit of engineering, purely to solve the problems at hand. To name a few
|
I'm not a java programmer, i just know it can be done in other stuff(javascript, html, ect) so hopefully it can be done here.
What I'm suggesting is creating an image file for each dye, so that when overlaied over a white texture at say 75% opacity it produces the dye color on that texture. that new texture is then used as the new colored version of the item in game. it won't be 100% perfect, but it be an excellent way to provide universal compatibility until you can provide support for specific mods.
That way there are never any funky black & magenta boxes in game.
Alternatively an option to disable any items without textures would be cool too
The text was updated successfully, but these errors were encountered: