Page 1 of 1
Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 15:04
by 12Me21
Many mods use 32x32 (or larger) textures, and this looks weird next to normal blocks with 16x16 textures. Can there be a rule that requires mods to have a version with 16x16 textures? (They can have versions with larger textures, but the "main" version should have default sized textures)
I know you could use a texture pack to fix it, but on servers you don't always know which mods have high-res textures (until you find the blocks in the game), and some mods might not be well-known enough, or made specifically for that server and not publicly released.
Re: Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 15:41
by Nathan.S
I'm one of those modders, I find that a 16x16 texture doesn't always give me enough detail and I like to have higher resolution texture packs too. Is there some way to have two resolutions of the same texture in a mod, would I put subfolders in the texture folder one with the 16x16 and one with the 32x32 If I knew of a way to accomplish this I'd update my mods to follow the convention.
Re: Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 15:52
by 12Me21
You could upload 2 versions of the mod, or have another folder called "16x16 textures" (or something) and the user could replace the 32x32 textures with the 16x16 ones if they wanted.
It doesn't really matter, as long as the 16x16 textures are available.
Re: Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 16:48
by TenPlus1
I agree with Nathan.S, sometimes you do need to use higher resolution textures for certain nodes what would just look bad in 16x16 only...
Re: Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 19:00
by 12Me21
Do you have any specific examples? 16x16 definitly looks bad (and doesn't show enough details) if you just scale down a large image, but you should be able to make a 16x16 version look good if you make it from scratch. The only thing I can think of that needs bigger textures is the microcontroller in mesecons, since it has to label the outputs with letters.(and even THAT only has the letters in high res, the rest is 16x16.)
HOWEVER:
32x32 looks fine, as long as EVERYTHING is that detailed. If some textures are higher or lower resolution than others, it looks weird.
Re: Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 19:58
by TenPlus1
Minetest isnt like Minecraft remember, you can easily use different resolution textures in a game without any problems... It doesnt HAVE to be all the same size...
Re: Mods using higher resolution textures

Posted:
Thu Feb 26, 2015 22:12
by Linuxdirk
TenPlus1 wrote:[…] you can easily use different resolution textures in a game without any problems...
Same with Minecraft. You can even use multiple texture packs at the same time and sort them in any order you want replacing textures (some or all of them or even only one single texture if you want) like “layers” in some image manipulation programs.
Minecrafts “Resource Pack” concept is actually pretty awesome and superior to Minetests “Texture Pack” concept.
Re: Mods using higher resolution textures

Posted:
Fri Feb 27, 2015 05:13
by TG-MyinaWD
So I had an idea why don't we code in the game code of an mod like so.
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
local TEXTURE_SIZE = 32 -- Listed Options 32 or 16
Blah blah blah…
titles = "example_"..TEXTURE_SIZE..".png",
Or would it be to complex to do.
And make the Mod, even more heavy then already is. Anyhow I plan try simulate it into my mods if I can.
Only thing be cool if we could code a way resize the textures like the GUI.
Re: Mods using higher resolution textures

Posted:
Fri Feb 27, 2015 13:30
by 12Me21
There actually is a "real" problem with different size textures. Nodes that use multiple textures per face (like how ores are the stone texture with an overlay) will not resize the smaller texture, so the ore only shows up in the corner.
Re: Mods using higher resolution textures

Posted:
Fri Feb 27, 2015 14:21
by ExeterDad
12Me21 wrote:There actually is a "real" problem with different size textures. Nodes that use multiple textures per face (like how ores are the stone texture with an overlay) will not resize the smaller texture, so the ore only shows up in the corner.
That is correct and very frustrating.