com.avmedvedskiy.serializedactions
v1.0.10
Published
Serialized Actions
Maintainers
Readme
Serialized Actions
Actions based on the ManagedReference attribute and IAction interface allow you to run a sequence of a custom actions.
Used UniTask framework for async operations

Features
- Custom actions with async Run method
- Custom ActionRunner support
- Support Nested Sequences
Install via git URL
https://github.com/avmedvedskiy/SerializedActions.git
from the Add package from git URL option.
🔰 Usage
public List<IAction> actions;
async void RunAsync()
{
ActionRunner runner = new ActionRunner();
await runner.RunAsync(actions);
Debug.Log("Finish");
}