Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 925 Bytes

File metadata and controls

24 lines (17 loc) · 925 Bytes

Dialogue Tree Generator

Introduction

Created a Windows program with drag drop structure to create a graph data structure for dialogue intensive games.

Project was originally intended for something else but got sidetracked : /

So far

  1. Can create a dialogue with right click on canvas
  2. Can create links between two dialogues
  3. Can delete the link with a right click
  4. Can add more options for each dialogue that will serve as path to another dialogue
  5. basic dialogue is created from unitDialogue object.
  6. the unitDialogue object has a list of paths.
  7. each path has an option name and pointer to the next dialogue that the option will correspond to.

Todo ( Main )

  1. Add panning with middle mouse button.
  2. Write a CSV generator for the graph.
  3. Scrap my own code for another project with similar needs.