Merge pull request #43 from FoamyGuy/mode_default

default to "standard" mode
This commit is contained in:
foamyguy 2024-12-04 08:19:12 -06:00 committed by GitHub
commit bc7315d4b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -171,11 +171,11 @@ class turtle:
self._y = self._h // (2 * scale)
self._speed = 6
self._heading: float = 0
self._logomode = True
self._fullcircle = 360.0
self._degreesPerAU = 1.0
self._angleOrient = 1
self._angleOffset: float = 0
self._logomode = False
self._angleOrient = -1
self._angleOffset: float = self._fullcircle / 4
self._bg_color = 0
self._splash: displayio.Group = displayio.Group()