coldtype.time.Frame

class Frame(i, animation)

Container for information about a frame

Frame is the type of the first argument passed to all @animation rendering functions, usually abbreviated as f, i.e.

@animation()
def render(f:Frame):
    pass

(where Frame is an optional type-hint if you’re looking to leverage autocomplete in your editor)