Skip to content

NotYetGames/NotYetDlgSystemExample

Repository files navigation

Not Yet: Dialogue Plugin System - Example Project

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

👉 Visual Studio Install Link

To add C++ tools to your VS installation, make sure you select Game development with C++ under Workloads.

Settings Installer for VS

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.uproject file
  • A popup like this will appear, press Yes

Opening Project Missing Modules

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

Opening Project Missing Modules

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