docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Add a Custom Event node

    You can add a Custom Event node to a Script Graph to trigger specific logic after an Event occurs. For more information about custom Events, see Custom Events.

    Note

    To use a Custom Event node, you must configure the node with the following instructions, then add a Custom Event Trigger node to your graph. For more information on how to add a Custom Event Trigger node, see Add a Custom Event Trigger node

    To add a Custom Event node to a Script Graph:

    1. Open the Script Graph where you want to add a Custom Event node.

    2. Right-click anywhere in the Graph Editor to open the fuzzy finder..

    3. Go to Events.

    4. Select the Custom Event node to add it to your graph.

    5. In the GameObject field, indicated by the GameObject icon on the node, choose the GameObject where you want to create the Event. Do one of the following:

      • Select the object picker (circle icon), and select a GameObject.
      • Attach a node to the field's data input port that outputs a GameObject.
      • Leave the field as the default value of This to use the GameObject where you attached your Script Graph to a Script Machine.
    6. In the Arguments field, enter the number of arguments you want the custom Event to receive and pass to other nodes in your graph. The default value is 0. If you enter a number greater than 0, Visual Scripting adds the corresponding number of Output ports to the Custom Event node.

      Note

      Visual Scripting labels your first argument as Arg. 0.

    7. Enter a unique name for the custom Event through one of the following methods:

      • Enter a name in the field next to the Name input port.
      • Attach a node that outputs a string value to the Name input port.

    In the following example, a custom Event called On Damage returns a single argument when it's triggered in a Script Graph.

    An image of the Graph window, that displays a Custom Event node. Its Arguments are set to 1, its Target is set to This, and its Name is set to On Damage.

    Next steps

    After you add a Custom Event node to your graph, add more nodes to your graph or connect nodes to specify what happens after your Event triggers.

    Then, add a Custom Event Trigger node to specify when to trigger the custom Event in your graph.

    To create more complex logic for your custom Event, you can also create a Custom Scripting Event node.

    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)