Function Call
Last updated
Last updated
Quillscript can execute Blueprint/C++ functions using command lines.
Supposing you want to run a function with the following signature.
By default, you can pass only primary type parameters: Boolean (bool), Byte (uint8), Integer (int32), Integer64 (int64), Float (float/double), String (FString), Name (FName), Text (FText) and Enumerators (UEnum).
Although not a recommended practice, you can pass Null Pointers (nullptr), typing any string for that parameter. To pass a pointer to a valid reference, check Script References.
If the above function belongs to the Interpreter, including custom interpreters, you call it by typing its name and passing the parameters separated by spaces.
You can execute functions that belong to an instanced object by referencing its name or display name given in editor. For example, if an object is named 'MyActor', start the function with an & (ampersand) followed by the object name, and place a dot between the object name and the function name.
Additionally, if you do not want to use the display name given in editor, Quillscript also provides a Rename Object function to easily set a name for an object.
Avoid using whitespaces and special characters in object names for safety.
You can use these names to reference common Unreal Engine objects.
In addition, you can create a list of object references to use in scripts. To add an object to the list, use the method below:
And it becomes available in script, by name.
These objects can also be passed as parameter variables to other functions if they match parameter type. A null pointer is passed otherwise.
Although the interpreter tries to check if the parameter type and the referenced object type are different, you should avoid passing an object with a different type, this can result in a crash.
Object references are also be captured when they are sent as return value of a function. For example, the function with the following signature:
An object reference for the output parameter is added and becomes immediately available in script.
It's very common to pass an Unreal Engine asset as a parameter to a function. To avoid the need to create a named script reference for every asset required, script references can use the Unreal Engine path pattern to pass asset references without the need to previously name it.
The same method can be applied to pass class references:
Script assets will also reference these assets in the Reference Viewer.
Also, often your assets are all in the same folder. For such cases, you can add that folder to a list of "Search Paths", either project-wide on plugin settings, or per script on the script asset itself. An asset in this specified folder does not need to be referenced by its entire path, but just by its name.
For example, suppose we have a folder named "Backgrounds" on the content browser. Inside this folder are 3 texture assets named "Classroom", "Street", and "Shop". You add this folder to your project search paths and reference these assets by name, without the need to create a script reference manually.
Search Path: /Game/Backgrounds/
You can execute functions in all objects of a given class. For example, if an object has the class "MyClass", start the function with an ^ (Circumflex) and the class name.
Start with the blueprint reference path, without the extension at the end:
You can execute functions that belong to instanced Actors using their tags. For example, if an Actor has the tag 'MyTag', start the function with a % (Percent Sign) and the tag name.
This method will execute the function in all actors with the specified tag.
You can also call functions from nested objects. For example:
You cannot call functions from objects in arrays, sets, maps, and nested structs.
You can capture the return values of a called function and store it in a Quillscript variable.
Suppose you want to capture the return value of the following function.
When this function is called by one of the methods above, the return values are stored in Quillscript Outer Variables, a particular type of temporary variable that exists during that script execution.
These variables are named like the return value and outer parameters. The following variables are created in the example above: $ReturnValue
, $IntParam
, and $StringParam
You can capture the value of an UObject property.
Suppose you want to capture the return value of the following properties.
Call the variable by its path and use the property name as an outer variable.
And you can do the same for nested objects:
You cannot access properties from objects in arrays, sets, maps, and nested structs
Although being stored as an Unreal Engin's Text type, Quillscript's Text parameters are marked as cultural invariants by default. If the value of a parameter must be localized, set its value inside `` (backticks)
Is a versatile feature that allows users to call functions with parameters passed in any order. This is achieved by explicitly naming the parameters using the @ParamName:ParamValue
syntax. This approach enhances code readability and flexibility, making it easier to understand and edit. At the same time, it also lets the writer pass only the desired parameters in the desired order and omits unnecessary ones.
Consider the following function:
In a Quillscript file, you can call this function like this.
&GameInstance
Game Instance Object
&PlayerController
Player Controller Actor
&GameMode
Game Mode Object
&Pawn
Player Pawn Actor
&Character
Player Character Actor
&GameState
Game State Object
&PlayerState
Player State Object
&PlayerCameraManager
Player Camera Manager Actor
&Interpreter or &this
This script interpreter Actor
&Target
Script target object (Passed in the Play Script node)
&Script
Script object
&DialogBox
Dialog Box Widget
&SelectionBox
Selection Box Widget
&BackgroundBox
Background Box Widget
&Level
Current Level Script Actor