Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Fixed tutorial not loading from story mode on HTML target
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelWyvern committed Jun 14, 2022
1 parent 05069dd commit 4a008b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<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" />
Expand All @@ -62,6 +63,7 @@
<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" />
Expand All @@ -75,6 +77,8 @@
<assets path="assets/songs" library="songs" exclude="*.mp3|*.mp4" unless="web"/>
<assets path="assets/shared" library="shared" exclude="*.ogg" if="web"/>
<assets path="assets/shared" library="shared" exclude="*.mp3|*.mp4" unless="web"/>
<assets path="assets/tutorial" library="tutorial" exclude="*.mp3|*.mp4" unless="web"/>
<assets path="assets/tutorial" library="tutorial" exclude="*.mp3|*.mp4" unless="web"/>
<assets path="assets/week1" library="week1" exclude="*.ogg" if="web"/>
<assets path="assets/week1" library="week1" exclude="*.mp3|*.mp4" unless="web"/>
<assets path="assets/week2" library="week2" exclude="*.ogg" if="web"/>
Expand Down
Empty file.

2 comments on commit 4a008b2

@trayfellow
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hey shouldnt it be
assets path="assets/tutorial" library="tutorial" exclude=".ogg" if="web"
assets path="assets/tutorial" library="tutorial" exclude="
.mp3|*.mp4" unless="web"

instead of
assets path="assets/tutorial" library="tutorial" exclude=".mp3|.mp4" unless="web"
assets path="assets/tutorial" library="tutorial" exclude=".mp3|.mp4" unless="web"

@AngelWyvern
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops, my bad, missed that somehow. Thanks for pointing this out, it'll be fixed in the next commit.

Please sign in to comment.