Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.
Elias Breitburg edited this page Aug 23, 2019 · 5 revisions

Getting Started

  1. Let`s import period library
import period
  1. Define a function that will be called when the application starts
@period.on_start
def on_start():
    pass
  1. Define a function that will be called on every frame update
@period.on_tick
def on_frame():
    pass
  1. Enjoy!
Clone this wiki locally