Event Trigger (Construct 3 Plugins)

You're viewing a single comment in a conversation. View all the comments
  • 4 Comments

  • Order by
  • Yes but my point is: you can already do that with Functions.

    The way i see it - this is just another way to organize events, but the way you describe it, it should work with Functions too.

    1. = Function Plugin = F

    2. = Event Trigger Plugin = ET

    Starting the Event - When the Event happens:

    1. F Call "Screen Touch"

    2. ET Send Event "Screen Touch"

    On any other Event Sheet:

    1. F On "Screen Touch" is called (= triggered) - does stuff

    2. ET On Sent "Screen Touch" is triggered (= is called) - does stuff

    Want to add another thing that happens when the "Screen Touch" Event happens?

    1. Add another F On "Screen Touch" in any Event Sheet

    2. Add another ET On Sent "Screen Touch" in any Event Sheet

    • (

      This is a Test Text for Website Issues.

      "

    • "Call Function" and "On Function" are just different words for "Send Event" and "On Sent".

      Both Plugins:

      "Call"/"Send" an Event with multiple Parameters.

      Can have multiple "On Function"/"On Sent" Conditions in different/same Event Sheets.

      (I may be overlooking something, but i just cannot see the difference other than the words)

      • Looking at the documentation for the Function plugin, it describes it and shows examples of using like a function in a traditional programming language like what I am used to. Usually you have one "On" block that gets executed (shared code). It appears though that you are correct you can use multiple "On" blocks and have them all fire on one "call". I wasn't aware that could be done.