Skip to content

Commit

Permalink
add pulsing object group
Browse files Browse the repository at this point in the history
  • Loading branch information
qimiko committed Jul 1, 2024
1 parent 48f0449 commit 2ffffb4
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from .grouptriggers import GroupTriggers
from .groupslopes import GroupSlopes
from .groupcircle import GroupCircle
from .grouppulsing import GroupPulsing

GJGameObjectConversionGroups = [
GroupSlopes,
Expand All @@ -30,6 +31,7 @@
GroupGroundSpikes,
GroupLines,
GroupCircle,
GroupPulsing
]

GJGameObjectConversionGroupsByName = {x.name: x for x in GJGameObjectConversionGroups}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
"""
Pulsing object group for id conversion
"""

from .gjgameobjectconversiongroup import (
GJGameObjectConversion,
GJGameObjectConversionGroup,
)


GroupPulsing = GJGameObjectConversionGroup(
"pulsing",
[
GJGameObjectConversion(3621, 50), # small circle
GJGameObjectConversion(3622, 51), # small circle outline
GJGameObjectConversion(3623, 52), # heart
GJGameObjectConversion(3624, 53), # diamond
GJGameObjectConversion(3625, 54), # star
GJGameObjectConversion(3626, 60), # music note
GJGameObjectConversion(3627, 148), # square
GJGameObjectConversion(3628, 149), # triangle
GJGameObjectConversion(3629, 405), # hexagon
GJGameObjectConversion(3630, 132), # arrow (->)
GJGameObjectConversion(3631, 460), # right angle (›)
GJGameObjectConversion(3632, 494), # right facing triangle (▶)
GJGameObjectConversion(3633, 133), # exclamation mark
GJGameObjectConversion(3634, 136), # question mark
GJGameObjectConversion(3635, 150), # large x
GJGameObjectConversion(3636, 236), # large circle outline
GJGameObjectConversion(3637, 497), # large circle
GJGameObjectConversion(3638, 495), # large square
GJGameObjectConversion(3639, 496), # large square outline
],
show_visual_warning=True,
)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gdlevelconverter"
version = "1.1.2"
version = "1.1.3"
description = "2.0+ to 1.9 Geometry Dash level conversion tool"
readme = "README.md"
license = {text = "MIT License"}
Expand Down

0 comments on commit 2ffffb4

Please sign in to comment.