mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 23:41:50 +08:00
18 lines
462 B
JavaScript
18 lines
462 B
JavaScript
function Tutorial() {
|
|
var _this = this;
|
|
|
|
this.run = function() {
|
|
assets.sounds["bgm_setsume"].playLoop(0.1, false, 0, 1.054, 16.054)
|
|
|
|
$('#tutorial-end-button').click(function(){
|
|
assets.sounds["bgm_setsume"].stop();
|
|
assets.sounds["don"].play();
|
|
|
|
localStorage.setItem('tutorial', 'true');
|
|
new SongSelect();
|
|
});
|
|
};
|
|
|
|
$('#screen').load('/src/views/tutorial.html', _this.run);
|
|
};
|