β¬ Alert
β¬ Alert
The Alert block allows you to display a text message with simple formatting (bold, italics, links...) and an optional image. This kind of formatting is called "Markdown"; you don't need to master it, the built-in editor takes care of it. Its visual behavior differs depending on the template used:
- Template Chatbot: the message is displayed in the discussion feed, in a bubble with a style distinct from classic dialogues, without character name.
- Visual Novel Template: the message is displayed as a notification positioned on the screen, above the interface, in the chosen location.
In both cases, the flow continues automatically without waiting for user interaction.
π₯ Entries
- in (Flow): Triggers the display of the alert.
- text (HTML): Text of the alert, edited via the integrated editor which generates HTML (rendering is done in raw HTML). You can insert dynamic variables between double braces (eg: {{score}}). Each variable used automatically generates an additional entry point on the block, to be connected to the corresponding variable (Text, Number or Boolean).
- image (Image, Optional): Image to display in the notification.
- position (Enum, Visual Novel only): Location of the on-screen notification. 9 positions available:
- Top left / Top center / Top right (default)
- Middle left / Center / Middle right
- Bottom left / Bottom center / Bottom right
π€ Outings
- out (Flow): Activates immediately after displaying the alert. The flow continues without waiting for interaction.
π‘ Example of use
Scenario: Notification of winning points (Visual Novel)
- The player succeeds in an action in a Visual Novel.
- An Alert block is placed in the flow to notify it of its reward.
- The text field is configured with: Bravo! You gain {{points}} points.
- The entry point points is connected to the variable containing 10.
- The notification appears at the top right of the screen: "Congratulations! You win 10 points."
- The flow continues automatically via the out output.
Scenario: System message in a Chatbot
- The user has just completed a step in a chatbot.
- An Alert block is placed in the flow.
- The text {{step}} completed! appears in the feed in a separate bubble, without a character name.
- The flow continues immediately.
βοΈ Technical Details
- Chatbot: template ChatbotTemplate, preset alert. Inputs: in, text, image. No location β the notification fits into the chat stream.
- Visual Novel: template VisualNovelTemplate, preset alert. Inputs: in, text, content (image), position. Default position: topRight.
- Dynamic variables: each {{VariableName}} in the text generates a connection point of type Text | Number | Boolean.
- Non-blocking behavior: the out output is triggered immediately after display.
Documented version: v1
Updated on: 06/09/2026
Thank you!
