This guide describes how to create custom Actions for Playmaker.
Playmaker also ships with the source code for hundreds of actions that you can pick apart or adapt for your own purposes.
Custom Action Wizard
Use the Custom Action Wizard to quickly build the framework for a custom action.
Releasing Custom Actions
- To avoid naming conflicts, use a custom namespace. E.g., your company url:
-
1: 2: 3: 4:
namespace com.mycompany.playmaker.actions { // your action }
- Double check that you have not included Playmaker plugins in your unitypackage or zip file!
See Also
- How to make simple custom Playmaker actions (Tutorial Video by The Strange School)
- Tips for Writing Custom Actions
- Custom Action Wizard
-
-