forked from ncase/wbwwb
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
100 lines (92 loc) · 3.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<html>
<head>
<link rel="stylesheet" href="css/game.css">
</head>
<body>
<div id="stage"></div>
<div id="modal_shade"></div>
<div class="overlay" id="warning">
<div>不好</div>
<div>
你的浏览器不支持WebGL技术.<br>
请尝试更换电脑或使用另一个浏览器再试一次?
</div>
</div>
<div class="overlay" id="paused">
<div>暂停<br>
点击任何地方继续
</div>
</div>
</body>
</html>
<!-- External Libraries -->
<script src="js/lib/pixi.min.js"></script>
<script src="js/lib/howler.js"></script>
<script src="js/lib/stats.min.js"></script>
<script>var createjs = window;</script>
<script src="js/lib/tweenjs-0.6.2.min.js"></script>
<script>Ticker.framerate=60; Ticker.paused=true;</script>
<script src="js/lib/helpers.js"></script>
<!-- Text Strings -->
<script src="js/textStrings.js"></script>
<!-- Core Engine Code -->
<script src="js/core/Game.js"></script>
<script src="js/core/SceneManager.js"></script>
<script src="js/core/Scene.js"></script>
<!-- Main Game Scene Code -->
<script src="js/game/World.js"></script>
<script src="js/game/Camera.js"></script>
<script src="js/game/Director.js"></script>
<script src="js/game/Peep.js"></script>
<script src="js/game/TV.js"></script>
<script src="js/game/AnimationProp.js"></script>
<script src="js/game/ScreenShake.js"></script>
<script src="js/game/ScreenZoomOut.js"></script>
<script src="js/game/Gore.js"></script>
<script src="js/game/DeadBody.js"></script>
<script src="js/game/Blood.js"></script>
<!-- Peeps -->
<script src="js/peeps/NormalPeep.js"></script>
<script src="js/peeps/CrazyPeep.js"></script>
<script src="js/peeps/NervousPeep.js"></script>
<script src="js/peeps/SnobbyPeep.js"></script>
<script src="js/peeps/AngryPeep.js"></script>
<script src="js/peeps/HatPeep.js"></script>
<script src="js/peeps/LoverPeep.js"></script>
<script src="js/peeps/ProtestAnim.js"></script>
<script src="js/peeps/HelpingAnim.js"></script>
<script src="js/peeps/HappyWeirdoPeep.js"></script>
<script src="js/peeps/EvilHatPeep.js"></script>
<script src="js/peeps/PanicPeep.js"></script>
<script src="js/peeps/MurderPeep.js"></script>
<!-- Misc Crap -->
<script src="js/misc/Candlelight.js"></script>
<script src="js/misc/LoversWatching.js"></script>
<script src="js/misc/Cricket.js"></script>
<script src="js/misc/Cursor.js"></script>
<!-- Scenes -->
<script src="js/scenes/Scene_Preloader.js"></script>
<script src="js/scenes/Scene_Quote.js"></script>
<script src="js/scenes/Scene_Game.js"></script>
<script src="js/scenes/Scene_Credits.js"></script>
<script src="js/scenes/Scene_Post_Credits.js"></script>
<script src="js/scenes/Scene_Post_Post_Credits.js"></script>
<script src="js/scenes/Scene_EndPrototype.js"></script>
<script src="js/scenes/Act_I.js"></script>
<script src="js/scenes/Act_II.js"></script>
<script src="js/scenes/Act_III.js"></script>
<script src="js/scenes/Scene_Meta.js"></script>
<!-- Game Scripts -->
<script>
Game.stats = false;
window.onload = function(){
try{
Game.init();
//Game.init("Game");
}catch(e){
document.getElementById("warning").style.display = "block";
}
};
window.SHARE_TEXT = "I just played this really weird game about the news. WE BECOME WHAT WE BEHOLD:"
window.SHARE_URL = "https://ncase.itch.io/wbwwb";
</script>