You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
414 B
12 lines
414 B
3 years ago
|
# How can I make a dialog show up in game?
|
||
|
|
||
|
There are two ways of doing this; using gdscript or the scene editor.
|
||
|
|
||
|
Using the `Dialogic` class you can add dialogs from code easily:
|
||
|
|
||
|
```
|
||
|
var new_dialog = Dialogic.start('Your Timeline Name Here')
|
||
|
add_child(new_dialog)
|
||
|
```
|
||
|
|
||
|
And using the editor, you can drag and drop the scene located at `/addons/dialogic/Dialog.tscn` and set the current timeline via the inspector.
|