Hi everyone, I really need help. I've encountered the following problem:
In my game, I have Spine objects, one of which is the ground that receives shadows because the "Receive Shadows" checkbox is checked in the material's shader. Another object casts shadows. In Play Mode in Unity, everything works as expected, BUT when I build the project or select "Use Existing Build" in Addressables Groups, the ground stops receiving shadows. All materials, sprites and other objects are located in Addressables. What could be the problem?

Related Discussions
...

The issue you're experiencing with shadows not being received by Spine objects in the build, despite working in Play Mode, is likely related to the shaders not being included in the build. This is a common problem when using Addressables or when shaders are set through code.

Here are a few steps you can take to resolve this issue:

  1. Always Included Shaders: Ensure that the shaders you are using are included in the "Always Included Shaders" list in the project settings. This can be found under Edit > Project Settings > Graphics > Always Included Shaders. Add the Spine shaders you are using to this list.

  2. Addressables Settings: Make sure that all the materials and shaders used by your Spine objects are correctly referenced in your Addressables settings. Sometimes, assets might not be included in the build if they are not properly referenced.

  3. Shader Stripping: Check if shader stripping is enabled in your project settings. If it is, make sure that the necessary variants of your shaders are not being stripped out. This can be found under Edit > Project Settings > Graphics > Shader Stripping.

  4. URP Shaders: If you are using the Universal Render Pipeline (URP), ensure that you are using the correct Spine URP shaders. The standard Spine shaders might not work correctly with URP.

  5. Manual Integration: If the issue persists, you might need to manually integrate the changes from the Spine runtime updates. For example, the issue with shadows not casting correctly was fixed in the 4.1 branch. You can manually integrate the changes from this commit into your project.

  6. Testing with Non-Spine Shaders: As a troubleshooting step, you can test whether the same issue occurs with non-Spine shaders. This can help determine if the problem is specific to Spine shaders or a more general issue with your project setup.

If none of these steps resolve the issue, you might want to create a minimal Unity project that demonstrates the problem and send it to the support team for further investigation.

    Spinebot Almost everything has already been tried, I tried what had not been tried, but nothing helped

    roquet a ajouté l'étiquette Bugs le .

    @roquet What was the outcome of testing the 6th bullet point Spinebot suggested?

    Testing with Non-Spine Shaders: As a troubleshooting step, you can test whether the same issue occurs with non-Spine shaders. This can help determine if the problem is specific to Spine shaders or a more general issue with your project setup.

    Did you check whether some Quality settings have shadow casting disabled, and whether these are active?

      Harald
      Thanks for the answer.
      Yes, we also tried with other materials and shaders, since previously ground was a object with regular sprite with a simple shader that processes shadows, not a spine object.

      And we also have several graphics settings and each one has the display of shadows, since not only the ground accepts shadows

        roquet Yes, we also tried with other materials and shaders, since previously ground was a object with regular sprite with a simple shader that processes shadows, not a spine object.

        Thanks for the reply, unfortunately the above text is not very precisely describing what combinations of objects and shaders you have tested.

        Did you test all of the items below?

        1. A normal object with a non-Spine shader
        2. A normal object with a Spine shader
        3. A SkeletonAnimation object with a non-Spine shader