Hey folks,
A key component of my game is to hand-pick colors for the scene and transition the entire scene between sets of colors. Currently I’m doing this with a struct of colors (ground, rocks, sky, etc) and I have a blueprint that contains an array of this struct. So in the blueprint defaults, I’ve set up several sets of colors as items in the array. I can set the scene to use the colors in a particular index, and fade from index to index.
This method is not ideal because the UI for organizing the elements of an array is unpleasant, and if one element of the blueprint corrupts, I lose every color in the game. It would be so much better if I could have maybe a file for each color palette, and a way to arrange them into different orders. Can you think of a way that I can do this?
Thanks,
Stu