• RuntimesUnity
  • about transparency shader in Unity 6 with Spine 4.2.40 use built-in RP

suanLoBeach sorry to foget to post my code, I add these codes into spine/skeleton shader

Thanks for the update. Reading your code and looking at the screenshot again now explains why the border looked as it is, I was wondering if you had some compression artifacts leading to the dot-pattern.

I wonder why you are using dither-style feathering though, as a standard threshold might look better with typical the image outlines, which are just a gradient alpha. The purpose of dither patterns is usually where a homogenous area needs to become transparent, there you can't solve it with a single tweaked threshold. If you know what you're doing it's fine of couse, you might have your reasons.

suanLoBeach well, I just wanna ask , Can the perfect feature be achived ? (only show the top transparent pixel)

Perfect alpha blending showing the same result as a render texture would: no, as I said above multiple times. Otherwise we would have provided it in the example scenes instead of the render texture component.

suanLoBeach I'm migranting my project to Godot, So, I'm waitting Godot4.4 runtime, i'll solve this problem in Godot again.

Good luck with the migration. Note however that the problem will not change in the slightest 🙂.

  • इस पर suanLoBeach ने जवाब दिया।
    Related Discussions
    ...

    Harald

    Harald I wonder why you are using dither-style feathering though, as a standard threshold might look better with typical the image outlines, which are just a gradient alpha. The purpose of dither patterns is usually where a homogenous area needs to become transparent, there you can't solve it with a single tweaked threshold. If you know what you're doing it's fine of couse, you might have your reasons.

    Because my texture is made by the ink flow diffusion drawing method, there will be many places with high transparency. If I don't use dither, the top model will have many very transparent areas that block the objects behind. Visually, it looks like it is blocked by air. For example, the trunk of the tree in my screenshot. If I don't use dither, part of the outer side of the trunk will also block the objects behind.

    • इस पर Harald ने जवाब दिया।

      suanLoBeach If I don't use dither, the top model will have many very transparent areas that block the objects behind.

      Not if you set the _AlphaClip threshold properly to exclude these areas of high transparency. You receive jagged outines instead then, obviously.

      • इस पर suanLoBeach ने जवाब दिया।

        Harald Can I do that on many texture in a same skeleton ?
        different mesh, different texture, like those leaf, in the same skeleton

        @suanLoBeach Yes.

        • इस पर suanLoBeach ने जवाब दिया।

          Harald How to do it ? the texture have the same Z value, they are on a same plane

          @suanLoBeach Set Advanced - Z-Spacing at the SkeletonAnimation component.
          https://esotericsoftware.com/spine-unity-main-components#Setting-Advanced-Parameters
          You likely want to set this parameter to a value other than 0.0 whenever writing to the Z buffer.

          • इस पर suanLoBeach ने जवाब दिया।
            • संपादित

            Harald oh, it's what i need ,thx

            I have another quastion, I wanna leaf is dynamic by vertex displacement,but stem is static, now they use the same material , so How can I make two different affect, I'll add teh code about vertex displacement into my custom spine shader, but there is only one material slot here, do i need to make two slot in spine and how to make it ?

            • इस पर Harald ने जवाब दिया।

              suanLoBeach I'll add teh code about vertex displacement into my custom spine shader, but there is only one material slot here, do i need to make two slot in spine and how to make it ?

              I'm not sure which Material slot you're talking about, but if you want different materials for different slots, see the SkeletonRendererCustomMaterials component.

              In general please always check out the spine-unity documentation pages first and the example scenes that come with the spine-unity runtime. For common tasks there is almost always an entry in the documentation or example scene available.

              • इस पर suanLoBeach ने जवाब दिया।

                Harald So the step of customizing the materials of multiple components is done in Unity? Is there anything I need to do in Spine?

                Harald I have know how to set custom material for any slot, thanks

                • इस पर Harald ने जवाब दिया।
                • Harald ने इसे लाइक किया।

                  suanLoBeach Glad to hear you've figured it out, thanks for getting back to us.