atomic-junky / Monologue

Create your dialogues for your game
https://atomic-junky.itch.io/monologue
MIT License
11 stars 2 forks source link
dialog dialogue dialogue-systems dialogues godot lightnovel node-editor visual-novel visualnovel

Monologue is a powerful non-linear dialogue editor. 🦖

You can find the wiki here.

Monologue is a graph node based system dialogue editor that allows you to create modular and non-linear dialogues in any game engine.

The principle of Monologue is to assign a unique ID to each node, so that any node can refer to any other node. This powerful mechanism allows you to create amazing dialogues and stories.

Monologue example

Super Simple export

Monologue is working with just a simple JSON file and nothing else. You just need to save your chnages and it will update your JSON file.

Features

The JSON file format

{
    "EditorVersion": "",
    "RootNodeId": "", # The id of the root node (where all start)
    "ListNodes": [ # Where all the nodes are stored
        ...
    ],
    "Characters": [ # All the characters
        ...
    ],
    "Variables": [ # All the variables
        ...
    ]
}

Interpretation

You can write your own script or use the MonologueProcess script here if you're using Godot.

To use the MonologueProcess script, create a script that extends MonologueProcess. This will allow you to use the built-in signals. You can read more about this in this script.

Credits ans Support

This project is originally from Amberlim (although these two projects no longer share any lines of code), so if you want, here is her Discord server. However, if you need help, don't hesitate to create an issue on Github.