Forum Discussion
rraghvani
Champion Level 3
2 years agoCreate a new project, with the following functions
function MyError()
{
Log.Error("MyError")
}
function MyWarning()
{
Log.Warning("MyWarning")
}
function MyMessage()
{
Log.Message("MyMessage")
}
Implement the various Events, to see when the event is triggered when either of those functions are called. Also, this is dependant on Project Settings -> Playback, Error Handling.
This is just to learn and understand the behaviour of Events.