SerenityJS
    Preparing search index...

    Interface PlayerCameraFadeOptions

    interface PlayerCameraFadeOptions {
        fadeColor?: { blue: number; green: number; red: number };
        fadeTime?: PlayerCameraFadeTimeOptions;
    }
    Index

    Properties

    fadeColor?: { blue: number; green: number; red: number }

    The color the screen will fade to. (RGB values from 0-255)

    Type declaration

    • blue: number

      The blue component of the color (0-255).

    • green: number

      The green component of the color (0-255).

    • red: number

      The red component of the color (0-255).

    Time in seconds for the fade-in, hold, and fade-out.