As the title says, one small addition that would be useful for us (and I guess for others too) would be to have a Color picker for the Blend In/Out Effect on Camera Shots. Right now the only option is BlendFrom/To Black.
On our game, we use only black or white for cinematic fades, so we have just added a new element in these enums and change the color on each case in OnUpdate:
1
2
3
4
5
6
7
8
9
10
11
12
13
publicenumBlendInEffectType{
None,
FadeFromBlack,
FadeFromWhite,
CrossDissolve,
EaseIn
}
publicenumBlendOutEffectType{
None,
FadeToBlack,
FadeToWhite
}
It would be good to at least have these two basic color options added “officially”, but a general FadeToColor/FadeFromColor option and a Color picker beside it would allow for other creative blendings I guess!
I have just replaced “Fade From/To Black” with “Fade From/To Color”, along with a color picker of course to select, where the default color remains Black.
This will be available in the next version.
Thanks for the suggestion 🙂