| 43 | namespace TEN::Scripting::View |
| 44 | { |
| 45 | static void FadeOut(TypeOrNil<float> speed) |
| 46 | { |
| 47 | SetScreenFadeOut(ValueOr<float>(speed, 1.0f) / (float)FPS); |
| 48 | } |
| 49 | |
| 50 | static void FadeIn(TypeOrNil<float> speed) |
| 51 | { |
nothing calls this directly
no test coverage detected