Code Monkey home page Code Monkey logo

Comments (3)

Zylann avatar Zylann commented on June 22, 2024 1

The reason you have to add so many empty lines is because your texture is very big, to the point that most of the time you don't even see it fully, but only one of its mipmaps. Mipmaps are lower-resolution versions computed by the importer, which reduces by half the distance between the bottm of the grass and the bottom of the image at every level, so it gets closer and closer the further away you look from it. I wouldn't recommend using such a big texture as alpha-scissor will already make it look sharp at a lower resolution.

As for the issue itself, it happens in your case because you likely enabled MSAA. I don't have this issue without MSAA.

An easy way to fix it would be to disable texture repetition in the detail shader, which prevents the texture from wrapping to its bottom due to filtering when the top is rendered. In Godot 3 it used to be an import option of textures. Unfortunately, since 4.0 this option is no longer there, and it cannot be an inspector option because Godot shaders require you to hardcode this option as part of the shader:

// detail.gdshader
uniform sampler2D u_albedo_alpha : source_color, repeat_disable; // <--

from godot_heightmap_plugin.

Zylann avatar Zylann commented on June 22, 2024

I'm assuming this is the desired setting for most cases, so I pushed the fix in beb990e.
If a different setting is required you may use a custom version of the shader.

from godot_heightmap_plugin.

BartekDe avatar BartekDe commented on June 22, 2024

Single line in the shader resolved the issue, there are no more lines.
Thank you!

from godot_heightmap_plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.