Skip to content

Commit

Permalink
some shit
Browse files Browse the repository at this point in the history
  • Loading branch information
kviks committed Nov 5, 2021
1 parent 4134f45 commit 64a4568
Show file tree
Hide file tree
Showing 61 changed files with 2,955 additions and 128 deletions.
18 changes: 13 additions & 5 deletions Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@
<define name="PRELOAD_ALL" unless="web" />
<define name="NO_PRELOAD_ALL" unless="PRELOAD_ALL"/>

<!-- <library name="videos" preload="true" /> -->
<section if="PRELOAD_ALL">
<library name="songs" preload="true" />
<library name="shared" preload="true" />
<library name="tutorial" preload="true" />
<library name="week1" preload="true" />
<library name="week2" preload="true" />
<library name="week3" preload="true" />
<library name="week4" preload="true" />
Expand All @@ -75,20 +76,23 @@
<section if="NO_PRELOAD_ALL">
<library name="songs" preload="false" />
<library name="shared" preload="false" />
<library name="tutorial" preload="false" />
<library name="week1" preload="false" />
<library name="week2" preload="false" />
<library name="week3" preload="false" />
<library name="week4" preload="false" />
<library name="week5" preload="false" />
<library name="week6" preload="false" />
</section>

<!-- <assets path="plugins/" rename='' if="VIDEOS_ALLOWED windows" />
<assets path="dlls/" rename='' if="VIDEOS_ALLOWED windows" />
<assets path="assets/videos" library="videos" if="VIDEOS_ALLOWED"/> -->

<assets path="assets/songs" library="songs" exclude="*.ogg" if="web"/>
<assets path="assets/songs" library="songs" exclude="*.mp3" unless="web"/>
<assets path="assets/shared" library="shared" exclude="*.ogg" if="web"/>
<assets path="assets/shared" library="shared" exclude="*.mp3" unless="web"/>
<assets path="assets/tutorial" library="tutorial" exclude="*.ogg" if="web"/>
<assets path="assets/tutorial" library="tutorial" exclude="*.mp3" unless="web"/>
<assets path="assets/week1" library="week1" exclude="*.ogg" if="web"/>
<assets path="assets/week1" library="week1" exclude="*.mp3" unless="web"/>
<assets path="assets/week2" library="week2" exclude="*.ogg" if="web"/>
<assets path="assets/week2" library="week2" exclude="*.mp3" unless="web"/>
<assets path="assets/week3" library="week3" exclude="*.ogg" if="web"/>
Expand Down Expand Up @@ -121,6 +125,10 @@
<haxelib name="flixel-addons" />
<haxelib name="hscript" />

<!--Video-->
<haxelib name="actuate" />
<haxelib name="extension-webm"/>

<!--In case you want to use the ui package-->
<haxelib name="flixel-ui" />
<haxelib name="linc_luajit" if="LUA_ALLOWED"/>
Expand Down
1 change: 1 addition & 0 deletions assets/preload/aboutmod.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version 7
133 changes: 133 additions & 0 deletions assets/preload/characters/sadmouse.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
{
"animations": [
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singUP-loop",
"fps": 24,
"name": "Sadmouse Up",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singLEFT-loop",
"fps": 24,
"name": "Sadmouse Left",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singDOWN-loop",
"fps": 24,
"name": "Sadmouse Down",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singRIGHT-loop",
"fps": 24,
"name": "Sadmouse Right",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "idle-loop",
"fps": 24,
"name": "Sadmouse Idle",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singLEFT",
"fps": 24,
"name": "Sadmouse Left",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singDOWN",
"fps": 24,
"name": "Sadmouse Down",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singUP",
"fps": 24,
"name": "Sadmouse Up",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "singRIGHT",
"fps": 24,
"name": "Sadmouse Right",
"indices": []
},
{
"loop": false,
"offsets": [
0,
0
],
"anim": "idle",
"fps": 24,
"name": "Sadmouse Idle",
"indices": []
}
],
"no_antialiasing": false,
"image": "characters/sadmouse_assets",
"position": [
-70,
20
],
"healthicon": "sadmouse",
"flip_x": false,
"healthbar_colors": [
175,
175,
175
],
"camera_position": [
-160,
0
],
"sing_duration": 6.1,
"scale": 1
}
Loading

0 comments on commit 64a4568

Please sign in to comment.