Not Yet: Dialogue Plugin System - Example Project
May 21, 2023 ยท View on GitHub
Branch Unreal version: 5.2
Example project for the DlgSystem plugin.
See the Wiki for the manual and tutorials.
โน๏ธ NOTE: ๐ The Text Version step by step explanation of this Project is here
โน๏ธ NOTE: ๐ฅ There is a video tutorial version here in this playlist
Using
1. Setup Visual Studio for Unreal Engine
๐ Visual Studio Install Link
To add C++ tools to your VS installation, make sure you select Game development with C++ under Workloads.

NOTE: If you HAVE the Dialogue plugin in the unreal marketplace and you want to use that,
you can just delete the Plugins folder from the example project.
2. Download this example project
3. Unarchive it
4. Open the Project
- Open the
NYDlgSystemExample.uprojectfile - A popup like this will appear, press Yes

- If you have Visual Studio setup like in Step 1, this will finish successfully and the project will open

Clone
git clone -b 5.2 https://github.com/NotYetGames/NotYetDlgSystemExample.git
Git commands
# Update
./git-update.sh
# Push subtree modifications
# NOTE: This is only if you modified the Plugins/DlgSystem subtree.
git subtree push --prefix=Plugins/DlgSystem https://github.com/NotYetGames/DlgSystem.git master
# Was added with
git subtree add --prefix Plugins/DlgSystem https://github.com/NotYetGames/DlgSystem.git master --squash