Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ Halle Jones|HJones@aliacy.com||
[Sheena O'Connell](https://github.com/sheenarbw) | [@sheena@fosstodon.org](https://fosstodon.org/@sheena) | [blog](https://sheenaoc.com/) |
[Quinn Redwoods](https://github.com/qredwoods) | | |
[Jeff Epler](https://github.com/jepler) | | |
[Mary Clark](https://github.com/marymclark) | [me@maryclark.net](me@maryclark.net) | |
[Mary Clark](https://github.com/marymclark) | [me@maryclark.net](me@maryclark.net) | |
[KeVeon White](https://github.com/ams0x2a) | | |
5 changes: 1 addition & 4 deletions src/ppb/systems/clocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
class Updater(System):

def __init__(self, time_step=0.016, **kwargs):
self.accumulated_time = 0
self.last_tick = None
self.start_time = None
self.time_step = time_step
super().__init__(accumulated_time=0, last_tick=None, start_time=None, time_step=time_step, **kwargs)

def __enter__(self):
self.start_time = ppb.get_time()
Expand Down