Simpler syntax
This commit is contained in:
parent
ae5ff121d9
commit
00eda2aae5
@ -113,7 +113,7 @@ init -1 python:
|
|||||||
|
|
||||||
# Use a tuple/list to specify the order of layers in a dict
|
# Use a tuple/list to specify the order of layers in a dict
|
||||||
self.layers_order = layers
|
self.layers_order = layers
|
||||||
self.layers = dict([(k, None) for k in layers])
|
self.layers = dict.fromkeys(layers)
|
||||||
|
|
||||||
self.update_callback = update_callback
|
self.update_callback = update_callback
|
||||||
|
|
||||||
@ -124,8 +124,7 @@ init -1 python:
|
|||||||
|
|
||||||
if actions:
|
if actions:
|
||||||
# Override class variable for this instance
|
# Override class variable for this instance
|
||||||
self.actions = dict(Chibi.actions)
|
self.actions = Chibi.actions | actions
|
||||||
self.actions.update(actions)
|
|
||||||
|
|
||||||
self.zorder = zorder
|
self.zorder = zorder
|
||||||
self.speed = speed # pixels/sec
|
self.speed = speed # pixels/sec
|
||||||
|
Loading…
Reference in New Issue
Block a user