Repairs some art repository bugs
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
from collections.namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
SpriteImage = namedtuple("SpriteImage", ["image", "collision", "width", "height"])
|
SpriteImage = namedtuple("SpriteImage", ["image", "collision", "width", "height"])
|
||||||
|
|
||||||
@@ -130,7 +130,7 @@ leaf = SpriteImage(
|
|||||||
16
|
16
|
||||||
)
|
)
|
||||||
|
|
||||||
UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, mathroot, robot, dinoskull, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritotoobstacle]
|
UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, mathroot, robot, dinoskull, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritoobstacle]
|
||||||
OVERGROUND_OBSTACLES = [spaveinv, spaceinv2, leaf]
|
OVERGROUND_OBSTACLES = [spaceinv, spaceinv2, leaf]
|
||||||
|
|
||||||
OBSTACLES = UNDERGROUND_OBSTACLES + OVERGROUND_OBSTACLES
|
OBSTACLES = UNDERGROUND_OBSTACLES + OVERGROUND_OBSTACLES
|
||||||
|
|||||||
Reference in New Issue
Block a user