RunoseAI 3.8.6 sets the label color preview to the default white after normal build

I have tried many methods but nothing works. What is the reason?

1 Like

The verification is normal. If you want to solve it quickly, you can give us a demo and we will check it out.

I checked the files one by one and found no errors. As long as a script is mounted with color = Color.WHITE;, the problem will occur after the build (it will affect all labels that do not use this script, making it difficult to check).

    @property(Color)
    defaultTextColor: Color = new Color(150, 150, 150, 255);

    @property(Color)

    selectedTextColor: Color = Color.WHITE;

Color.WHITE will cause the build color to be lost in version 3.8.6. Even if you change it to new Color(255, 255, 255, 0), you need to restart the editor and rebuild it to restore it.