You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder about aliasing arcade.get_window().clear() with arcade.clear(). This is one of the first commands a new programmer will need, and chaining the dot operators before we really explain how that stuff works could be confusing.
I don't normally cover default parameters or typing when starting on functions. Open question about the 'method signature' warning, if it will confuse people, or matching the sig will confuse people.
There are things like
def update
andarcade.start_render()
in examples.Probably a good idea to encourage
on_update
andclear()
. This will break in 2.7.The text was updated successfully, but these errors were encountered: