# Text Printers

Text printers are actors used to present text messages, that can be revealed (printed) over time.

Printers' behavior can be configured using Naninovel -> Configuration -> Printers context menu; for available options see configuration guide. The printers' resources manager can be accessed using Naninovel -> Resources -> Printers context menu.

In naninovel scripts, text printers are mostly controlled with @print and @printer commands:

; Will make the `Dialogue` printer default
@printer Dialogue

; Will make the `Fullscreen` printer default
@printer Fullscreen

; Will print the phrase using a default printer
@print text:"Lorem ipsum dolor sit amet."

; The same as above, but using generic text statement
Lorem ipsum dolor sit amet.

; The same as above, but associated with character "Felix"
Felix: Lorem ipsum dolor sit amet.

Be aware, that even though the built-in printers are implemented as UIs, they're still actors and all the actor-related visibility changes (show/hide animations) use durations set either in the corresponding commands or actor configuration: eg, time parameter of @showPrinter command controls show animation duration and when it's not specified, Change Visibility Duration printer actor configuration property is used as a default duration; Fade Time property found on the root of the printer UI prefab is ignored in this case.

# Auto-Advance Text

Auto-advance feature allows to automatically continue script execution when handling i commands.

Wait for user input or "i" commands halt script execution until user activates a Continue input and are typically used after printing-out a text message. When in auto-advance mode, "i" commands will instead halt script execution for a period of time and then finish, allowing execution of the following command. Halt period depends on the length of the last printed text message and further modified by "Print speed" game setting.

Auto-advance mode can be toggled using AutoPlay input (A key by default for standalone input module) or "AUTO" button in the control panel.

# Text Skipping

Text skipping feature allows to fast-forward execution of the @print commands, effectively skipping text revealing (printing) process.

Skip mode can be toggled using Skip input (Ctrl key by default for standalone input module) or "SKIP" button in the control panel.

By default, skip mode is only available while executing commands that was already executed in the past; e.g. if the user hadn't already read the text that is going to be printed, skip mode won't be available. This can be changed in the game settings using "Skip mode" setting.

# Printer Backlog

Printer backlog is a feature allowing user to re-read previously printed text, revise selected choices, replay voiced lines and (optionally) rollback to the logged messages.

Backlog can be shown at any time during main game loop by activating ShowBacklog input (L key by default for standalone input module) or pressing "LOG" button in the control panel.

Various backlog UI properties are customizable via component attached to the root of the prefab; see tooltips of the properties for details on what each of them controls.

Consult built-in UI customization guide for more info now how to customize and configure the UI.

It's possible to prevent specific text printers from adding messages to the backlog by disabling Add To Backlog property in the printer actor configuration. When Split Backlog Messages property is enabled, all the messages added to the backlog will be split (displayed as separate records).

# Authored Template

It's possible to automate additional processing for text messages with an associated author (aka direct speech). The processing is configured individually for each text printer actor via Authored Template property.

You can specify any text formatting tags or characters and use %TEXT% to be replaced with the message text and %AUTHOR% with the author name (character display name). For example, consider the following template: “%TEXT%” — <i>%AUTHOR%</i> — it will wrap the printed message in quotes followed by a dash and author name in italics; for example, Kohaku: Lorem ipsum. processed with such template will result in:

# Dialogue Printer

Dialogue printers present text inside windows with a flexible height. They initially take about a third of the screen size and will increase the height when the content requires more space. Dialogue printers also expose associated character name in a label above the text window.

Dialogue Printer

# Wide Printer

Wide printers are very like dialogue printers, except for some changes in the panel layout tailored for wide displays. Wide printers also support character avatars feature.

Wide Printer

# Fullscreen Printer

Fullscreen printers present text inside windows with a static size. They take most of the screen size and are indented for presenting large amounts of text, aka "NVL" mode.

Fullscreen Printer

Fullscreen printers won't reset text by default on each consequent print command; instead, use @resetText command to clear contents of the printer when required. This can be changed by enabling Auto Reset in the printer actor configuration menu.

Each print command handled by a fullscreen printer will prepend 2 line breaks before the printed text by default (except when current content of the printer is empty). This can be disabled in the printer actor configuration menu by setting Auto Line Break to zero.

Below is an example on using fullscreen printer.

; Activate fullscreen printer.
@printer Fullscreen

; Following lines will be printed in the same window, separated by two line breaks.
Lorem ipsum dolor sit amet. Proin ultricies in leo id scelerisque. 
Praesent vel orci luctus, tincidunt nisi et, fringilla arcu. In a metus orci. 
Maecenas congue nunc quis lectus porttitor, eget commodo massa congue.

; Clear contents of the printer.
@resetText

; Print more lines.
Morbi ultrices dictum diam, in gravida neque vulputate in. 
...

# Chat Printer

Chat printer presents text inside message bubbles framed in a window with vertically-scrollable content, resembling a mobile messager app. Instead of revealing the printed message character by character, it shows "author is typing" animation for the duration of the reveal effect and then instantly shows the printed message. Chat printer supports character avatars feature.

Chat Printer

To embed choices inside the chat printer, see ChatReply choice handler. You can also specify custom handler via Choice Handler Id property found on Chat Printer Panel component.

# Bubble Printer

Bubble printers can be used for a manga/comic style of text presentation.

The built-in bubble printer supports two appearances: "Left" and "Right", which can be used to align the direction of the printer based on which side it's positioned relative to the character.

@printer Bubble.Left pos:42,80 visible:false time:0
@show Bubble wait:false
Misaki: Aliquam lobortis!
@char Nanikun.Happy wait:false
@printer Bubble.Right pos:53,55 visible:false time:0
@show Bubble wait:false
Nanikun: Integer nec maximus elit, eget posuere risus.

To display more than one bubble (or any other) printer at a time, add custom printers.

# Adding Custom Printers

You can add custom text printers based on the built-in templates or create new printers from scratch. For example, let's customize the built-in Dialogue template.

Use Create -> Naninovel -> Text Printers -> Dialogue asset context menu to create a dialogue prefab somewhere outside of the Naninovel package, e.g. at the Assets/TextPrinters folder.

Edit the prefab: change font, textures, add animations, etc. For more information on the available UI building tools consult Unity documentation for uGUI. There are also a couple of tutorial videos and an example project on working with uGUI in the UI customization guide.

Expose the prefab to engine resources using the printer's manager GUI, which can be accessed with Naninovel -> Resources -> Printers context menu. Add a new record using + (plus) button, enter actor ID (can differ from the prefab name) and double click the record to open actor settings. Drag-drop printer prefab to the Resource field.

You can now use the new text printer by activating it via @printer command and specifying actor ID you've set in the manager.

@printer MyNewPrinter

EXAMPLE

Check out demo project for an example on adding a custom printer. The prefab is stored as Assets/Prefabs/CustomPrinter.prefab.

It's also possible to create a printer from scratch by manually implementing ITextPrinterActor interface. See the guide on custom actor implementations for more information.

When modifying text component, be aware, that line hight less than 1.0 is not supported (rendered lines will overlap in this case, making it impossible to apply reveal effect). Consider editing the text font itself to reduce vertical clearing.

# Text Reveal Effect

By default, a gradient fade effect is applied when printing out the text messages. If, however, you prefer the more conventional "typewriter" style, you can disable the fade effect by disabling Slide Clip Rect and setting Reveal Fade Width property in Revealable Text component to zero. Revealable Text components are applied to the text objects in some of the built-in printers; eg, you can find it attached to Fullscreen/Content/Printer/Text game object of a Fullscreen printer prefab.

# Text Reveal Sounds

For the built-in printers, that support revealing effect (currently, Dialogue, Fullscreen and Wide) you can optionally set SFX to be played when the characters are revealed.

Follow the "Adding Custom Printers" guide above to create a custom printer based on any of the built-in ones, then find Revealable Text Printer Panel component attached to the root object of the prefab and use Reveal Sfx property to set the SFX to be played when a character is revealed. The actual list of the available options is based on the audio resources you've added via the Naninovel -> Resources -> Audio menu.

You can also use Chars SFX list property to map multiple SFXs to specific characters. The following illustration represents setup, where "Keystroke2" SFX will be played for spaces, "Explosion" for characters D, d, F, 1, 4, 9, and *, no SFX will be played for % character and "Keystroke1" will be played for all the other characters.

Alternatively, you can set Message Sound in the character configuration menus to play character-specific sounds when the text is revealed while that character is the author of the message (no matter which text printer is printing that message). In case both Message Sound of the message's author and Reveal Sfx of the default printer are assigned, Message Sound will be played instead of the printer's default Reveal SFX. Chars SFX, when configured, will always be played, no matter if Message Sound of the author is specified or not.

The text reveal sounds are played very often (depending on the message reveal speed) and are clipped when same sound is played in consequence, so make sure the corresponding audio clips are very short and sharp (without any pause/silence at the beginning).

In case the reveal sounds are not working for you (eg, the sound is not short enough to play it on each char reveal), consider using OnPrintTextStarted and OnPrintTextFinished events of the TextPrinterManager engine service to start/stop looping the sound accordingly. Those events are also exposed to PlayMaker, in case you prefer a visual scripting solution.

# TextMesh Pro

Naninovel supports TextMesh Pro via built-in TMProFullscreen, TMProDialogue, TMProWide, TMProChat and TMProBubble printers implemented with the TMPro UI text components.

Before using the TMPro printers, make sure you have TextMesh Pro installed in your Unity project. TextMesh Pro can be installed via package manager accessible with Window -> Package Manager menu.

You can select the TMPro printers to route all the print commands to them using @printer command in naninovel scripts:

; Activate dialogue TMPro printer
@printer TMProDialogue
; Print text using the activated printer
Hello World!

When creating custom TextMesh Pro font assets or materials, don't forget to apply Naninovel/RevealableTMProText shader to the font material, otherwise text reveal effect won't work.

# Embedded Sprites (Emoji)

To make TMPro's sprites support text reveal effect, create a custom sprite asset and assign a material with Naninovel/RevealableTMProSprite shader.

Make sure the material has sprite atlas texture assigned, as it won't automatically find the texture assigned in sprite asset.

# Right to Left (Arabic) Text

Naninovel supports RTL text reveal effect in TMPro printers.

To use RTL text in a TMPro printer, do the following:

  1. Create a custom TMPro text printer.
  2. Apply Naninovel/RevealableTMProText RTL shader to the font material used by the printer.
  3. Set Enable RTL Editor property in "Revealable TM Pro Text" component inside the printer.
  4. Optionally, enable Fix Arabic Text property on the same component.

Don't forget to use a compatible font and atlas configuration; here is an example:

Font Size: Auto Sizing
Font padding: 5
Packing Method: Optimum
Atlas res: 1024x1024
Character Set: Unicode Range (Hex) with this Sequence:
20-7E,600-603,60B-615,61B,61E-61F,621-63A,640-65E,660-6DC,6DF-6E8,6EA-6FF,750-76D,FB50-FBB1,FBD3-FBE9,FBFC-FBFF,FC5E-FC62,FD3E-FD3F,FDF2,FDFC,FE80-FEFC
Font Render Mode: Distance Field 16

EXAMPLE

For a complete example on setting up custom text mesh pro printer with right-to-left (Arabic) text support, see Naninovel RTL project on GitHub.

NOTICE

Neither uGUI, nor TMPro natively support Arabic text. Consider using Naninovel TMPro Text component for text labels (other than printers) that should support Arabic.

# Text Styles

Various text styles can be applied via rich text tags placed right inside the text or using @style command.

The default (non-TMPro) text printers are based on Unity's text rendering system and support basic text styling like color, size, bold, italic, etc. Refer to guide on text tags for more info.

TextMesh Pro printers support a wide range of additional text tags. See the official documentation for more info.

Support for ruby (furigana) characters is additionally provided by the Naninovel's TextMesh Pro printers via custom <ruby> tag. Wrap the text above which the ruby characters should be placed with the ruby tag and specify the ruby text inside the tag, eg:

Lorem <ruby="VERY">ipsum</ruby> dolor sit amet. 

— "VERY" ruby text will appear right above "ipsum" word when the message is printed at runtime.

NOTICE

When combining <ruby> with other tags, specify ruby tag first to prevent formatting issues, eg:

Lorem <ruby="VERY"><tip="TipID">ipsum</tip></ruby> dolor sit amet. 

You can additionally control the size and vertical line offset of the ruby text by changing properties of RevealableTMProText component used in the printer prefabs.

By default, when a ruby text is inserted to the printed message, line height is increased to compensate for the new content. To ensure equal height for all lines (both with and without ruby text), disable Add Ruby Line Height property and increase default line height.

Below is a video demonstration of the ruby tags in action.

Last Updated: September 7, 2022