Skip to content

Commands

Script commands API reference. Use the side bar to quickly navigate between available commands.

Strikethrough indicates a nameless parameter, and bold stands for required parameter; other parameters should be considered optional. Consult naninovel scripts guide in case you have no idea what's this all about.

The following parameters are supported by all the script commands:

ParameterTypeDescription
ifstringA boolean script expression, controlling whether the command should execute.
waitbooleanWhether the script player should wait for the async command to finish execution before executing the next one. Has no effect when the command is executed instantly.

animate

Animate properties of the actors with the specified IDs via key frames. Key frames for the animated parameters are delimited with commas.

NOTE

It's not recommended to use this command for complex animations. Naniscript is a scenario scripting DSL and not suited for complex automation or specification such as animation. Consider using dedicated animation tools instead, such as Unity's Animator ↗.

Be aware, that this command searches for actors with the provided IDs over all the actor managers, and in case multiple actors with the same ID exist (eg, a character and a text printer), this will affect only the first found one.

When running the animate commands in parallel (wait is set to false) the affected actors state can mutate unpredictably. This could cause unexpected results when rolling back or performing other commands that affect state of the actor. Make sure to reset affected properties of the animated actors (position, tint, appearance, etc) after the command finishes or use @animate CharacterId (without any args) to stop the animation prematurely.

ParameterTypeDescription
actorIdsstring listIDs of the actors to animate.
loopbooleanWhether to loop the animation; make sure to set wait to false when loop is enabled, otherwise script playback will loop indefinitely.
appearancestringAppearances to set for the animated actors.
transitionstringType of the transition effect to use when animating appearance change (crossfade is used by default).
visibilitystringVisibility status to set for the animated actors.
posXstringPosition values over X-axis (in 0 to 100 range, in percents from the left border of the scene) to set for the animated actors.
posYstringPosition values over Y-axis (in 0 to 100 range, in percents from the bottom border of the scene) to set for the animated actors.
posZstringPosition values over Z-axis (in world space) to set for the animated actors; while in ortho mode, can only be used for sorting.
rotationstringRotation values (over Z-axis) to set for the animated actors.
scalestringScale (x,y,z or a single uniform value) to set for the animated actors.
tintstringTint colors to set for the animated actors.

Strings that begin with # will be parsed as hexadecimal in the following way: #RGB (becomes RRGGBB), #RRGGBB, #RGBA (becomes RRGGBBAA), #RRGGBBAA; when alpha is not specified will default to FF.

Strings that do not begin with # will be parsed as literal colors, with the following supported: red, cyan, blue, darkblue, lightblue, purple, yellow, lime, fuchsia, white, silver, grey, black, orange, brown, maroon, green, olive, navy, teal, aqua, magenta.
easingstringNames of the easing functions to use for the animations.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the actor's manager configuration settings.
timestringDuration of the animations per key, in seconds. When a key value is missing, will use one from a previous key. When not assigned, will use 0.35 seconds duration for all keys.
nani
; Animate `Kohaku` actor over three animation steps (key frames),
; changing positions: first step will take 1, second — 0.5 and third — 3 seconds.
@animate Kohaku posX:50,0,85 time:1,0.5,3

; Start loop animations of `Yuko` and `Kohaku` actors; notice, that you can skip
; key values indicating that the parameter shouldn't change during the animation step.
@animate Kohaku,Yuko loop:true appearance:Surprise,Sad,Default,Angry transition:DropFade,Ripple,Pixelate posX:15,85,50 posY:0,-25,-85 scale:1,1.25,1.85 tint:#25f1f8,lightblue,#ffffff,olive easing:EaseInBounce,EaseInQuad time:3,2,1,0.5 wait:false
...
; Stop the animations.
@animate Yuko,Kohaku loop:false

; Start a long background animation for `Kohaku`.
@animate Kohaku posX:90,0,90 scale:1,2,1 time:10 wait:false
; Do something else while the animation is running.
...
; Here we're going to set a specific position for the character,
; but the animation could still be running in background, so reset it first.
@animate Kohaku
; Now it's safe to modify previously animated properties.
@char Kohaku pos:50 scale:1

append

Appends provided text to a text printer.

NOTE

The entire text will be appended immediately, without triggering reveal effect or any other side-effects.

ParameterTypeDescription
textstringThe text to append.
printerstringID of the printer actor to use. Will use a a default one when not provided.
authorstringID of the actor, which should be associated with the appended text.
nani
; Print first part of the sentence as usual (with gradual reveal),
; then append the end of the sentence at once.
Lorem ipsum
@append " dolor sit amet."

arrange

Arranges specified characters by X-axis. When no parameters provided, will execute an auto-arrange evenly distributing visible characters by X-axis.

ParameterTypeDescription
characterPositionsnamed decimal listA collection of character ID to scene X-axis position (relative to the left scene border, in percents) named values. Position 0 relates to the left border and 100 to the right border of the scene; 50 is the center.
lookbooleanWhen performing auto-arrange, controls whether to also make the characters look at the scene origin (enabled by default).
timedecimalDuration (in seconds) of the arrangement animation.
nani
; Evenly distribute all the visible characters.
@arrange

; Place character with ID `Jenna` 15%, `Felix` 50% and `Mia` 85% away
; from the left border of the scene.
@arrange Jenna.15,Felix.50,Mia.85

back

Modifies a background actor.

NOTE

Backgrounds are handled a bit differently from characters to better accommodate traditional VN game flow. Most of the time you'll probably have a single background actor on scene, which will constantly transition to different appearances. To remove the hassle of repeating same actor ID in scripts, it's possible to provide only the background appearance and transition type (optional) as a nameless parameter assuming MainBackground actor should be affected. When this is not the case, ID of the background actor can be explicitly provided via the id parameter.

ParameterTypeDescription
appearanceAndTransitionnamed stringAppearance (or pose) to set for the modified background and type of a transition effect to use. When transition is not provided, a cross-fade effect will be used by default.
posdecimal listPosition (relative to the scene borders, in percents) to set for the modified actor. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
idstringID of the actor to modify; specify * to affect all visible actors.
appearancestringAppearance to set for the modified actor.
posestringPose to set for the modified actor.
transitionstringType of the transition effect to use (crossfade is used by default).
paramsdecimal listParameters of the transition effect.
dissolvestringPath to the custom dissolve texture (path should be relative to a Resources folder). Has effect only when the transition is set to Custom mode.
visiblebooleanVisibility status to set for the modified actor.
positiondecimal listPosition (in world space) to set for the modified actor. Use Z-component (third member) to move (sort) by depth while in ortho mode.
rotationdecimal listRotation to set for the modified actor.
scaledecimal listScale to set for the modified actor.
tintstringTint color to set for the modified actor.

Strings that begin with # will be parsed as hexadecimal in the following way: #RGB (becomes RRGGBB), #RRGGBB, #RGBA (becomes RRGGBBAA), #RRGGBBAA; when alpha is not specified will default to FF.

Strings that do not begin with # will be parsed as literal colors, with the following supported: red, cyan, blue, darkblue, lightblue, purple, yellow, lime, fuchsia, white, silver, grey, black, orange, brown, maroon, green, olive, navy, teal, aqua, magenta.
easingstringName of the easing function to use for the modification.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the actor's manager configuration settings.
timedecimalDuration (in seconds) of the modification.
nani
; Set `River` as the appearance of the main background.
@back River

; Same as above, but also use a `RadialBlur` transition effect.
@back River.RadialBlur

; Position `Smoke` background at the center of the screen
; and scale it 50% of the original size.
@back id:Smoke pos:50,50 scale:0.5

; Tint all visible backgrounds on scene.
@back id:* tint:#ffdc22

bgm

Plays or modifies currently played BGM (background music) track with the provided name.

NOTE

Music tracks are looped by default. When music track name (BgmPath) is not specified, will affect all the currently played tracks. When invoked for a track that is already playing, the playback won't be affected (track won't start playing from the start), but the specified parameters (volume and whether the track is looped) will be applied.

ParameterTypeDescription
bgmPathstringPath to the music track to play.
introstringPath to the intro music track to play once before the main track (not affected by the loop parameter).
volumedecimalVolume of the music track.
loopbooleanWhether to play the track from beginning when it finishes.
fadedecimalDuration of the volume fade-in when starting playback, in seconds (0.0 by default); doesn't have effect when modifying a playing track.
groupstringAudio mixer group path ↗ that should be used when playing the audio.
timedecimalDuration (in seconds) of the modification.
nani
; Starts playing a music track with the name `Sanctuary` in a loop.
@bgm Sanctuary

; Same as above, but fades-in the volume over 10 seconds and plays once.
@bgm Sanctuary fade:10 loop:false

; Changes volume of all the played music tracks to 50% over 2.5 seconds
; and makes them play in a loop.
@bgm volume:0.5 loop:true time:2.5

; Plays `BattleThemeIntro` once, then loops `BattleThemeMain`.
@bgm BattleThemeMain intro:BattleThemeIntro

blur

Applies blur effect to supported actor: backgrounds and characters of sprite, layered, diced, Live2D, Spine, video and scene implementations.

NOTE

The actor should have IBlurable interface implemented in order to support the effect.

ParameterTypeDescription
actorIdstringID of the actor to apply the effect for; in case multiple actors with the same ID found (eg, a character and a printer), will affect only the first found one. When not specified, applies to the main background.
powerdecimalIntensity of the effect, in 0.0 to 1.0 range. Defaults to 0.5. Set to 0 to disable (de-spawn) the effect.
timedecimalHow long it will take the parameters to reach the target values, in seconds. Defaults to 1.0.
nani
; Blur main background with default parameters.
@blur
; Remove blur from the main background.
@blur power:0

; Blur `Kohaku` actor with max power over 5 seconds.
@blur Kohaku power:1 time:5
; Remove blur from `Kohaku` over 3.1 seconds.
@blur Kohaku power:0 time:3.1

bokeh

Simulates depth of field (aka DOF, bokeh) effect, when only the object in focus stays sharp, while others are blurred.

ParameterTypeDescription
focusstringName of the game object to set focus for (optional). When set, the focus will always stay on the game object, while dist parameter will be ignored.
distdecimalDistance (in units) from Naninovel camera to the focus point. Ignored when focus parameter is specified. Defaults to 10.
powerdecimalAmount of blur to apply for the de-focused areas; also determines focus sensitivity. Defaults to 3.75. Set to 0 to disable (de-spawn) the effect.
timedecimalHow long it will take the parameters to reach the target values, in seconds. Defaults to 1.0.
nani
; Enable the effect with defaults and lock focus on `Kohaku` game object.
@bokeh focus:Kohaku
; Fade-off (disable) the effect over 10 seconds.
@bokeh power:0 time:10
; Set focus point 10 units away from the camera,
; focal distance to 0.95 and apply it over 3 seconds.
@bokeh dist:10 power:0.95 time:3

br

Adds a line break to a text printer.

NOTE

Consider using <br> tag instead with TMPro printers.

ParameterTypeDescription
countintegerNumber of line breaks to add.
printerstringID of the printer actor to use. Will use a default one when not provided.
authorstringID of the actor, which should be associated with the appended line break.
nani
; Second sentence will be printed on a new line.
Lorem ipsum dolor sit amet.[br]Consectetur adipiscing elit.

; Second sentence will be printer two lines under the first one.
Lorem ipsum dolor sit amet.[br 2]Consectetur adipiscing elit.

camera

Modifies the main camera, changing offset, zoom level and rotation over time. Check this video ↗ for a quick demonstration of the command effect.

ParameterTypeDescription
offsetdecimal listLocal camera position offset in units by X,Y,Z axes.
rolldecimalLocal camera rotation by Z-axis in angle degrees (0.0 to 360.0 or -180.0 to 180.0). The same as third component of rotation parameter; ignored when rotation is specified.
rotationdecimal listLocal camera rotation over X,Y,Z-axes in angle degrees (0.0 to 360.0 or -180.0 to 180.0).
zoomdecimalRelative camera zoom (orthographic size or field of view, depending on the render mode), in 0.0 (no zoom) to 1.0 (full zoom) range.
orthobooleanWhether the camera should render in orthographic (true) or perspective (false) mode.
togglestring listNames of the components to toggle (enable if disabled and vice-versa). The components should be attached to the same game object as the camera. This can be used to toggle custom post-processing effects. Use * to affect all the components attached to the camera object.
setnamed boolean listNames of the components to enable or disable. The components should be attached to the same game object as the camera. This can be used to explicitly enable or disable custom post-processing effects. Specified components enabled state will override effect of toggle parameter. Use * to affect all the components attached to the camera object.
easingstringName of the easing function to use for the modification.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the camera configuration settings.
timedecimalDuration (in seconds) of the modification.
nani
; Offset the camera by -3 units over X-axis and by 1.5 units Y-axis.
@camera offset:-3,1.5

; Set camera in perspective mode, zoom-in by 50% and move back by 5 units.
@camera ortho:false offset:,,-5 zoom:0.5

; Set camera in orthographic mode and roll by 10 degrees clock-wise.
@camera ortho:true roll:10

; Offset, zoom and roll simultaneously animated over 5 seconds.
@camera offset:-3,1.5 zoom:0.5 roll:10 time:5

; Instantly reset camera to the default state.
@camera offset:0,0 zoom:0 rotation:0,0,0 time:0

; Toggle `FancyCameraFilter` and `Bloom` components attached to the camera.
@camera toggle:FancyCameraFilter,Bloom

; Set `FancyCameraFilter` component enabled and `Bloom` disabled.
@camera set:FancyCameraFilter.true,Bloom.false

; Disable all components attached to the camera object.
@camera set:*.false

char

Modifies a character actor.

ParameterTypeDescription
idAndAppearancenamed stringID of the character to modify (specify * to affect all visible characters) and an appearance (or pose) to set. When appearance is not provided, will use either a Default (is exists) or a random one.
lookstringLook direction of the actor; supported values: left, right, center.
avatarstringName (path) of the avatar texture to assign for the character. Use none to remove (un-assign) avatar texture from the character.
posdecimal listPosition (relative to the scene borders, in percents) to set for the modified actor. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
idstringID of the actor to modify; specify * to affect all visible actors.
appearancestringAppearance to set for the modified actor.
posestringPose to set for the modified actor.
transitionstringType of the transition effect to use (crossfade is used by default).
paramsdecimal listParameters of the transition effect.
dissolvestringPath to the custom dissolve texture (path should be relative to a Resources folder). Has effect only when the transition is set to Custom mode.
visiblebooleanVisibility status to set for the modified actor.
positiondecimal listPosition (in world space) to set for the modified actor. Use Z-component (third member) to move (sort) by depth while in ortho mode.
rotationdecimal listRotation to set for the modified actor.
scaledecimal listScale to set for the modified actor.
tintstringTint color to set for the modified actor.

Strings that begin with # will be parsed as hexadecimal in the following way: #RGB (becomes RRGGBB), #RRGGBB, #RGBA (becomes RRGGBBAA), #RRGGBBAA; when alpha is not specified will default to FF.

Strings that do not begin with # will be parsed as literal colors, with the following supported: red, cyan, blue, darkblue, lightblue, purple, yellow, lime, fuchsia, white, silver, grey, black, orange, brown, maroon, green, olive, navy, teal, aqua, magenta.
easingstringName of the easing function to use for the modification.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the actor's manager configuration settings.
timedecimalDuration (in seconds) of the modification.
nani
; Shows character with ID `Sora` with a default appearance.
@char Sora

; Same as above, but sets appearance to `Happy`.
@char Sora.Happy

; Same as above, but additionally positions the character 45% away
; from the left border of the scene and 10% away from the bottom border;
; also makes it look to the left.
@char Sora.Happy look:left pos:45,10

; Make Sora appear at the bottom-center and in front of Felix.
@char Sora pos:50,0,-1
@char Felix pos:,,0

; Tint all visible characters on scene.
@char * tint:#ffdc22

choice

Adds a choice option to a choice handler with the specified ID (or default one).

NOTE

When goto, gosub and do parameters are not specified, will continue script execution from the next script line.

ParameterTypeDescription
choiceSummarystringText to show for the choice. When the text contain spaces, wrap it in double quotes ("). In case you wish to include the double quotes in the text itself, escape them.
buttonstringPath (relative to a Resources folder) to a button prefab representing the choice. The prefab should have a ChoiceHandlerButton component attached to the root object. Will use a default button when not provided.
posdecimal listLocal position of the choice button inside the choice handler (if supported by the handler implementation).
handlerstringID of the choice handler to add choice for. Will use a default handler if not provided.
gotonamed stringPath to go when the choice is selected by user; see @goto command for the path format.
gosubnamed stringPath to a subroutine to go when the choice is selected by user; see @gosub command for the path format. When goto is assigned this parameter will be ignored.
setstringSet expression to execute when the choice is selected by user; see @set command for syntax reference.
dostring listScript commands to execute when the choice is selected by user. Escape commas inside list values to prevent them being treated as delimiters. The commands will be invoked in order after set, goto and gosub are handled (if assigned).
playbooleanWhether to automatically continue playing script from the next line, when neither goto nor gosub parameters are specified. Has no effect in case the script is already playing when the choice is processed.
showbooleanWhether to also show choice handler the choice is added for; enabled by default.
timedecimalDuration (in seconds) of the fade-in (reveal) animation.
nani
; Print the text, then immediately show choices and stop script execution.
Continue executing this script or ...?[skipInput]
@choice "Continue"
@choice "Load another script from start" goto:Another
@choice "Load another script from \"Label\" label" goto:Another.Label
@choice "Goto to \"Sub\" subroutine in another script" gosub:Another.Sub
@stop

; You can also set custom variables based on choices.
@choice "I'm humble, one is enough..." set:score++
@choice "Two, please." set:score=score+2
@choice "I'll take the entire stock!" set:karma--;score=999

; Play a sound effect and arrange characters when choice is picked.
@choice Arrange do:"@sfx Click, @arrange k.10\,y.55"

; Print a text line corresponding to the picked choice.
@choice "Ask about color" do:"What's your favorite color?"
@choice "Ask about age" do:"How old are you?"
@choice "Keep silent" do:"..."
@stop

clearBacklog

Removes all the messages from printer backlog.

nani
; Printed text will be removed from the backlog.
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
@clearBacklog

clearChoice

Removes all the choice options in the choice handler with the provided ID (or in default one, when ID is not specified; or in all the existing handlers, when * is specified as ID) and (optionally) hides it (them).

ParameterTypeDescription
handlerIdstringID of the choice handler to clear. Will use a default handler if not provided. Specify * to clear all the existing handlers.
hidebooleanWhether to also hide the affected choice handlers.
nani
; Give the player 2 seconds to pick a choice.
# Start
You have 2 seconds to respond![skipInput]
@choice Cats goto:.PickedChoice
@choice Dogs goto:.PickedChoice
@wait 2
@clearChoice
Too late!
@stop
# PickedChoice
Good!

despawn

Destroys an object spawned with @spawn command.

NOTE

If prefab has a MonoBehaviour component attached the root object, and the component implements a IParameterized interface, will pass the specified params values before destroying the object; if the component implements IAwaitable interface, command execution will wait for the async completion task returned by the implementation before destroying the object.

ParameterTypeDescription
pathstringName (path) of the prefab resource to destroy. A @spawn command with the same parameter is expected to be executed before.
paramsstring listParameters to set before destroying the prefab. Requires the prefab to have a IParameterized component attached the root object.
nani
; Given `@spawn Rainbow` command was executed before, de-spawn (destroy) it.
@despawn Rainbow

despawnAll

Destroys all the objects spawned with @spawn command. Equal to invoking @despawn for all the currently spawned objects.

nani
@spawn Rainbow
@spawn SunShafts
; Will de-spawn (destroy) both rainbow and SunShafts.
@despawnAll

else

Marks a branch of a conditional execution block, which is always executed in case conditions of the opening @if and all the preceding @elseif (if any) commands are not met. For usage examples see conditional execution guide.

elseIf

Marks a branch of a conditional execution block, which is executed in case own condition is met (expression is evaluated to be true), while conditions of the opening @if and all the preceding @elseif (if any) commands are not met. For usage examples see conditional execution guide.

ParameterTypeDescription
expressionstringA script expression, which should return a boolean value.

endIf

Closes an @if conditional execution block. For usage examples see conditional execution guide.

finishTrans

Finishes scene transition started with @startTrans command; see the start command reference for more information and usage examples.

ParameterTypeDescription
transitionstringType of the transition effect to use (crossfade is used by default).
paramsdecimal listParameters of the transition effect.
dissolvestringPath to the custom dissolve texture (path should be relative to a Resources folder). Has effect only when the transition is set to Custom mode.
easingstringName of the easing function to use for the modification.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the actor's manager configuration settings.
timedecimalDuration (in seconds) of the transition.

glitch

Applies digital glitch post-processing effect to the main camera simulating digital video distortion and artifacts.

ParameterTypeDescription
timedecimalThe duration of the effect, in seconds; default is 1.
powerdecimalThe intensity of the effect, in 0.0 to 10.0 range; default is 1.
nani
; Apply the glitch effect with default parameters.
@glitch
; Apply the effect over 3.33 seconds with a low intensity.
@glitch time:3.33 power:0.1

gosub

Navigates naninovel script playback to the provided path and saves that path to global state; @return commands use this info to redirect to command after the last invoked gosub command.

NOTE

While this command can be used as a function (subroutine) to invoke a common set of script lines, remember that NaniScript is a scenario scripting DSL and is not suited for general programming. It's strongly recommended to use custom commands instead.

ParameterTypeDescription
pathnamed stringPath to navigate into in the following format: ScriptName.LabelName. When label name is omitted, will play provided script from the start. When script name is omitted, will attempt to find a label in the currently played script.
resetstring listWhen specified, will reset the engine services state before loading a script (in case the path is leading to another script). Specify * to reset all the services, or specify service names to exclude from reset. By default, the state does not reset.
nani
; Navigate to `VictoryScene` label in the currently played script, then
; execute the commands and navigate back to the command after the `gosub`.
@gosub .VictoryScene
...
@stop
# VictoryScene
@back Victory
@sfx Fireworks
@bgm Fanfares
You are victorious!
@return

; Another example with some branching inside the subroutine.
@set time=10
; Here we get one result.
@gosub .Room
...
@set time=3
; And here we get another.
@gosub .Room
@stop
# Room
@print "It's too early, I should visit after sunset." if:time<21&time>6
@print "I can sense an ominous presence!" if:time>21|time<6
@return

goto

Navigates naninovel script playback to the provided path.

ParameterTypeDescription
pathnamed stringPath to navigate into in the following format: ScriptName.LabelName. When label name is omitted, will play provided script from the start. When script name is omitted, will attempt to find a label in the currently played script.
resetstring listWhen specified, will control whether to reset the engine services state before loading a script (in case the path is leading to another script):
- Specify * to reset all the services, except the ones with Goto.DontReset attribute.
- Specify service type names (separated by comma) to exclude from reset; all the other services will be reset, including the ones with Goto.DontReset attribute.
- Specify - to force no reset (even if it's enabled by default in the configuration).

Notice, that while some services have Goto.DontReset attribute applied and are not reset by default, they should still be specified when excluding specific services from reset.
nani
; Loads and starts playing `Script001` script from the start.
@goto Script001

; Save as above, but start playing from the label `AfterStorm`.
@goto Script001.AfterStorm

; Navigates to `Epilogue` label in the currently played script.
@goto .Epilogue
...
# Epilogue
...

hide

Hides (removes) actors (character, background, text printer, choice handler) with the specified IDs. In case multiple actors with the same ID found (eg, a character and a printer), will affect only the first found one.

ParameterTypeDescription
actorIdsstring listIDs of the actors to hide.
timedecimalDuration (in seconds) of the fade animation.
removebooleanWhether to remove (destroy) the actor after it's hidden. Use to unload resources associated with the actor and prevent memory leaks.
nani
; Given an actor with ID `Smoke` is visible, hide it over 3 seconds.
@hide Smoke time:3

; Hide `Kohaku` and `Yuko` actors.
@hide Kohaku,Yuko

; Hide and remove `Kohaku` actor.
@hide Kohaku remove:true

hideAll

Hides (removes) all the actors (characters, backgrounds, text printers, choice handlers) on scene.

ParameterTypeDescription
timedecimalDuration (in seconds) of the fade animation.
removebooleanWhether to remove (destroy) the actors after they are hidden. Use to unload resources associated with the actors and prevent memory leaks.
nani
; Hide all the visible actors (chars, backs, printers, etc) on scene.
@hideAll

; Same as above, but also remove all the actors after they're hidden.
@hideAll remove:true

hideChars

Hides (removes) all the visible characters on scene.

ParameterTypeDescription
timedecimalDuration (in seconds) of the fade animation.
removebooleanWhether to remove (destroy) the characters after they are hidden. Use to unload resources associated with the characters and prevent memory leaks.
nani
; Hide all the visible character actors on scene.
@hideChars

hidePrinter

Hides a text printer.

ParameterTypeDescription
printerIdstringID of the printer actor to use. Will use a default one when not provided.
timedecimalDuration (in seconds) of the hide animation. Default value for each printer is set in the actor configuration.
nani
; Hide a default printer.
@hidePrinter

; Hide printer with ID `Wide`.
@hidePrinter Wide

hideUI

Makes UI elements with the specified names invisible. When no names are specified, will stop rendering (hide) the entire UI (including all the built-in UIs).

NOTE

When hiding the entire UI with this command and allowToggle parameter is false (default), user won't be able to re-show the UI back with hotkeys or by clicking anywhere on the screen; use @showUI command to make the UI visible again.

ParameterTypeDescription
uINamesstring listName of the UI elements to hide.
allowTogglebooleanWhen hiding the entire UI, controls whether to allow the user to re-show the UI with hotkeys or by clicking anywhere on the screen (false by default). Has no effect when hiding a particular UI.
timedecimalDuration (in seconds) of the hide animation. When not specified, will use UI-specific duration.
nani
; Given a custom `Calendar` UI, the following command will hide it.
@hideUI Calendar

; Hide the entire UI, won't allow user to re-show it.
@hideUI
...
; Make the UI visible again.
@showUI

; Hide the entire UI, but allow the user to toggle it back.
@hideUI allowToggle:true

; Simultaneously hide built-in `TipsUI` and custom `Calendar` UIs.
@hideUI TipsUI,Calendar

i

Holds script execution until user activates a continue input. Shortcut for @wait i.

nani
; User will have to activate a `continue` input after the first sentence
; for the printer to continue printing out the following text.
Lorem ipsum dolor sit amet.[i] Consectetur adipiscing elit.

if

Marks the beginning of a conditional execution block. Should always be closed with an @endif command. For usage examples see conditional execution guide.

ParameterTypeDescription
expressionstringA script expression, which should return a boolean value.

input

Shows an input field UI where user can enter an arbitrary text. Upon submit the entered text will be assigned to the specified custom variable.

NOTE

Check out this video guide ↗ on usage example.

To assign a display name for a character using this command consider binding the name to a custom variable.

ParameterTypeDescription
variableNamestringName of a custom variable to which the entered text will be assigned.
summarystringAn optional summary text to show along with input field. When the text contain spaces, wrap it in double quotes ("). In case you wish to include the double quotes in the text itself, escape them.
valuestringA predefined value to set for the input field.
playbooleanWhether to automatically resume script playback when user submits the input form.
nani
; Prompt to enter an arbitrary text and assign it to `name` custom variable.
@input name summary:"Choose your name."
; Halt the playback until player submits the input.
@stop

; You can then inject the assigned `name` variable in naninovel scripts.
Archibald: Greetings, {name}!

; ...or use it inside set and conditional expressions.
@set score=score+1 if:name=="Felix"

lipSync

Allows to force-stop the lip sync mouth animation for a character with the provided ID; when stopped, the animation won't start again, until this command is used again to allow it. The character should be able to receive the lip sync events (currently generic, layered and Live2D implementations only). See characters guide for more information on lip sync feature.

ParameterTypeDescription
charIdAndAllownamed booleanCharacter ID followed by a boolean (true or false) on whether to halt or allow the lip sync animation.
nani
; Given auto voicing is disabled and lip sync is driven by text messages,
; exclude punctuation from the mouth animation.
Kohaku: Lorem ipsum dolor sit amet[lipSync Kohaku.false]... [lipSync Kohaku.true]Consectetur adipiscing elit.

loadScene

Loads a Unity scene ↗ with the provided name. Don't forget to add the required scenes to the build settings ↗ to make them available for loading.

ParameterTypeDescription
sceneNamestringName of the scene to load.
additivebooleanWhether to load the scene additively, or unload any currently loaded scenes before loading the new one (default). See the load scene documentation ↗ for more information.
nani
; Load scene `TestScene1` in single mode.
@loadScene TestScene1

; Load scene `TestScene2` in additive mode.
@loadScene TestScene2 additive:true

lock

Sets an unlockable item with the provided ID to locked state.

NOTE

The unlocked state of the items is stored in global scope.
In case item with the provided ID is not registered in the global state map, the corresponding record will automatically be added.

ParameterTypeDescription
idstringID of the unlockable item. Use * to lock all the registered unlockable items.
nani
; Lock an unlockable CG record with ID `FightScene1`.
@lock CG/FightScene1

look

Activates/disables camera look mode, when player can offset the main camera with input devices (eg, by moving a mouse or using gamepad analog stick). Check this video ↗ for a quick demonstration of the command.

NOTE

It's also possible to control the look by rotating a mobile device (in case it has a gyroscope). This requires using Unity's new input system and manually enabling gyroscope ↗ device. Check out input example project ↗ for a reference on how to setup camera look with gyroscope.

ParameterTypeDescription
enablebooleanWhether to enable or disable the camera look mode. Default: true.
zonedecimal listA bound box with X,Y sizes in units from the initial camera position, describing how far the camera can be moved. Default: 5,3.
speeddecimal listCamera movement speed (sensitivity) by X,Y axes. Default: 1.5,1.
gravitybooleanWhether to automatically move camera to the initial position when the look input is not active (eg, mouse is not moving or analog stick is in default position). Default: false.
nani
; Activate camera look mode with default parameters.
@look

; Activate camera look mode with custom parameters.
@look zone:6.5,4 speed:3,2.5 gravity:true

; Disable look mode and instantly reset the offset.
@look false

; Disable look, but reset gradually, with 0.25 speed.
@look false gravity:true speed:0.25

movie

Plays a movie with the provided name (path).

NOTE

Will fade-out the screen before playing the movie and fade back in after the play. Playback can be canceled by activating a cancel input (Esc key by default).

ParameterTypeDescription
movieNamestringName of the movie resource to play.
timedecimalDuration (in seconds) of the fade animation. When not specified, will use fade duration set in the movie configuration.
nani
; Given an `Opening` video clip is added to the movie resources, plays it.
@movie Opening

openURL

Opens specified URL (web address) with default web browser.

NOTE

When outside of WebGL or in editor, Unity's Application.OpenURL method is used to handle the command; consult the documentation ↗ for behaviour details and limitations. Under WebGL native window.open() JS function is invoked: https://developer.mozilla.org/en-US/docs/Web/API/Window/open ↗.

ParameterTypeDescription
uRLstringURL to open.
targetstringBrowsing context: _self (current tab), _blank (new tab), _parent, _top.
nani
; Open blank page in the current tab.
@openURL "about:blank"

; Open Naninovel website in new tab.
@openURL "https://naninovel.com" target:_blank

print

Prints (reveals over time) specified text message using a text printer actor.

NOTE

This command is used under the hood when processing generic text lines, eg generic line Kohaku: Hello World! will be automatically transformed into @print "Hello World!" author:Kohaku when parsing the naninovel scripts.
Will reset (clear) the printer before printing the new message by default; set reset parameter to false or disable Auto Reset in the printer actor configuration to prevent that and append the text instead.
Will make the printer default and hide other printers by default; set default parameter to false or disable Auto Default in the printer actor configuration to prevent that.
Will wait for user input before finishing the task by default; set waitInput parameter to false or disable Auto Wait in the printer actor configuration to return as soon as the text is fully revealed.

ParameterTypeDescription
textstringText of the message to print. When the text contain spaces, wrap it in double quotes ("). In case you wish to include the double quotes in the text itself, escape them.
printerstringID of the printer actor to use. Will use a default one when not provided.
authorstringID of the actor, which should be associated with the printed message.
speeddecimalText reveal speed multiplier; should be positive or zero. Setting to one will yield the default speed.
resetbooleanWhether to reset text of the printer before executing the printing task. Default value is controlled via Auto Reset property in the printer actor configuration menu.
defaultbooleanWhether to make the printer default and hide other printers before executing the printing task. Default value is controlled via Auto Default property in the printer actor configuration menu.
waitInputbooleanWhether to wait for user input after finishing the printing task. Default value is controlled via Auto Wait property in the printer actor configuration menu.
brintegerNumber of line breaks to prepend before the printed text. Default value is controlled via Auto Line Break property in the printer actor configuration menu.
fadeTimedecimalControls duration (in seconds) of the printers show and hide animations associated with this command. Default value for each printer is set in the actor configuration.
nani
; Will print the phrase with a default printer.
@print "Lorem ipsum dolor sit amet."

; To include quotes in the text itself, escape them.
@print "Shouting \"Stop the car!\" was a mistake."

; Reveal message with half of the normal speed and
; don't wait for user input to continue.
@print "Lorem ipsum dolor sit amet." speed:0.5 waitInput:false

printer

Modifies a text printer actor.

ParameterTypeDescription
idAndAppearancenamed stringID of the printer to modify and the appearance to set. When ID or appearance are not provided, will use default ones.
defaultbooleanWhether to make the printer the default one. Default printer will be subject of all the printer-related commands when printer parameter is not specified.
hideOtherbooleanWhether to hide all the other printers.
posdecimal listPosition (relative to the scene borders, in percents) to set for the modified actor. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
idstringID of the actor to modify; specify * to affect all visible actors.
appearancestringAppearance to set for the modified actor.
posestringPose to set for the modified actor.
transitionstringType of the transition effect to use (crossfade is used by default).
paramsdecimal listParameters of the transition effect.
dissolvestringPath to the custom dissolve texture (path should be relative to a Resources folder). Has effect only when the transition is set to Custom mode.
visiblebooleanVisibility status to set for the modified actor.
positiondecimal listPosition (in world space) to set for the modified actor. Use Z-component (third member) to move (sort) by depth while in ortho mode.
rotationdecimal listRotation to set for the modified actor.
scaledecimal listScale to set for the modified actor.
tintstringTint color to set for the modified actor.

Strings that begin with # will be parsed as hexadecimal in the following way: #RGB (becomes RRGGBB), #RRGGBB, #RGBA (becomes RRGGBBAA), #RRGGBBAA; when alpha is not specified will default to FF.

Strings that do not begin with # will be parsed as literal colors, with the following supported: red, cyan, blue, darkblue, lightblue, purple, yellow, lime, fuchsia, white, silver, grey, black, orange, brown, maroon, green, olive, navy, teal, aqua, magenta.
easingstringName of the easing function to use for the modification.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the actor's manager configuration settings.
timedecimalDuration (in seconds) of the modification.
nani
; Will make `Wide` printer default and hide any other visible printers.
@printer Wide

; Will assign `Right` appearance to `Bubble` printer, make is default,
; position at the center of the scene and won't hide other printers.
@printer Bubble.Right pos:50,50 hideOther:false

processInput

Allows halting and resuming user input processing (eg, reacting to pressing keyboard keys). The effect of the action is persistent and saved with the game.

ParameterTypeDescription
inputEnabledbooleanWhether to enable input processing of all the samplers.
setnamed boolean listAllows muting and un-muting individual input samplers.
nani
; Halt input processing of all the samplers.
@processInput false

; Resume input processing of all the samplers.
@processInput true

; Mute `Rollback` and `Pause` inputs and un-mute `Continue` input.
@processInput set:Rollback.false,Pause.false,Continue.true

purgeRollback

Prevents player from rolling back to the previous state snapshots.

nani
; Prevent player from rolling back to try picking another choice.

Pick a choice. You won't be able to rollback.
@choice One goto:.One
@choice Two goto:.Two
@stop

# One
@purgeRollback
You've picked one.
@stop

# Two
@purgeRollback
You've picked two.
@stop

rain

Spawns particle system simulating rain.

ParameterTypeDescription
powerdecimalThe intensity of the rain (particles spawn rate per second); defaults to 500. Set to 0 to disable (de-spawn) the effect.
timedecimalThe particle system will gradually grow the spawn rate to the target level over the specified time, in seconds.
xSpeeddecimalMultiplier to the horizontal speed of the particles. Use to change angle of the rain drops.
ySpeeddecimalMultiplier to the vertical speed of the particles.
posdecimal listPosition (relative to the scene borders, in percents) to set for the spawned effect game object. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
positiondecimal listPosition (in world space) to set for the spawned effect game object.
rotationdecimal listRotation to set for the spawned effect game object.
scaledecimal listScale to set for the spawned effect game object.
nani
; Start intensive rain over 10 seconds.
@rain power:1500 time:10
; Stop the rain over 30 seconds.
@rain power:0 time:30

resetState

Resets state of the engine services and unloads (disposes) all the resources loaded by Naninovel (textures, audio, video, etc); will basically revert to an empty initial engine state.

NOTE

The process is asynchronous and is masked with a loading screen (ILoadingUI).

Be aware, that this command can not be undone (rewound back).

ParameterTypeDescription
excludestring listNames of the engine services (interfaces) to exclude from reset. Consider adding ICustomVariableManager to preserve the local variables.
onlystring listNames of the engine services (interfaces) to reset; other services won't be affected. Doesn't have effect when the nameless (exclude) parameter is assigned.
nani
; Reset all the services (script will stop playing).
@resetState

; Reset all the services except script player, custom variable and
; audio managers, allowing current script and audio tracks
; continue playing and preserving values of the custom variables.
@resetState IScriptPlayer,ICustomVariableManager,IAudioManager

; Reset only `ICharacterManager` and `IBackgroundManager` services
; removing all the character and background actors from scene
; and unloading associated resources from memory.
@resetState only:ICharacterManager,IBackgroundManager

resetText

Resets (clears) the contents of a text printer and optionally resets author ID.

ParameterTypeDescription
printerIdstringID of the printer actor to use. Will use a default one when not provided.
resetAuthorbooleanWhether to also reset author of the currently printed text message.
nani
; Print and then clear contents of the default printer.
This line will disappear.
@resetText

; Same as above, but with `Wide` printer.
@print "This line will disappear." printer:Wide
@resetText Wide

return

Attempts to navigate naninovel script playback to a command after the last used @gosub. See @gosub command summary for more info and usage examples.

ParameterTypeDescription
resetstring listWhen specified, will reset the engine services state before returning to the initial script from which the gosub was entered (in case it's not the currently played script). Specify * to reset all the services, or specify service names to exclude from reset. By default, the state does not reset.

save

Automatically save the game to a quick save slot.

set

Assigns result of a script expression to a custom variable.

NOTE

If a variable with the provided name doesn't exist, it will be automatically created.

It's possible to define multiple set expressions in one line by separating them with ;. The expressions will be executed in sequence by the order of declaration.

In case variable name starts with T_ or t_ it's considered a reference to a value stored in 'Script' managed text document. Such variables can't be assigned and mostly used for referencing localizable text values.

ParameterTypeDescription
expressionstringSet expression.

The expression should be in the following format: VariableName=ExpressionBody, where VariableName is the name of the custom variable to assign and ExpressionBody is a script expression, the result of which should be assigned to the variable.

It's also possible to use increment and decrement unary operators (@set foo++, @set foo--) and compound assignment (@set foo+=10, @set foo-=3, @set foo*=0.1, @set foo/=2).
nani
; Assign `foo` variable a `bar` string value.
@set foo="bar"

; Assign `foo` variable a 1 number value.
@set foo=1

; Assign `foo` variable a `true` boolean value.
@set foo=true

; If `foo` is a number, add 0.5 to its value.
@set foo+=0.5

; If `angle` is a number, assign its cosine to `foo` variable.
@set foo=Cos(angle)

; Get random number between -100 and 100, then raise to power of 4
; and assign to `foo` variable. Quotes are required when whitespace
; is present inside the expression.
@set "foo = Pow(Random(-100, 100), 4)"

; If `foo` is a number, add 1 to its value (increment).
@set foo++

; If `foo` is a number, subtract 1 from its value (decrement).
@set foo--

; Assign `foo` variable value of the `bar` variable,
; which is `Hello World!` string.
@set bar="Hello World!"
@set foo=bar

; Defining multiple set expressions in one line;
; the result will be the same as above.
@set bar="Hello World!";foo=bar

; It's possible to inject variables to naninovel script command parameters.
@set scale=0
# EnlargeLoop
@char Kohaku.Default scale:{scale}
@set scale+=0.1
@goto .EnlargeLoop if:scale<1

; ...and generic text lines.
@set drink="Dr. Pepper"
My favourite drink is {drink}!

; When using double quotes inside text expression value, escape them.
@set remark="Shouting \"Stop the car!\" was a mistake."

; Use global variable to indicate player reaching `Ending 001`.
; The variable will remain true even when the game is restarted.
@set g_Ending001Reached=true

; Increment the global variable only once, even when re-played.
@set g_GlobalCounter++ if:!HasPlayed()

sfx

Plays or modifies currently played SFX (sound effect) track with the provided name.

NOTE

Sound effect tracks are not looped by default. When sfx track name (SfxPath) is not specified, will affect all the currently played tracks. When invoked for a track that is already playing, the playback won't be affected (track won't start playing from the start), but the specified parameters (volume and whether the track is looped) will be applied.

ParameterTypeDescription
sfxPathstringPath to the sound effect asset to play.
volumedecimalVolume of the sound effect.
loopbooleanWhether to play the sound effect in a loop.
fadedecimalDuration of the volume fade-in when starting playback, in seconds (0.0 by default); doesn't have effect when modifying a playing track.
groupstringAudio mixer group path ↗ that should be used when playing the audio.
timedecimalDuration (in seconds) of the modification.
nani
; Plays an SFX with the name `Explosion` once.
@sfx Explosion

; Plays an SFX with the name `Rain` in a loop and fades-in over 30 seconds.
@sfx Rain loop:true fade:30

; Changes volume of all the played SFX tracks to 75% over 2.5 seconds
; and disables looping for all of them.
@sfx volume:0.75 loop:false time:2.5

sfxFast

Plays an SFX (sound effect) track with the provided name. Unlike @sfx command, the clip is played with minimum delay and is not serialized with the game state (won't be played after loading a game, even if it was played when saved). The command can be used to play various transient audio clips, such as UI-related sounds (eg, on button click with Play Script component).

ParameterTypeDescription
sfxPathstringPath to the sound effect asset to play.
volumedecimalVolume of the sound effect.
restartbooleanWhether to start playing the audio from start in case it's already playing.
additivebooleanWhether to allow playing multiple instances of the same clip; has no effect when restart is enabled.
groupstringAudio mixer group path ↗ that should be used when playing the audio.
nani
; Plays an SFX with the name `Click` once.
@sfxFast Click

; Same as above, but allow concurrent playbacks of the same clip.
@sfxFast Click restart:false

shake

Applies shake effect for the actor with the specified ID or main camera.

ParameterTypeDescription
actorIdstringID of the actor to shake. In case multiple actors with the same ID found (eg, a character and a printer), will affect only the first found one. To shake main camera, use "Camera" keyword.
countintegerThe number of shake iterations. When set to 0, will loop until stopped with -1.
timedecimalThe base duration of each shake iteration, in seconds.
deltaTimedecimalThe randomizer modifier applied to the base duration of the effect.
powerdecimalThe base displacement amplitude of each shake iteration, in units.
deltaPowerdecimalThe randomized modifier applied to the base displacement amplitude.
horbooleanWhether to displace the actor horizontally (by x-axis).
verbooleanWhether to displace the actor vertically (by y-axis).
nani
; Shake `Dialogue` text printer with default params.
@shake Dialogue
;
; Start shaking `Kohaku` character, show choice to stop and act accordingly.
@shake Kohaku count:0 wait:false
@choice "Continue shaking" goto:.Continue
@choice "Stop shaking" goto:.Stop
@stop
# Stop
@shake Kohaku count:-1
# Continue
...

; Shake main Naninovel camera horizontally 5 times.
@shake Camera count:5 hor:true ver:false

show

Shows (makes visible) actors (character, background, text printer, choice handler, etc) with the specified IDs. In case multiple actors with the same ID found (eg, a character and a printer), will affect only the first found one.

ParameterTypeDescription
actorIdsstring listIDs of the actors to show.
timedecimalDuration (in seconds) of the fade animation.
nani
; Given an actor with ID `Smoke` is hidden, reveal it over 3 seconds.
@show Smoke time:3

; Show `Kohaku` and `Yuko` actors.
@show Kohaku,Yuko

showPrinter

Shows a text printer.

ParameterTypeDescription
printerIdstringID of the printer actor to use. Will use a default one when not provided.
timedecimalDuration (in seconds) of the show animation. Default value for each printer is set in the actor configuration.
nani
; Show a default printer.
@showPrinter

; Show printer with ID `Wide`.
@showPrinter Wide

showUI

Makes UI elements with the specified resource names visible. When no names are specified, will reveal the entire UI (in case it was hidden with @hideUI).

ParameterTypeDescription
uINamesstring listName of the UI resource to make visible.
timedecimalDuration (in seconds) of the show animation. When not specified, will use UI-specific duration.
nani
; Given you've added a custom UI with `Calendar` name,
; the following will make it visible on the scene.
@showUI Calendar

; Given you've hidden the entire UI with @hideUI, show it back.
@showUI

; Simultaneously reveal built-in `TipsUI` and custom `Calendar` UIs.
@showUI TipsUI,Calendar

skip

Allows to enable or disable script player "skip" mode.

ParameterTypeDescription
enablebooleanWhether to enable (default) or disable the skip mode.
nani
; Enable skip mode.
@skip

; Disable skip mode.
@skip false

skipInput

Can be used in generic text lines to prevent activating wait for input mode when the text is printed.

nani
; Script player won't wait for continue input before executing @sfx command.
And the rain starts.[skipInput]
@sfx Rain

slide

Slides (moves between two positions) an actor (character, background, text printer or choice handler) with the provided ID and optionally changes actor visibility and appearance. Can be used instead of multiple @char or @back commands to reveal or hide an actor with a slide animation.

NOTE

Be aware, that this command searches for an existing actor with the provided ID over all the actor managers, and in case multiple actors with the same ID exist (eg, a character and a text printer), this will affect only the first found one. Make sure the actor exist on scene before referencing it with this command; eg, if it's a character, you can add it on scene imperceptibly to player with @char CharID visible:false time:0.

ParameterTypeDescription
idAndAppearancenamed stringID of the actor to slide and (optionally) appearance to set.
fromdecimal listPosition in scene space to slide the actor from (slide start position). Described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene; Z-component (depth) is in world space. When not provided, will use current actor position in case it's visible and a random off-scene position otherwise (could slide-in from left or right borders).
todecimal listPosition in scene space to slide the actor to (slide finish position).
visiblebooleanChange visibility status of the actor (show or hide). When not set and target actor is hidden, will still automatically show it.
easingstringName of the easing function to use for the modifications.

Available options: Linear, SmoothStep, Spring, EaseInQuad, EaseOutQuad, EaseInOutQuad, EaseInCubic, EaseOutCubic, EaseInOutCubic, EaseInQuart, EaseOutQuart, EaseInOutQuart, EaseInQuint, EaseOutQuint, EaseInOutQuint, EaseInSine, EaseOutSine, EaseInOutSine, EaseInExpo, EaseOutExpo, EaseInOutExpo, EaseInCirc, EaseOutCirc, EaseInOutCirc, EaseInBounce, EaseOutBounce, EaseInOutBounce, EaseInBack, EaseOutBack, EaseInOutBack, EaseInElastic, EaseOutElastic, EaseInOutElastic.

When not specified, will use a default easing function set in the actor's manager configuration settings.
timedecimalDuration (in seconds) of the slide animation.
nani
; Given `Jenna` actor is not visible, reveal it with an `Angry` appearance
; and slide to the center from either left or right border of the scene.
@slide Jenna.Angry to:50

; Given `Sheba` actor is currently visible,
; hide and slide it out of the scene over the left border.
@slide Sheba to:-10 visible:false


; Slide `Mia` actor from left-center side of the scene to the right-bottom
; over 5 seconds using `EaseOutBounce` animation easing.
@slide Sheba from:15,50 to:85,0 time:5 easing:EaseOutBounce

snow

Spawns particle system simulating snow.

ParameterTypeDescription
powerdecimalThe intensity of the snow (particles spawn rate per second); defaults to 100. Set to 0 to disable (de-spawn) the effect.
timedecimalThe particle system will gradually grow the spawn rate to the target level over the specified time, in seconds.
posdecimal listPosition (relative to the scene borders, in percents) to set for the spawned effect game object. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
positiondecimal listPosition (in world space) to set for the spawned effect game object.
rotationdecimal listRotation to set for the spawned effect game object.
scaledecimal listScale to set for the spawned effect game object.
nani
; Start intensive snow over 10 seconds.
@snow power:300 time:10
; Stop the snow over 30 seconds.
@snow power:0 time:30

spawn

Instantiates a prefab or a special effect; when performed over an already spawned object, will update the spawn parameters instead.

NOTE

If prefab has a MonoBehaviour component attached the root object, and the component implements a IParameterized interface, will pass the specified params values after the spawn; if the component implements IAwaitable interface, command execution will wait for the async completion task returned by the implementation.

ParameterTypeDescription
pathstringName (path) of the prefab resource to spawn.
paramsstring listParameters to set when spawning the prefab. Requires the prefab to have a IParameterized component attached the root object.
posdecimal listPosition (relative to the scene borders, in percents) to set for the spawned object. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
positiondecimal listPosition (in world space) to set for the spawned object.
rotationdecimal listRotation to set for the spawned object.
scaledecimal listScale to set for the spawned object.
nani
; Given a `Rainbow` prefab is assigned in spawn resources, instantiate it.
@spawn Rainbow

startTrans

Begins scene transition masking the real scene content with anything that is visible at the moment (except the UI). When the new scene is ready, finish with @finishTrans command.

NOTE

The UI will be hidden and user input blocked while the transition is in progress. You can change that by overriding the ISceneTransitionUI, which handles the transition process.

For the list of available transition effect options see transition effects guide.

nani
; Transition Felix on sunny day with Jenna on rainy day.
@char Felix
@back SunnyDay
@spawn SunShafts
@startTrans
; Following modifications won't be visible until the transition is finished.
@hideChars time:0
@char Jenna time:0
@back RainyDay time:0
@despawn SunShafts params:0
@spawn Rain params:,0
; Transition the initially captured scene to the new one
; with `DropFade` effect over 3 seconds.
@finishTrans DropFade time:3

stop

Stops the naninovel script execution.

nani
Show the choices and halt script execution until the player picks one.
@choice "Choice 1"
@choice "Choice 2"
@stop
We'll get here after player will make a choice.

stopBgm

Stops playing a BGM (background music) track with the provided name.

NOTE

When music track name (BgmPath) is not specified, will stop all the currently played tracks.

ParameterTypeDescription
bgmPathstringPath to the music track to stop.
fadedecimalDuration of the volume fade-out before stopping playback, in seconds (0.35 by default).
nani
; Fades-out `Sanctuary` bgm track over 10 seconds and stops the playback.
@stopBgm Sanctuary fade:10

; Stops all the currently played music tracks.
@stopBgm

stopSfx

Stops playing an SFX (sound effect) track with the provided name.

NOTE

When sound effect track name (SfxPath) is not specified, will stop all the currently played tracks.

ParameterTypeDescription
sfxPathstringPath to the sound effect to stop.
fadedecimalDuration of the volume fade-out before stopping playback, in seconds (0.35 by default).
nani
; Stop playing an SFX with the name `Rain`, fading-out for 15 seconds.
@stopSfx Rain fade:15

; Stops all the currently played sound effect tracks.
@stopSfx

stopVoice

Stops playback of the currently played voice clip.

nani
; Given a voice is being played, stop it.
@stopVoice

style

Permanently applies text styles to the contents of a text printer.

NOTE

You can also use rich text tags inside text messages to apply the styles selectively.

ParameterTypeDescription
textStylesstring listText formatting tags to apply. Angle brackets should be omitted, eg use b for <b> and size=100 for <size=100>. Use default keyword to reset the style.
printerstringID of the printer actor to use. Will use a default one when not provided.
nani
; Print first two sentences in bold red text with 45px size,
; then reset the style and print the last sentence using default style.
@style color=#ff0000,b,size=45
Lorem ipsum dolor sit amet.
Cras ut nisi eget ex viverra egestas in nec magna.
@style default
Consectetur adipiscing elit.

; Print starting part of the sentence normally, but the last one in bold.
Lorem ipsum sit amet. <b>Consectetur adipiscing elit.</b>

sun

Spawns particle system simulating sun shafts aka god rays.

ParameterTypeDescription
powerdecimalThe intensity of the rays (opacity), in 0.0 to 1.0 range; default is 0.85. Set to 0 to disable (de-spawn) the effect.
timedecimalThe particle system will gradually grow the spawn rate to the target level over the specified time, in seconds.
posdecimal listPosition (relative to the scene borders, in percents) to set for the spawned effect game object. Position is described as follows: 0,0 is the bottom left, 50,50 is the center and 100,100 is the top right corner of the scene. Use Z-component (third member, eg ,,10) to move (sort) by depth while in ortho mode.
positiondecimal listPosition (in world space) to set for the spawned effect game object.
rotationdecimal listRotation to set for the spawned effect game object.
scaledecimal listScale to set for the spawned effect game object.
nani
; Start intensive sunshine over 10 seconds.
@sun power:1 time:10
; Stop the sunshine over 30 seconds.
@sun power:0 time:30

title

Resets engine state and shows ITitleUI UI (main menu).

nani
; Exit to title UI, no matter which script is playing.
@title

toast

Shows a UI for general-purpose self-hiding popup notification (aka "toast") with the provided text and (optionally) appearance and duration. The UI is automatically hidden after the specified (or default) duration.

NOTE

Appearance name is the name of a game object with Toast Appearance component inside the ToastUI UI prefab (case-insensitive).

ParameterTypeDescription
textstringThe text content to set for the toast.
appearancestringAppearance variant (game object name) of the toast. When not specified, will use default appearance set in Toast UI prefab.
timedecimalSeconds to wait before hiding the toast. When not specified, will use duration set by default in Toast UI prefab.
nani
; Shows a default toast with `Hello World!` content.
@toast "Hello World!"

; Shows a toast with a `warning` appearance.
@toast "You're in danger!" appearance:warning

; The toast will disappear in one second.
@toast "I'll disappear in 1 second." time:1

unloadScene

Unloads a Unity scene ↗ with the provided name. Don't forget to add the required scenes to the build settings ↗ to make them available for loading. Be aware, that only scenes loaded additively can be then unloaded (at least one scene should always remain loaded).

ParameterTypeDescription
sceneNamestringName of the scene to unload.
nani
; Load scene `TestScene2` in additive mode and then unload it.
@loadScene TestScene2 additive:true
@unloadScene TestScene2

unlock

Sets an unlockable item with the provided ID to unlocked state.

NOTE

The unlocked state of the items is stored in global scope.
In case item with the provided ID is not registered in the global state map, the corresponding record will automatically be added.

ParameterTypeDescription
idstringID of the unlockable item. Use * to unlock all the registered unlockable items.
nani
; Unlocks an unlockable CG record with ID `FightScene1`.
@unlock CG/FightScene1

voice

Plays a voice clip at the provided path.

ParameterTypeDescription
voicePathstringPath to the voice clip to play.
volumedecimalVolume of the playback.
groupstringAudio mixer group path ↗ that should be used when playing the audio.
authorIdstringID of the character actor this voice belongs to. When provided and per-author volume is used, volume will be adjusted accordingly.
nani
; Given a `Rawr` voice resource is available, play it.
@voice Rawr

wait

Holds script execution until the specified wait condition.

ParameterTypeDescription
waitModestringWait conditions:
- i user press continue or skip input key;
- 0.0 timer (seconds);
- i0.0 timer, that is skip-able by continue or skip input keys.
dostring listScript commands to execute when the wait is over. Escape commas inside list values to prevent them being treated as delimiters.
nani
; Thunder SFX will play 0.5 seconds after shake background effect finishes.
@spawn ShakeBackground
@wait 0.5
@sfx Thunder

; Print first 2 words, then wait for input before printing the rest.
Lorem ipsum[wait i] dolor sit amet.
; You can also use the following shortcut (@i command) for this wait mode.
Lorem ipsum[i] dolor sit amet.

; Start looped SFX, print message and wait for a skippable 5 seconds delay,
; then stop the SFX.
@sfx Noise loop:true
Jeez, what a disgusting noise. Shut it down![wait i5][skipInput]
@stopSfx Noise

; The text is printed without delay, as the `wait` command is not awaited.
; The thunder effects are played after a random delay of 3 to 8 seconds.
@wait {Random(3,8)} do:"@sfx Thunder, @shake Camera" wait:false
The thunder might go off any second...