1 unstable release

new 0.1.0 Oct 23, 2024

#10 in #sonic

Download history 75/week @ 2024-10-17

76 downloads per month
Used in 2 crates

Apache-2.0

40KB
710 lines

rush-parser

Sample Blueprint

[world]
name = "Sonic's World"
entities = ["player"]
regions = ["farm", "house"]

[player] # (e.g. [<entity_name>])
name = "string"
x = 0
y = 0
w = 0
h = 0
speed = 0

[instances.farm]
player = [
  # speed = 0, taken default value from [player] table
	{ name = "npc", x = 0, y = 0, w = 0, h = 0 }
]

[instances.house]
player = [
	{ name = "npc", x = 0, y = 0, w = 0, h = 0, speed = 50 }
]

Dependencies

~3–4.5MB
~76K SLoC