Skip to content

Commit

Permalink
disable strobe clear in static render mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Nytra committed Apr 26, 2020
1 parent e6fba0c commit f1ebeb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turtle.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
TURTLE_NO_TRAIL = False
RENDER_STATIC = True # don't clear the screen every frame, don't fill the screen every frame, only draw when needed
RENDER_STATIC_CLEAR_INTERVAL = 1000 # MS
RENDER_STATIC_DOES_CLEAR = True # Clear screen on intervals to limit trail length
RENDER_STATIC_DOES_CLEAR = False # Clear screen on intervals to limit trail length
NORTH_ANGLE = 0
TO_RAD = 3.14 / 180.0

Expand Down

0 comments on commit f1ebeb1

Please sign in to comment.