Custom Actions
Last updated
Last updated
In order to create a custom action, two C# scripts are required:
A script extending class Action
(or any of its subclasses) for defining the action properties and implementing the action functionality.
An Editor script extending class ActionEditor
(or any of its subclasses) for implementing the action user interface to be shown in the Inspector.
In order to accelerate the creation of the base code for those C# scripts, GameFlow provides a code generation wizard that you can find under the Assets > Create > GameFlow > Action... menu option.
In this window we can decide the namespace, name and type of the action class, if we want the action to be executed also in Edit mode and the destination folders of the two scripts to be generated once we click on the Create button.
Regarding the type of action (Action Type), the available options are the following:
Action: Instant action that starts and ends in the current frame.
Time Action: action based on time whose execution can be extended for several frames.
Macro Action: action that can implement a differentiated execution in time of edition.
_**_Function**: action that generates a value as a result.
Once the scripts are generated and the compilation is finished, our new action should appear already available in the action selection window:
And of course we can add it to our programs as if it were any other action available as standard:
The code generated for the action script would be this:
The first thing we find in this code is an example of the mechanism used in GameFlow to add Variables support to the actions. As we can see, this mechanism is based on the use of the GetValue()
extension method, which only deals with the final value that the action must use, taking into account whether the user specified a Variable or, on the contrary, wrote a value directly in the specific field to which the property is associated.
Regarding the method OnExecute()
it is important to explain that it will be executed once for each frame in which the action is still running, which is equivalent to a single time for actions of instant execution, since the action begins and ends in the same frame.
Also indicate that the OnSetup()
method will always be executed before the OnExecute()
method but it will do so only in the first frame, making it a perfect method for values initialization purposes that the action will need for its later execution.
Let's see below the generated code for the script corresponding to the Editor part:
In this case it is very important to follow the indications of the comments in terms of defining the SerializedProperty
members with exactly the same name that were defined in the other script, since GameFlow automatically takes care of initializing the properties saving us the writing of a code that It can be heavy. That is the reason why in this code the properties are only declared.
It is also important to note that both the variety of the PropertyField()
method used in this example and all the others (there are many) are documented in the ActionEditor entry of the GameFlow reference.
The GameFlow API offers a series of subclasses of Action
that add certain properties and useful methods, and that can be used to accelerate the writing of own actions. They are the following:
Class | Description |
---|---|
Action used for drawing Gizmos in the Editor | |
Action that returns a result | |
Action that makes use of a value intended to be limited | |
Action that makes use of a List | |
Action that makes use of a List and an Index property | |
Similar to | |
Action that makes use of a List and an item specifier | |
Similar to | |
Action that makes use of a List, an item specifier and an Index property | |
Similar to | |
Action that makes use of a numeric Parameter | |
Action that makes use of a numeric Variable | |
Action that makes use of a Parameter | |
Time-based Action | |
Time-based Action that returns a value once finished | |
Action that makes use of a | |
Action that makes use of a | |
Action that makes use of a Value property | |
Action that makes use of a Variable |
In the same way, the API also offers a subclass of ActionEditor
for each of the subclasses from which our scripts can inherit to accelerate the writing of the code that will manage the user interface of the action. They are the following:
In the reference of each of these subclasses, the different methods of utility that each class provides are detailed.
The game execution engine of GameFlow is unique in its kind because it allows execution in both Play and Edit modes, which makes possible things like macros or editor utilities written entirely with GameFlow.
In this way, a GameFlow action can:
Execute the same code either in Play or Edit modes, which would be the default behavior.
Execute a code in Play mode and a different code -that will have access to the API UnityEditor
to be able to use things like theUndo
class- in Edit mode.
Execute code only in Play mode or only in Edit mode.
In this section we will see how to prepare our actions to be able to provide them with a specific execution in Play mode, and we will do so by studying the code that the action creation wizard generates when we indicate that we want a Macro-type action, specifically the interface that manages the 'Editor' part of the action.
There are two fundamental parts to note in this code: 1. The use of the SetActionDelegate<T>()
method within the Init()
method to tell GameFlow which method will take care of the execution of the action at edit time. 2. The OnExecute()
method which is where we implement the specific execution that we want for our action when executed at runtime.
As explained in the comments, it is not only possible to use own methods of UnityEditor
but we can even return the execution to the subclass of Action, so that we do not have to duplicate code.
Remember also that it is possible to run any program at edit time without having to transform it into a macro or utility using the Execute option in its context menu and that we can repeat the last execution quickly using the keyboard shortcut Alt-0.
For more information about the operation of the mechanism for delegating the execution of actions in Edit mode, consult the entries of the classes Action and ActionEditor in the GameFlow reference.