Hello again,
I did a test on a totally new game.xml and index.html which i copied from the folder 'root/tests/audio'.
There's a total of 4 items in total so i copied all of them into the root folder.
index.html
1. i've uncommented the 3 script src line as they seems empty when i dl it.
2. i change the navigation for the css and webstoryengine.js to the correct directory
Code:
<!DOCTYPE html>
<html>
<head>
<title>WebStory Engine</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles/default.css" type="text/css" />
<style>
#tb {
background: transparent;
position: absolute;
left: 0;
bottom: 0;
right: 0;
text-align: left;
z-index: 10000;
border: 0;
box-shadow: none;
text-shadow: none;
font-weight: bold;
font-size: 1.2em;
font-family: monospace;
color: black;
}
</style>
</head>
<body>
<!--<script src="libs/MO5/libs/using.js/using.js"></script>
<script src="libs/howler/howler.js"></script>
<script src="libs/MO5/js/MO5.js"></script>-->
<script src="bin/WebStoryEngine.js"></script>
<script>
using("WSE.Game").run(function (Game) {
var game = new Game({
url: "game.xml",
host: typeof HOST === "undefined" ? false : HOST
});
game.start();
});
</script>
</body>
</html>
game.xml
1. i inserted trigger for save
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ws>
<settings>
<stage width="900px" height="636px" id="Stage" create="yes" center="yes" />
<triggers>
<trigger name="game_menu_key_trigger" event="keyup" key="ESCAPE" function="savegames" />
</triggers>
<setting name="host.stage.resize" value="true" />
</settings>
<assets>
<audio name="music" loop="true" fade="false" autopause="true">
<track title="main_menu_music">
<source href="chaos-circus.mp3" type="mp3" />
<source href="chaos-circus.ogg" type="ogg" />
</track>
<track title="badass">
<source href="chaos-circus.mp3" type="mp3" />
<source href="chaos-circus.ogg" type="ogg" />
</track>
</audio>
</assets>
<scenes>
<scene id="start">
<trigger name="game_menu_key_trigger" action="activate" />
<set asset="music" track="main_menu_music" />
<play asset="music" fadein="500"/>
<break/>
<stop asset="music" fade="true" fadeout="1000" />
<wait />
<set asset="music" track="badass" />
<play asset="music" />
<restart/>
</scene>
</scenes>
</ws>
When i load a savegame file, the following is shown in the console:
MO5.Result is deprecated - use MO5.Promise instead! WebStoryEngine.js:5687
LoadingScreen: new item loading... WebStoryEngine.js:10159
Message: Entering scene 'start'. WebStoryEngine.js:8320
Encountered in scene 'start', element 0. WebStoryEngine.js:8770
LoadingScreen: item loaded. WebStoryEngine.js:10177
TypeError: this.tracks.forEach is not a function(…) WebStoryEngine.js:9420
Warning: Could not restore asset state for asset 'music'! null WebStoryEngine.js:8334
Encountered in scene 'start', element 4. WebStoryEngine.js:8770
I'm tried my laptop and desktop but still the bgm continue to play when loaded..
I will use an alternative 'load' where user pick from a <choice> and it will go to a scene at the start of the game if this load seems to affect only me..
Thank you and really appreciate your time for reading + assisting me.
