class Inky.Scene
beginFrame(self: Inky.Scene): Inky.Scene

Begin a frame to render Elements in

Note: A frame must have been begun before Elements can be drawn

See Inky.Element:render()

finishFrame(self: Inky.Scene): Inky.Scene

End a frame to render Elements in

A frame must have been finished before Elements can be acted on

didBeginFrame(self: Inky.Scene): boolean

Get if frame did begin

raise(self: Inky.Scene, eventName: string, ...: unknown): Inky.Scene

Raise a Scene event, to be caught by Elements

See Inky.Element.OnCallback

class Internal