Laddar...
0 filer gillade
2 kommentarer
0 videos
0 Uppladdningar
2 Följare
  • Starlet

    @Venkey No, I am not wrong about UV mapping or scaling. Feel free to provide evidence to support your statement, because the internet is full of evidence to support mine. I also know that when I hand a commission to a client, they're getting textures that are correct. Unlike those people buying your "Premium" road textures, that don't even tile properly within the same texture. "cs_rsn_sl_desgravelstonesdirt_01" in "paletoroadtemp+hi" has a clearly defined break 189 pixels down, on the left side of the texture. That was just a random selection and I found a fault. Bit rich to say I'm wrong when your own textures are faulty... huh? People like you are part of the problem, you manage to get people to hand over money and you think that means you're doing "Premium", commercial quality work... and you're wrong. The people paying just don't know any better and are easily fooled. I'm dealing with people who know what they are looking at, I would get laughed out of the office if I produced that road texture... and my BF would probably dump me. XD

    Read these sites for starters.

    https://software.intel.com/en-us/articles/opengl-performance-tips-power-of-two-textures-have-better-performance

    https://www.katsbits.com/tutorials/textures/make-better-textures-correct-size-and-power-of-two.php

    https://www.gamedev.net/forums/topic/526819-pot-or-npot-textures/

    There used to be another website with some info on as well but the site seems to have gone... someone who used to be a user on here I think it was.

    And no, the author didn't just scale this texture, not from the original game textures anyway. If they had done that, then it would have have remained a power of two texture and it isn't. The original "waterclear" is a 256x256 texture, the vertical resolution of this waterclear texture isn't even divisible by 256. The "waterfoam" texture is different to the original, it uses a combination of flips and merges. The "waternoise" texture is also different to the original, neither of those are "just scaled" versions of the original textures. Apart from that, with the image resizing technology available today (such as PhotoZoom Pro, which I use), rescaling isn't a problem within reason. As long as you know how to use the software LOL.

    I'll take any criticism as valid, when it comes from someone credible enough to make that criticism. There's a saying "People who live in glass houses shouldn't throw stones." Lx

    Expandera för att läsa fulla kommentaren
    7 november 2019
  • Starlet

    OMG, what on earth is this? You can't just take a POT (Power Of Two) texture that uses a 0.0 to 1.0 UV space horizontally and vertically and make it an arbitrary resolution of 7680 x 4320. Do you even know why not? Do you even know what this is going to cause the game to do with it in memory?

    It's going to decompress the texture into an 8192 x 8192 texture, because that's what it needs. That means it's effectively going to double the resolution of everything on the Y. Not only is it going to do that with the main texture, it's going to do it with all THIRTEEN mipmap levels.It isn't going to just do that once, because it will unload the texture when it doesn't need it and then do it all again when it has to reload it.

    That means it's using almost 4000 vertical pixels it has no need to use but is forced into using, because of the ridiculous resolution. On top of that, it's going to filter the edges when it scales the texture, which is going to cause edge artefacting where the UVs tile. It needs 0.0 to 1.0 UV space, it has to scale to that, you can't tile textures that don't fill the UV space unless you manually tile the UV mapping. They're probably using procedural UV mapping, you don't manually map water quads.

    waterbump2 is a tiled 2048 x 2048 texture for no reason whatsoever. You just don't need tiled textures that big when the tiling detail is so small, it's pointless on something as expansive as water.The whole point of tiling textures, is that you don't see the edges, so why do you need the edges so far apart resolution wise? You don't is the answer to that. You increase definition by scaling the texture and the refining the content, not just making the content more dense. The waterfoam texture looks like Rorscach test image, because it's just flipped and repeated.

    The game appears to use real-world texture scaling, meaning they're scaled to accurately represent 1m x 1m real world space. The UV tiling will be done based on the original texture sizes, so when you increase the texture resolution and put 8x the amount of detail density across it, you're compressing the real-world scale down to incorrect values.

    You people need to remember, you're modifying the work of professional artists, who make choices based on common sense, knowledge and experience. If you make choices based on ignorance, everyone who uses the textures will pay the price in performance... and when you're compensating for resolution screw-ups on this scale, there will be a price.

    If you're going to mod textures, then for god's sake read and learn first. There's no excuse for "Well I didn't know", when the internet is full of information that tells you.

    For the record, I do game texture art. Lx I trust that's enough "feedback" to warrant my justified rating.

    Expandera för att läsa fulla kommentaren
    26 oktober 2019