All Projects β†’ AnidemDex β†’ Godot-DialogPlugin

AnidemDex / Godot-DialogPlugin

Licence: MIT license
πŸ—¨οΈ A Dialog Node for Godot Engine

Programming Languages

GDScript
375 projects

Projects that are alternatives of or similar to Godot-DialogPlugin

godot-android-plugin-firebase
Godot 3.2.2 Android plugin for Firebase
Stars: ✭ 41 (-78.87%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin
godot-local-notification
Godot module for local notifications (android and iOS)
Stars: ✭ 111 (-42.78%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin
discord.gd
Discord Bot API wrapper for Godot. Make bots in GDScript.
Stars: ✭ 69 (-64.43%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin
Project-Map
No description or website provided.
Stars: ✭ 52 (-73.2%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin
Pixelorama
A free & open-source 2D sprite editor, made with the Godot Engine! Available on Windows, Linux, macOS and the Web!
Stars: ✭ 2,535 (+1206.7%)
Mutual labels:  godotengine, godot, godot-engine
godot-performance-comparison
Godot performance comparison between the `3.x` and `master` branch
Stars: ✭ 12 (-93.81%)
Mutual labels:  godotengine, godot, godot-engine
nativelib-cli
NativeLib is a plugin management system for Godot engine.
Stars: ✭ 19 (-90.21%)
Mutual labels:  godot, godot-engine, godot-plugin
godot-interpolated-camera3d
Provides an InterpolatedCamera3D node that replicates its 3.2.x functionality (and more)
Stars: ✭ 40 (-79.38%)
Mutual labels:  godotengine, godot, godot-engine
godot box2d
A C++ module that integrates the Box2D library with the Godot game engine by providing nodes for standard Box2D objects.
Stars: ✭ 32 (-83.51%)
Mutual labels:  godotengine, godot, godot-engine
godot-lod-demo
Demonstration project for the Level of Detail (LOD) Godot 3.x add-on
Stars: ✭ 34 (-82.47%)
Mutual labels:  godotengine, godot, godot-engine
godot-rpgdb
An easy to use JSON database-manager for Godot.
Stars: ✭ 25 (-87.11%)
Mutual labels:  godot, godot-engine, godot-plugin
Logic-Circuit-Simulator
A free and open-source Logic Circuit Simulator built in Godot Engine.
Stars: ✭ 23 (-88.14%)
Mutual labels:  godotengine, godot, godot-engine
Godot-3.0-Noise-Shaders
Godot 3.0 Noise Shaders
Stars: ✭ 38 (-80.41%)
Mutual labels:  godotengine, godot, godot-engine
godot-logger
Simple in-game logger for Godot 4.0
Stars: ✭ 14 (-92.78%)
Mutual labels:  godot, godot-engine, godot-plugin
autotiler
Autotile 47-tile blob tileset generator application with Godot export support. Based on Electron JS.
Stars: ✭ 32 (-83.51%)
Mutual labels:  godotengine, godot, godot-engine
MySQL Module
MySQL connector to Godot Engine.
Stars: ✭ 30 (-84.54%)
Mutual labels:  godotengine, godot, godot-engine
GDGotm
Official Godot plugin for gotm.io - the Godot Platform!
Stars: ✭ 43 (-77.84%)
Mutual labels:  godotengine, godot, godot-engine
DartGodot
Godot + Dart 🎯
Stars: ✭ 79 (-59.28%)
Mutual labels:  godotengine, godot, godot-engine
godot-extras
My collection of various plugins, modules, or patches for Godot
Stars: ✭ 108 (-44.33%)
Mutual labels:  godotengine, godot, godot-engine
OpMon-Godot
An open source Pokemon-inspired game, now with Godot
Stars: ✭ 50 (-74.23%)
Mutual labels:  godotengine, godot, godot-engine

Textalog - A DialogSystem Plugin for Godot Engine

Godot Engine GitHub license GitHub issues Godot Engine


Twitter: @AnidemDex

A dialog Node implementation for Godot Engine, aiming to be a node that fits the majority of use cases where a dialog node is needed for any kind of game.

We're working hardly on 2.0 version. This means that the latest commit from repository is probably not production ready to use. Make sure to download the plugin from the releases section.

Features

πŸͺ§ DialogNode

A node implementation for make dialogs, fully customizable and built with common dialog commands to improve your game development in the dialogue interaction. Create dialog bubbles, dialog boxes and anything that has dialog on its name!

!TODO: Add dialog box with options example !TODO: Add dialog bubble example

πŸ±β€πŸ‘€ Characters and πŸ–ΌοΈ Portraits

Characters are data containers to describe what expressions (portraits) are going to be used in dialogue and what properties of the dialogue will be overriden during the gameplay.

TODO: Update character editor image

Easy *blip* sounds.

The plugin has tools that will help you to integrate audio in your dialogs, either single blip sounds or complex and large voice acted lines.

TODO: Add a video with a blip example

🎨 Customization through Godot's Themes

Because every game is unique as their creators, we let the possibility to modify the DialogNode through themes, to make it unique as you.

TODO: Update customization gif

Easy to integrate in your Dialog System

Textalog was made as a single node, agnostic to whatever your text is on. Give the node the data, it will create the dialog in screen for you.

You don't have a dialog system? Use Textalog as a Dialog System!

The plugin can help you creating sequences of dialogs and dialog branches to certain conditions, all in the editor, thanks to its integration with EventSystem.

You can create the entire dialog sequence through code too!

See more about this implementation on the documentation.

🚩 Installation

Manually

Download the lastest release and extract the ZIP file. Move the resulting folder to your addons folder (create one at the root of your project if it doesn't exist). Finally, enable the plugin in your project settings, under plugins tab. It's that easy!

You can take a look in a more detailed tutorial in the plugin's documentation. If you want more information about installing plugins in Godot, please refer to official documentation page.

As submodule

git submodule add https://github.com/AnidemDex/Godot-DialogPlugin.git addons/dialog_plugin

🧡 Usage

Quick example to try the most simple functionality: showing text on the screen.

extends Node

func _ready() -> void:
  # Creates a new DialogNode instance
  var dialog_node = DialogNode.new()
  # Add the node as child
  add_child(dialog_node)

  # Show an string. BBCode works too!
  dialog_node.show_text("Hello world!")

⚠️ Control node and Node2D node types are incompatible. If you want to add the DialogNode as child of a Node2D type, make sure to give it a proper rect_size, add it as child of a CanvasLayer or add it in the scene, not in code.

πŸ“š Documentation

Now we have an official documentation! All the information about the plugin you will find it organized in the documentation page. Tutorials, class information, FAQ and more will be added there, eventually.

⏱️Changelog

Changelog lives on Changelog section from Documentation.

Contributing

Contributions are welcome and very appreciated. You can open issues to request something or report bugs or create pull request to integrate something new or solve an issue. Take a look at Contributing file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].