Skip to content

Commit 46fa72a

Browse files
Add amble_engine and amble_script to data.toml (#632)
* Add amble_engine and amble_script to data.toml Added two separate entries for my Amble game / engine / DSL / compiler / linter, since it's split into two different crates: - amble_engine: the actual game engine / content loader and the playable demo game - amble_script: the DSL / compiler / linter -- not technically necessary to make games in amble_engine (content can be written directly in TOML) but makes it far easier to create complex scripts / interactions / puzzle chains / etc. * Update data.toml --------- Co-authored-by: Joe Clay <[email protected]>
1 parent d91a449 commit 46fa72a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

content/ecosystem/data.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ name = "ambisonic"
2222
source = "crates"
2323
categories = ["audio"]
2424

25+
[[items]]
26+
name = "amble_engine"
27+
description = "Fully data-driven text adventure / I.F. game and scripting engine."
28+
categories = ["engines"]
29+
crate_url = "https://crates.io/crates/amble_engine"
30+
repository_url = "https://github.com/pygmy-twylyte/amble"
31+
32+
[[items]]
33+
name = "amble_script"
34+
description = "Natural-language-like DSL with compiler and linter for building games with amble_engine ('Amble')."
35+
categories = ["scripting", "tools"]
36+
crate_url = "https://crates.io/crates/amble_script"
37+
repository_url = "https://github.com/pygmy-twylyte/amble"
38+
2539
[[items]]
2640
name = "amethyst"
2741
source = "crates"

0 commit comments

Comments
 (0)