Terrain3D: [4.2] Godot broke DDS, converts when it shouldn't
OS: Fedora 38 GPU: GeForce RTX 4090 (NVIDIA 535.98) Godot version: 4.2.dev c495eb510 Terrain3D version: https://github.com/outobugi/Terrain3D/releases/tag/v0.8.2-alpha_gd4.1.1 (using Linux binary release)
Mipmap rendering doesn’t work, resulting in grainy textures at a distance in the demo project:
Textures up close look smooth, with bilinear filtering applied.
Anisotropic Filtering Level and Texture Mipmap Bias project settings are at their default value in the demo project.
The DDS textures in demo/textures are detected as not having any mipmaps:
It seems enabling Mipmaps > Generate on them in the Import dock then saving and reloading the scene fixes the issue.
PS: This could be a good opportunity to set Anisotropic Filtering Level to 16× in the demo project 🙂
About this issue
- Original URL
- State: closed
- Created 10 months ago
- Comments: 20 (13 by maintainers)
@marcinn1 This is Terrain3D, and you’ll probably want to bring up the issue in the Godot repo. However since you’re here please reread this comment.
You don’t need to wait on your project. You can load your dds files as Images at run time. We do. Just not directly. Use
Texture2D.get_image(). Feel free to look at our code.