Novelty scripting reference > Types > Camera

Settings

Interface for accessing novel settings.
Settings is a single-reference type. This means you can access this class directly:

Settings.master_volume = 0.5f;


Members

uint skipping_speed (Property)
Speed multiplier for when the player is pressing the skip button.

bool skipping_enabled (Property)
Determines whether skipping is enabled.

float autoplay_delay (Property)
Delay (in seconds) between actions/dialogue during autoplay.

bool autoplay_enabled (Property)
Determines whether autoplaying is enabled.

float master_volume (Property)
Master volume setting. A value between 0.0 and 1.0.

float bgm_volume (Property)
Background music volume setting. A value between 0.0 and 1.0.

float effect_volume (Property)
Sound effect volume setting. A value between 0.0 and 1.0.

float vocal_volume (Property)
Vocal volume setting. A value between 0.0 and 1.0.

float video_volume (Property)
Video volume setting. A value between 0.0 and 1.0.


Back to top