defold / extension-kaios

Defold native extension for use with KaiOS
MIT License
3 stars 4 forks source link

Add feature to detect if the phone is on standby #9

Closed freyafea closed 2 years ago

britzl commented 2 years ago

@freyafea have you tried using window listeners to detect this?

window.set_listener(function(self, event, data)
    if event == window.WINDOW_EVENT_FOCUS_LOST then
        print("Screen lost focus")
    end
end)
britzl commented 2 years ago

User has confirmed that using window listener works. Closing.