• RuntimesUnreal
  • Find a problem that only one skin isn't applied 2

I ordered spine skeleton animation to be applied as a set skin
The skin I want is definitely in the skin array variable
It applies well to all other skin types But one skin I want
It's a problem that only that skin isn't applied

    Related Discussions
    ...

    If a specific skin is not being applied while others are working correctly, there are a few potential issues to consider. First, ensure that the skin name is correctly specified in your code and matches exactly with the name in the Spine project. You can verify this by checking the skin name in the Spine editor and comparing it with the name used in your code. Additionally, check if there are any warnings in the Spine editor when you open the project, as these might indicate issues with the skin setup. If the skin is present in the array but still not applying, it might be due to missing attachments or incorrect setup in the Spine project. You can also try setting the skin to null before applying the new skin to ensure that no previous skin settings are interfering.

    I ordered spine skeleton animation to be applied as a set skin
    The skin I want is definitely in the skin array variable
    It applies well to all other skin types But one skin I want
    It's a problem that only that skin isn't applied
    What's so annoying that it's hard to explain is that when I used Construction script to call and test the skin in real time, not in simulation, it worked as intended. So I know there's no problem with the blue print or the skin, but when I test it in simulation, it doesn't show like a ghost

    It sounds like you are experiencing an issue where a specific skin is not being applied correctly during simulation, even though it works when tested in real-time using a construction script. This could be related to how the skin is being set or updated in your simulation environment. One potential solution is to ensure that after setting the skin, you call skeletonAnimation.Update(0); to update the world transform values, as this is necessary for the changes to take effect properly. Additionally, make sure that the skin is correctly referenced and that there are no issues with the skin's setup in the Spine editor. If the problem persists, consider checking for any warnings in the Spine editor that might indicate an issue with the skin setup.

    rmx Could you check if the Export checkbox for the skin or attachment is unchecked when you open the original project in the Spine Editor?:

    If the export setting is correct, please show us what the script or blueprint for the current skin settings looks like.

    • rmx a répondu à ça.
      Fusion de 3 messages de Find a problem that only one skin isn't applied.

      Misaki
      I figured out
      I make skins of equip(1) and unequip(0) for ease of management
      But even unequipped version skin needs to has attachment in placeholder
      So i add any small attachment with transparent color all of placeholder and it works