I'm making an episode, and I want the words "COURSE CLEAR!" whenever the player clears a level. However, I used events with LUA and the text displays, but for only a frame:
Is there a way I can have it stay until the level cuts to black?
Code:
Code: Select all
function onEvent(event)
if event == "cleared" then
Text.print("COURSE CLEAR!",20,100)
end
end