Hello, I've been searching the site and forum for documentation on how to build a custom event node but am unable to find anything. Currently I'm just looking through the source code, but would be helpful to have some additional context or documentation. Thanks for your help.
  • The best course of action is to topy the code of an existing node (e.g. one that's similar to what you want to do).

    What happens when the node is executed goes into the Execute function:
    public override void Execute(BaseEvent baseEvent)
    {
    // do your stuff here

    // continues the event
    baseEvent.StepFinished(this.next);
    }
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
Sign In or Register to comment.