Configuration
The engine configuration is stored in multiple scriptable object assets located at Assets/NaninovelData/Resources/Naninovel/Configuration
folder. They are automatically generated when opening the corresponding configuration menus in the Unity editor for the first time.
Use Naninovel -> Configuration
or Edit -> Project Settings -> Naninovel
to access the configuration menu.
Notice, that all the configuration menus are supporting Unity's presets feature. It could be useful to create several configuration presets when deploying to different target platforms (eg, mobile, standalone, consoles, etc).
It's possible to modify configuration objects at runtime, add new custom configurations and change the way the objects are accessed at runtime (eg, read configuration from JSON files stored on a remote host); see custom configuration guide for more information.
Audio
Property | Default Value | Description |
---|---|---|
Audio Loader | Audio- (Addressable, Project) | Configuration of the resource loader used with audio (BGM and SFX) resources. |
Voice Loader | Voice- (Addressable, Project) | Configuration of the resource loader used with voice resources. |
Audio Player | Naninovel.Audio Player, Elringus.Naninovel.Runtime, Version=0.0.0.0, Culture=neutral, Public Key Token=null | IAudioPlayer implementation responsible for playing audio clips. |
Default Master Volume | 1 | Master volume to set when the game is first started. |
Default Bgm Volume | 1 | BGM volume to set when the game is first started. |
Default Sfx Volume | 1 | SFX volume to set when the game is first started. |
Default Voice Volume | 1 | Voice volume to set when the game is first started. |
Enable Auto Voicing | False | When enabled, each @print command will attempt to play an associated voice clip. |
Auto Voice Mode | Text Id | When auto voicing is enabled, controls method to associate voice clips with @print commands: • Text ID — Voice clips are associated by localizable text IDs. Removing, adding or re-ordering scenario script lines won't break the associations. Modifying printed text will break associations unless stable text identification is enabled. • Playback Spot — Voice clips are associated by script name, line and inline indexes (playback spot). Removing, adding or re-ordering scenario script lines will break the associations. Modifying printed text will not break associations. |
Voice Overlap Policy | Prevent Overlap | Dictates how to handle concurrent voices playback: • Allow Overlap — Concurrent voices will be played without limitation. • Prevent Overlap — Prevent concurrent voices playback by stopping any played voice clip before playing a new one. • Prevent Character Overlap — Prevent concurrent voices playback per character; voices of different characters (auto voicing) and any number of @voice command are allowed to be played concurrently. |
Voice Locales | Null | Assign localization tags to allow selecting voice language in the game settings independently of the main localization. |
Default Fade Duration | 0.35 | Default duration of the volume fade in/out when starting or stopping playing audio. |
Custom Audio Mixer | Null | Audio mixer to control audio groups. When not provided, will use a default one. |
Master Group Path | Master | Path of the mixer's group to control master volume. |
Master Volume Handle Name | Master Volume | Name of the mixer's handle (exposed parameter) to control master volume. |
Bgm Group Path | Master/BGM | Path of the mixer's group to control volume of background music. |
Bgm Volume Handle Name | BGM Volume | Name of the mixer's handle (exposed parameter) to control background music volume. |
Sfx Group Path | Master/SFX | Path of the mixer's group to control sound effects music volume. |
Sfx Volume Handle Name | SFX Volume | Name of the mixer's handle (exposed parameter) to control sound effects volume. |
Voice Group Path | Master/Voice | Path of the mixer's group to control voice volume. |
Voice Volume Handle Name | Voice Volume | Name of the mixer's handle (exposed parameter) to control voice volume. |
Backgrounds
Property | Default Value | Description |
---|---|---|
Default Metadata | Object Ref | Metadata to use by default when creating background actors and custom metadata for the created actor ID doesn't exist. |
Metadata | Object Ref | Metadata to use when creating background actors with specific IDs. |
Shared Poses | Object Ref | Named states (poses) shared between the backgrounds; pose name can be used as appearance in @back commands to set enabled properties of the associated state. |
Scene Origin | (0.5, 0.0) | Reference point on scene to be considered as origin for the managed actors. Doesn't affect positioning. |
Z Offset | 100 | Initial Z-axis offset (depth) from actors to the camera to set when the actors are created. |
Z Step | 0.1 | Distance by Z-axis to set between the actors when they are created; used to prevent z-fighting issues. |
Default Duration | 0.35 | Default duration (in seconds) for all the actor modifications (changing appearance, position, tint, etc). |
Default Easing | Linear | Easing function to use by default for all the actor modification animations (changing appearance, position, tint, etc). |
Auto Show On Modify | True | Whether to automatically reveal (show) an actor when executing modification commands. |
Camera
Property | Default Value | Description |
---|---|---|
Reference Resolution | (1920, 1080) | The reference resolution is used to evaluate proper rendering dimensions, so that actors are correctly positioned on scene. As a rule of thumb, set this equal to the resolution of the background textures you make for the game. |
Reference PPU | 100 | How many pixels correspond to a scene unit. Reducing this will make all the actors appear smaller and vice-versa. Default value of 100 is recommended for most cases. |
Match Screen Width | False | Whether reference scene rectangle width should be matched against screen width. When enabled, relative (scene) position evaluation will use screen border as the origin; otherwise reference resolution is used. |
Initial Position | (0.0, 0.0, -10.0) | Initial world position of the managed cameras. |
Custom Camera Prefab | Null | A prefab with a camera component to use for rendering. Will use a default one when not specified. In case you wish to set some camera properties (background color, FOV, HDR, etc) or add post-processing scripts, create a prefab with the desired camera setup and assign the prefab to this field. |
Use UI Camera | True | Whether to render the UI with a dedicated camera. This option is for backward-compatibility and should not be disabled in new projects. Expect issues when disabled (eg, constant uGUI layout rebuilds on camera animations). |
Custom UI Camera Prefab | Null | A prefab with a camera component to use for UI rendering. Will use a default one when not specified. Has no effect when Use UI Camera is disabled |
Default Duration | 0.35 | Default duration (in seconds) for all the camera modifications (changing zoom, position, rotation, etc). |
Default Easing | Linear | Easing function to use by default for all the camera modifications (changing zoom, position, rotation, etc). |
Thumbnail Resolution | (240, 140) | The resolution in which thumbnails to preview game save slots will be captured. |
Hide UI In Thumbnails | False | Whether to ignore UI layer when capturing thumbnails. |
Characters
Property | Default Value | Description |
---|---|---|
Auto Arrange On Add | True | Whether to evenly distribute characters by X-axis when adding a new character without a specified position. |
Arrange Range | (0.0, 1.0) | Start (x) and end (y) positions (in 0.0 to 1.0 range) relative to scene width representing the range over which the characters are arranged. |
Default Metadata | Object Ref | Metadata to use by default when creating character actors and custom metadata for the created actor ID doesn't exist. |
Metadata | Object Ref | Metadata to use when creating character actors with specific IDs. |
Avatar Loader | Character Avatars- (Addressable, Project) | Configuration of the resource loader used with character avatar texture resources. |
Shared Poses | Object Ref | Named states (poses) shared between the characters; pose name can be used as appearance in @char commands to set enabled properties of the associated state. |
Scene Origin | (0.5, 0.0) | Reference point on scene to be considered as origin for the managed actors. Doesn't affect positioning. |
Z Offset | 50 | Initial Z-axis offset (depth) from actors to the camera to set when the actors are created. |
Z Step | 0.1 | Distance by Z-axis to set between the actors when they are created; used to prevent z-fighting issues. |
Default Duration | 0.35 | Default duration (in seconds) for all the actor modifications (changing appearance, position, tint, etc). |
Default Easing | Smooth Step | Easing function to use by default for all the actor modification animations (changing appearance, position, tint, etc). |
Auto Show On Modify | True | Whether to automatically reveal (show) an actor when executing modification commands. |
Choice Handlers
Property | Default Value | Description |
---|---|---|
Default Handler Id | Button List | ID of the choice handler to use by default. |
Choice Button Loader | - (Addressable, Project) | Configuration of the resource loader used for loading custom choice buttons. |
Default Metadata | Object Ref | Metadata to use by default when creating choice handler actors and custom metadata for the created actor ID doesn't exist. |
Metadata | Object Ref | Metadata to use when creating choice handler actors with specific IDs. |
Default Duration | 0.35 | Default duration (in seconds) for all the actor modifications (changing appearance, position, tint, etc). |
Default Easing | Linear | Easing function to use by default for all the actor modification animations (changing appearance, position, tint, etc). |
Auto Show On Modify | True | Whether to automatically reveal (show) an actor when executing modification commands. |
Custom Variables
Property | Default Value | Description |
---|---|---|
Predefined Variables | Object Ref | The list of variables to initialize by default. Global variables (names starting with G_ or g_ ) are initialized on first application start, and others on each state reset. |
Engine
Property | Default Value | Description |
---|---|---|
Generated Data Path | Naninovel Data | Relative (to the application data directory) path to store the automatically generated assets. |
Override Objects Layer | False | Whether to assign a specific layer to all the engine objects. Engine's camera will use the layer for the culling mask. Use this to isolate Naninovel objects from being rendered by other cameras. |
Objects Layer | 0 | When Override Objects Layer is enabled, the specified layer will be assigned to all the engine objects. |
Async Exception Log Type | Error | Log type to use for UniTask-related exceptions. |
Type Assemblies | Object Ref | When looking for various types (eg, actor implementations, serialization handlers, managed text, etc) the engine will only scan the exported types of the specified assemblies for better performance. In case you're keeping your Naninovel-related types outside of Unity's predefined assemblies (using assembly definitions), add the assembly names here. Warning: Recompile the solution or restart Unity editor after modifying the list in order for changes to take effect. |
Initialize On Application Load | True | Whether to automatically initialize the engine when application starts. |
Scene Independent | True | Whether to apply DontDestroyOnLoad to the engine objects, making their lifetime independent of any loaded scenes. When disabled, the objects will be part of the Unity scene where the engine was initialized and will be destroyed when the scene is unloaded. |
Show Initialization UI | True | Whether to show a loading UI while the engine is initializing. |
Custom Initialization UI | Null | UI to show while the engine is initializing (when enabled). Will use a default one when not provided. |
Enable Bridging | False | Whether to automatically start the bridging server to communicate with external Naninovel tools: IDE extension, web editor, etc. |
Server Port | 41016 | The network port for the server to listen. Change both here and in the external tools in case the default port is occupied by another application. |
Auto Generate Metadata | True | Whether to automatically generate project metadata when Unity editor is started. |
Generate Label Metadata | True | Whether to generate metadata used for script labels autocompletion. May take a substantial time when there are a lot of scripts in the project. |
Enable Development Console | True | Whether to enable development console. |
Debug Only Console | False | When enabled, development console will only be available in development (debug) builds. |
Input
Property | Default Value | Description |
---|---|---|
Spawn Event System | True | Whether to spawn an event system when initializing. |
Custom Event System | Null | A prefab with an EventSystem component to spawn for input processing. Will spawn a default one when not specified. |
Spawn Input Module | True | Whether to spawn an input module when initializing. |
Custom Input Module | Null | A prefab with an InputModule component to spawn for input processing. Will spawn a default one when not specified. |
Input Actions | Null | When Unity's new input system is installed, assign input actions asset here. To map input actions to Naninovel's input bindings, create Naninovel action map and add actions with names equal to the binding names (found below under Control Scheme -> Bindings list).Be aware, that 2-dimensional (Vector2) axes are not supported. |
Process Legacy Bindings | True | Whether to process legacy input bindings. Disable in case you're using Unity's new input system and don't want the legacy bindings to work in addition to input actions. |
Touch Frequency Limit | 0.1 | Limits frequency of the registered touch inputs, in seconds. For legacy input only. |
Touch Distance Limit | 25 | Limits distance of the registered touch inputs, in pixels. For legacy input only. |
Detect Input Mode | True | Whether to change input mode when associated device is activated. Eg, switch to gamepad when any gamepad button is pressed and switch back to mouse when mouse button clicked. Requires new input system. |
Bindings | Object Ref | Bindings to process input for; find descriptions for each default input in the 'Input Processing' guide. |
Localization
Property | Default Value | Description |
---|---|---|
Loader | Localization- (Addressable, Project) | Configuration of the resource loader used with the localization resources. |
Languages | Object Ref | RFC5646 language tags mapped to default language display names. Restart Unity editor for changes to take effect. |
Source Locale | En | Locale of the source project resources (language in which the project assets are being authored). |
Default Locale | Null | Locale selected by default when running the game for the first time. Will select Source Locale when not specified. |
Managed Text
Property | Default Value | Description |
---|---|---|
Loader | Text- (Addressable, Project) | Configuration of the resource loader used with the managed text documents. |
Multiline Categories | Object Ref | Document categories (local resource paths) for which to use multiline document format. |
Movies
Property | Default Value | Description |
---|---|---|
Loader | Movies- (Addressable, Project) | Configuration of the resource loader used with movie resources. |
Skip On Input | True | Whether to skip movie playback when user activates cancel input keys. |
Skip Frames | True | Whether to skip frames to catch up with current time. |
Fade Duration | 1 | Time in seconds to fade in/out before starting/finishing playing the movie. |
Custom Fade Texture | Null | Texture to show while fading. Will use a simple black texture when not provided. |
Play Intro Movie | False | Whether to automatically play a movie after engine initialization and before showing the main menu. |
Intro Movie Name | Null | Path to the intro movie resource. |
Resource Provider
Property | Default Value | Description |
---|---|---|
Resource Policy | Static | Dictates when the resources are loaded and unloaded during script execution: • Static — All the resources required for the script execution are preloaded when starting the playback (masked with a loading screen) and unloaded only when the script has finished playing. This policy is default and recommended for most cases. • Dynamic — Only the resources required for the next Dynamic Policy Steps commands are preloaded during the script execution and all the unused resources are unloaded immediately. Use this mode when targeting platforms with strict memory limitations and it's impossible to properly organize naninovel scripts. Expect hiccups when the resources are loaded in background while the game is progressing. |
Dynamic Policy Steps | 25 | When dynamic resource policy is enabled, defines the number of script commands to pre-load. |
Optimize Loading Priority | True | When dynamic resource policy is enabled, this will set Unity's background loading thread priority to low to prevent hiccups when loading resources during script playback. |
Log Resource Loading | False | Whether to log resource loading operations on the loading screen. |
Enable Build Processing | True | Whether to register a custom build player handle to process the assets assigned as Naninovel resources. Warning: In order for this setting to take effect, it's required to restart the Unity editor. |
Use Addressables | True | When the Addressable Asset System is installed, enabling this property will optimize asset processing step improving the build time. |
Auto Build Bundles | True | Whether to automatically build the addressable asset bundles when building the player. Has no effect when Use Addressables is disabled. |
Allow Addressable In Editor | False | Whether to use addressable provider in editor. Enable if you're manually exposing resources via addressable address instead of assigning them with Naninovel's resource managers. Be aware, that enabling this could cause issues when resources are assigned both in resources manager and registered with an addressable address and then renamed or duplicated. |
Group By Category | False | Whether to create an addressable group per Naninovel resource category: scripts, characters, audio, etc. When disabled, will use a single Naninovel group for all the resources. |
Extra Labels | Null | Addressable provider will only work with assets, that have the assigned labels in addition to Naninovel label. Can be used to filter assets used by the engine based on custom criteria (eg, HD vs SD textures). |
Local Root Path | %DATA%/Resources | Path root to use for the local resource provider. Can be an absolute path to the folder where the resources are located, or a relative path with one of the available origins: • %DATA% — Game data folder on the target device (UnityEngine.Application.dataPath). • %PDATA% — Persistent data directory on the target device (UnityEngine.Application.persistentDataPath). • %STREAM% — StreamingAssets folder (UnityEngine.Application.streamingAssetsPath).• %SPECIAL{F}% — An OS special folder (where F is value from System.Environment.SpecialFolder). |
Video Stream Extension | .mp 4 | When streaming videos under WebGL (movies, video backgrounds), specify the extension of the video files. |
Project Root Path | Naninovel | Path relative to Resources folders, under which the naninovel-specific assets are located. |
Script Player
Property | Default Value | Description |
---|---|---|
Default Skip Mode | Read Only | Default skip mode to set when the game is first started. |
Skip Time Scale | 10 | Time scale to use when in skip (fast-forward) mode. |
Min Auto Play Delay | 3 | Minimum seconds to wait before executing next command while in auto play mode. |
Complete On Continue | True | Whether to instantly complete blocking (wait:true ) commands performed over time (eg, animations, hide/reveal, tint changes, etc) when Continue input is activated. |
Show Debug On Init | False | Whether to show player debug window on engine initialization. |
Wait By Default | True | Whether to wait the played commands when the wait parameter is not explicitly specified. |
Unload Assets On Play | True | Whether to force-unload unused assets before starting script playback. Required to unload released assets from memory when using addressables. |
Load On Goto | True | Whether to show ILoadingUI when @goto command requires loading another script. Allows masking resource pre-loading process with the loading screen. |
Resolve Mode | Nearest | The mode in which script player handles missing playback spots when loading state. This may happen when player saved a game amidst a scenario script, which is then changed (eg, via a game update) and the saved playback spot (line and inline indexes) is no longer available. • Nearest — Attempt to play from the nearest next spot; in case no next spots found (script was made shorter), start from nearest previous one. Most forgiving mode, but could cause an undefined behaviour. • Restart — Start playing current script from start. Won't cause undefined behaviour in case all the state is local to scenario script, but player will have to re-play the script form the start. • Error — Throw an error. Choose this option in case undefined behaviour is not acceptable. |
Scripts
Property | Default Value | Description |
---|---|---|
Loader | Scripts- (Addressable, Project) | Configuration of the resource loader used with naninovel script resources. |
Script Parser | Naninovel.Script Parser, Elringus.Naninovel.Runtime, Version=0.0.0.0, Culture=neutral, Public Key Token=null | IScriptParser implementation to use for creating script assets from text. Don't forget to re-import script assets after modifying this property. |
Stable Identification | False | Whether to automatically write identifiers to all the localizable text parameters in imported scripts. Enable to persist associations (eg, localization and voiceover) while editing text content. Re-import the scripts for the change to take effect. |
Initialization Script | Null | Name of the script to play right after the engine initialization. |
Title Script | Null | Name of the script to play when showing the Title UI. Can be used to setup the title screen scene (background, music, etc). |
Start Game Script | Null | Name of the script to play when starting a new game. Will use first available when not provided. |
Auto Add Scripts | True | Whether to automatically add created naninovel scripts to the resources. |
Hot Reload Scripts | True | Whether to reload modified (both via visual and external editors) scripts and apply changes during playmode without restarting the playback. |
Watch Scripts | True | Whether to run a file system watcher over .nani files in the project. Required to register script changes when edited with an external application. |
Watched Directory | When Watch Scripts is enabled, select a specific directory to watch instead of the whole project to reduce CPU usage. | |
Count Total Commands | False | Whether to calculate number of commands existing in all the available naninovel scripts on service initialization. If you don't use TotalCommandsCount property of a script manager and CalculateProgress function in naninovel script expressions, disable to reduce engine initialization time. |
Show Script Navigator | False | Whether to auto-show script navigator UI after engine is initialized (requires IScriptNavigatorUI available in UI resources). |
Enable Visual Editor | True | Whether to show visual script editor when a script is selected. |
Hide Unused Parameters | True | Whether to hide un-assigned parameters of the command lines when the line is not hovered or focused. |
Select Played Script | True | Whether to automatically select currently played script when visual editor is open. |
Insert Line Key | Space | Hot key used to show Insert Line window when the visual editor is in focus. Set to None to disable. |
Insert Line Modifier | Control | Modifier for the Insert Line Key . Set to None to disable. |
Save Script Key | S | Hot key used to save (serialize) the edited script when the visual editor is in focus. Set to None to disable. |
Save Script Modifier | Control | Modifier for the Save Script Key . Set to None to disable. |
Rewind Mouse Button | 0 | When clicked a line in visual editor, which mouse button should activate rewind: 0 is left, 1 right, 2 middle; set to -1 to disable. |
Rewind Modifier | Shift | Modifier for Rewind Mouse Button . Set to None to disable. |
Editor Page Length | 300 | How many script lines should be rendered per visual editor page. |
Editor Custom Style Sheet | Null | Allows modifying default style of the visual editor. |
Graph Orientation | Horizontal | Whether to build the graph vertically or horizontally. |
Graph Auto Align Padding | (10.0, 0.0) | Padding to add for each node when performing auto align. |
Show Synopsis | True | Whether to show fist comment lines of the script inside the graph node. |
Graph Custom Style Sheet | Null | Allows modifying default style of the script graph. |
Enable Community Modding | False | Whether to allow adding external naninovel scripts to the build. |
External Loader | Scripts- (Local) | Configuration of the resource loader used with external naninovel script resources. |
Spawn
Property | Default Value | Description |
---|---|---|
Loader | Spawn- (Addressable, Project) | Configuration of the resource loader used with spawn resources. |
State
Property | Default Value | Description |
---|---|---|
Save Folder Name | Saves | The folder will be created in the game data folder. |
Default Settings Slot Id | Settings | The name of the settings save file. |
Default Global Slot Id | Global Save | The name of the global save file. |
Save Slot Mask | Game Save{0:000} | Mask used to name save slots. |
Quick Save Slot Mask | Game Quick Save{0:000} | Mask used to name quick save slots. |
Save Slot Limit | 99 | Maximum number of save slots. |
Quick Save Slot Limit | 18 | Maximum number of quick save slots. |
Binary Save Files | True | Whether to compress and store the saves as binary files (.nson) instead of text files (.json). This will significantly reduce the files size and make them harder to edit (to prevent cheating), but will consume more memory and CPU time when saving and loading. |
Reset On Goto | False | Whether to reset state of the engine services when loading another script via @goto command. Can be used instead of @resetState command to automatically unload all the resources on each goto. |
Enable State Rollback | True | Whether to enable state rollback feature allowing player to rewind the script backwards. |
State Rollback Steps | 1024 | The number of state snapshots to keep at runtime; determines how far back the rollback (rewind) can be performed. Increasing this value will consume more memory. |
Saved Rollback Steps | 128 | The number of state snapshots to serialize (save) under the save game slots; determines how far back the rollback can be performed after loading a saved game. Increasing this value will enlarge save game files. |
Game State Handler | Naninovel.Universal Game State Serializer, Elringus.Naninovel.Runtime, Version=0.0.0.0, Culture=neutral, Public Key Token=null | Implementation responsible for de-/serializing local (session-specific) game state; see State Management guide on how to add custom serialization handlers. |
Global State Handler | Naninovel.Universal Global State Serializer, Elringus.Naninovel.Runtime, Version=0.0.0.0, Culture=neutral, Public Key Token=null | Implementation responsible for de-/serializing global game state; see State Management guide on how to add custom serialization handlers. |
Settings State Handler | Naninovel.Universal Settings State Serializer, Elringus.Naninovel.Runtime, Version=0.0.0.0, Culture=neutral, Public Key Token=null | Implementation responsible for de-/serializing game settings; see State Management guide on how to add custom serialization handlers. |
Text Printers
Property | Default Value | Description |
---|---|---|
Default Printer Id | Dialogue | ID of the text printer to use by default. |
Default Base Reveal Speed | 0.5 | Base reveal speed (game settings) to set when the game is first started. |
Default Base Auto Delay | 0.5 | Base auto delay (game settings) to set when the game is first started. |
Max Reveal Delay | 0.06 | Delay limit (in seconds) when revealing (printing) the text messages. Specific reveal speed is set via message speed in the game settings; this value defines the available range (higher the value, lower the reveal speed). |
Max Auto Wait Delay | 0.02 | Delay limit (in seconds) per each printed character while waiting to continue in auto play mode. Specific delay is set via auto delay in the game settings; this value defines the available range. |
Scale Auto Wait | True | Whether to scale the wait time in auto play mode by the reveal speed set in the print commands. |
Default Metadata | Object Ref | Metadata to use by default when creating text printer actors and custom metadata for the created actor ID doesn't exist. |
Metadata | Object Ref | Metadata to use when creating text printer actors with specific IDs. |
Scene Origin | (0.5, 0.0) | Reference point on scene to be considered as origin for the managed actors. Doesn't affect positioning. |
Z Offset | 0 | Initial Z-axis offset (depth) from actors to the camera to set when the actors are created. |
Z Step | 0 | Distance by Z-axis to set between the actors when they are created; used to prevent z-fighting issues. |
Default Duration | 0.35 | Default duration (in seconds) for all the actor modifications (changing appearance, position, tint, etc). |
Default Easing | Linear | Easing function to use by default for all the actor modification animations (changing appearance, position, tint, etc). |
Auto Show On Modify | False | Whether to automatically reveal (show) an actor when executing modification commands. |
UI
Property | Default Value | Description |
---|---|---|
UI Loader | UI- (Addressable, Project) | Configuration of the resource loader used with UI resources. |
Font Loader | Fonts- (Addressable, Project) | Configuration of the resource loader used with font resources. |
Override Objects Layer | True | Whether to assign a specific layer to all the UI objects managed by the engine. Required for some of the built-in features, eg Toggle UI . |
Objects Layer | 5 | When Override Objects Layer is enabled, the specified layer will be assigned to all the managed UI objects. |
Font Options | Object Ref | Font options, that should be available in the game settings UI (in addition to Default ) for the player to choose from. |
Default Font | Null | Font name from Font Options to apply by default when the game is first started. When not specified, Default font is applied. |
Unlockables
Property | Default Value | Description |
---|---|---|
Loader | Unlockables- (Addressable, Project) | Configuration of the resource loader used with unlockable resources. |