Hi, I’m trying to make a simple visual novel game, so you’ll only control the dialog answers you choose, no moving characters around or anything.
I was simply trying to figure out how to have a widget showing the dialog, driven by some sort of flowchart, but I’ve seen a couple tutorials on youtube which are too complex for me to adapt, involving setting up character / npc interactions, and all kinds of stuff which I don’t really need.
I wanted to understand the most simple setup possible for this, so I can add complexity later. Can someone help me out? Thanks in advance
The first link only works on 4.20, and the example project link is dead
Second one apparently you have either to buy it or compile it yourself, and I don’t know how to do it, and sounds way too complicated for what I need. I was kinda hoping to create a bare minimum code from scratch and expand from that, but I’m not even sure where to start.
For example:
-Should I just use branches in my character BP or is there something easier and more appropriate for that, which doesn’t involve AI, behaviour trees, blackboards, interfaces, etc?
-Should I store my dialog lines and answers as variables on my main character BP? How should I pull them on my dialog widget?
-How do I save progress? A variable in my savegame stating conversation step #, and one variable for each reply the player has chosen?
right, so in my game you don’t directly control the character’s movement, you don’t go walking around and choosing who you want to interact with, all functionality is through dialogue choices. Characters are simply animated in the background based on your choices/replies.
When you start the main level, the dialogue box appears and the lines and dialogue sequences start. For example:
Game starts
Main character: “It’s late, I should get going.”
Secondary character appears
Secondary character: “Hello. Where are you going?”
Main character: “I’m going to #1 Veridian City | #2 Cinnabar Island”
If #1, Secondary character: “Cool, can I come with you?”
If #2. Secondary character: “Yikes, I can’t swim.”
Hey, did you ever find a solution? I actually decided to learn Unity because of this. They have an asset called Naninovel that can be used in a visual novel game or dialogue for a 3d game but is a visual novel dialogue system like renpy. I wish that UE5 had something like this. I check the marketplace every few months to see if anyone has created one. They are a few tutorials, but you’re right, they seem pretty hard or a pain in the rear.