Skip to content

Commit 3bef48d

Browse files
committed
mod guide in progress
1 parent aec9518 commit 3bef48d

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Modding.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# QUICK AND DIRTY MOD GUIDE
2+
3+
With the 0.2.6 update, I added a bit of a slightly nicer mod support backend.
4+
5+
It's POLYMOD, which is made by Lars Doucet: https://github.com/larsiusprime/polymod
6+
7+
You may have noticed that there's a new folder in the assets. MODS. Within it you will see 2 files. modList.txt, and a folder called introMod.
8+
modList.txt will load any folder into the game. Put the folder you want to load into a new line in modList.txt, and reboot the game.
9+
10+
Now you may be wondering, what do I put in the folder? Well later down it'll get a bit more complicated, especially as I'll make the IN-GAME mod loader nicer.

source/StoryMenuState.hx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,13 @@ class StoryMenuState extends MusicBeatState
375375
switch (grpWeekCharacters.members[0].animation.curAnim.name)
376376
{
377377
case 'parents-christmas':
378-
grpWeekCharacters.members[0].offset.x = 400;
378+
grpWeekCharacters.members[0].offset.x = 250;
379+
grpWeekCharacters.members[0].setGraphicSize(Std.int(grpWeekCharacters.members[0].width * 0.97));
380+
379381
default:
380382
grpWeekCharacters.members[0].offset.x = 100;
383+
grpWeekCharacters.members[0].setGraphicSize(Std.int(grpWeekCharacters.members[0].width * 1));
384+
// grpWeekCharacters.members[0].updateHitbox();
381385
}
382386

383387
var stringThing:Array<String> = weekData[curWeek];

0 commit comments

Comments
 (0)