![]() |
PowerQuest 0.17.0
|
The PowerQuest tool manages scripts for you to make it easy to find the bit you want to edit.
The tool has a button for each "interaction" that can be made on each object. Clicking it will open the script editor at the right place for you, so you don't have to go scrawling through scripts to find the right file and function to edit.
So, say you have a prop called "door", clicking the "Use" button next to it in the editor will:
OnInteractHotspotDoor()
function automatically.Here's an example of a script you might write-
When you open a script from the PowerQuest Editor, it'll open initially in the Quest Script Editor. This is a streamlined script editor for quickly editing dialog and quick interactions.
For more complex behaviour and coding, click the "View C#" button to explore the script in Visual Studio. There you have access to the entire files to add your own functions, proper autocomplete, syntax and error highlighting, debugging tools, etc, etc.
The Quest Script Editor makes things easier than raw c# in a few ways:
yield return
in front of every blocking function (ones that return Coroutine ) Eg:C.Dave.WalkTo(12,34);
instead of yield return C.Dave.WalkTo(12,34);
Dave: Hello!
instead of yield return C.Dave.Say("Hello");
Bill: Hi Dave!
Display: This is a message box
instead of yield return C.Display("This is a message box");
P.Door
instead of Props("Door")
WalkToClicked
instead of yield return C.WalkToClicked();
FaceClicked
instead of C.FaceClicked();
...
instead of yield return E.WaitSkip(0.5f);
(use more or less dots for longer/shorter pauses)BUT, there's certain limitations (at least currently):
Luckily it's easy to switch between them, and the Quest Script editor has a __'View C#'__ button that opens MonoDevelop/VisualStudio at the right file and location.
You can also hold shift while clicking a button that'd open a Quest Script to make it open directly in MonoDevelop/VS.
Next up, have a look at the PowerQuest API page, which explains the different objects and functions you can use.