Where can I find all Defold functions/events or how are they called

Hello, for example

on_input
and
on_message

I want to find other functions/events such as those

1 Like

In the reference docs (from the website’s header, Learn -> API Reference):

5 Likes

When you create a new script they will all be in there for you. I believe those are all of the functions that the engine calls, everything else will be your game code.

You could also consider the window listener one of these, but you have to explicitly subscribe to that.

4 Likes