Skip to content

Commit

Permalink
Initial ModLoader Commit
Browse files Browse the repository at this point in the history
Setting up level loading and asset loading
Setting up readme
Adding test mod.
  • Loading branch information
jasminegamedev committed Jan 30, 2024
1 parent 52240c1 commit e2720d3
Show file tree
Hide file tree
Showing 12 changed files with 3,820 additions and 60 deletions.
4 changes: 2 additions & 2 deletions Celeste64.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Global
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Debug|Any CPU.Build.0 = Debug|x64
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Debug|x64.ActiveCfg = Debug|x64
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Debug|x64.Build.0 = Debug|x64
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Release|Any CPU.Build.0 = Release|Any CPU
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Release|Any CPU.ActiveCfg = Release|x64
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Release|Any CPU.Build.0 = Release|x64
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Release|x64.ActiveCfg = Release|x64
{4AEDC42A-29CF-4A53-B672-17FB8315682F}.Release|x64.Build.0 = Release|x64
EndGlobalSection
Expand Down
34 changes: 34 additions & 0 deletions Mods/TestLevel/Dialog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"TestSign": [
{
"Face": "signpost",
"Voice": "sign/general_01",
"Text": "Secret Sign\nDo NOT read"
},
{
"Face": "signpost",
"Voice": "sign/ellipses_01",
"Text": "..."
},
{
"Face": "signpost",
"Voice": "sign/general_03",
"Text": "But since you found me,\nhere's a tip:"
},
{
"Face": "signpost",
"Voice": "sign/general_02",
"Text": "This is a test mod level. \nTo beat it, collect the Cassette at the end."
},
{
"Face": "signpost",
"Voice": "sign/ellipses_01",
"Text": "..."
},
{
"Face": "signpost",
"Voice": "sign/snark_02",
"Text": "What are you waiting for? Go!"
}
]
}
10 changes: 10 additions & 0 deletions Mods/TestLevel/Levels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"ID": "TEST_LEVEL",
"Name": "Test Level",
"Label": "Used to test mod loader\nMod By: Jazzrabbit",
"Strawberries": 2,
"Preview": "Postcards/TestLevel",
"Map": "test-level"
}
]
Loading

0 comments on commit e2720d3

Please sign in to comment.