TinyCircuits / TinyCircuits-Tiny-Game-Engine

MicroPython game engine for TinyCircuits Thumby Color
GNU General Public License v3.0
10 stars 2 forks source link

Remove attributes from the module engine_io, change to getters/setters. #36

Closed TPReal closed 5 months ago

TPReal commented 5 months ago

Shallow modifiable values on modules should not be used. They are broken e.g. by doing "from mod import val", and also the C interface to MicroPython causes problems when they are used - the globals no longer work, and the syntax is even more awkward.