Skip to content

Commit 2bca3e9

Browse files
committed
update 3.8.5.5
1 parent 4067a26 commit 2bca3e9

45 files changed

Lines changed: 12209 additions & 8470 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
269 KB
Binary file not shown.
9.44 KB
Binary file not shown.

demos/draw_self_inverted/html5game/draw_self_inverted_demo.js

Lines changed: 3358 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
3.61 KB
Loading
135 KB
Loading

demos/draw_self_inverted/html5game/sound/worklets/audio-worklet.js

Lines changed: 50 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
14.3 KB
Loading
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<!-- Custom PreHead code is injected here -->
5+
6+
7+
<head>
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
9+
<meta name="apple-mobile-web-app-capable" content="yes" />
10+
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
11+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
12+
<meta charset="utf-8"/>
13+
14+
<!-- Builtin injector for disabling cache -->
15+
<meta http-equiv="pragma" content="no-cache"/>
16+
17+
<!-- Set the title bar of the page -->
18+
<title>draw_sprite_wave</title>
19+
20+
<!-- Custom PreStyle code is injected here -->
21+
22+
23+
<!-- Set the background colour of the document -->
24+
<style>
25+
body {
26+
background: #0;
27+
color: #cccccc;
28+
margin: 0px;
29+
padding: 0px;
30+
border: 0px;
31+
}
32+
33+
canvas {
34+
image-rendering: optimizeSpeed;
35+
-webkit-interpolation-mode: nearest-neighbor;
36+
-ms-touch-action: none;
37+
touch-action: none;
38+
margin: 0px;
39+
padding: 0px;
40+
border: 0px;
41+
}
42+
:-webkit-full-screen #canvas {
43+
width: 100%;
44+
height: 100%;
45+
}
46+
:-webkit-full-screen {
47+
width: 100%;
48+
height: 100%;
49+
}
50+
51+
/* Custom Runner Styles */
52+
div.gm4html5_div_class {
53+
margin: 0px;
54+
padding: 0px;
55+
border: 0px;
56+
}
57+
div.gm4html5_login {
58+
padding: 20px;
59+
position: absolute;
60+
border: solid 2px #000000;
61+
background-color: #404040;
62+
color:#00ff00;
63+
border-radius: 15px;
64+
box-shadow: #101010 20px 20px 40px;
65+
}
66+
div.gm4html5_cancel_button {
67+
float: right;
68+
}
69+
div.gm4html5_login_button {
70+
float: left;
71+
}
72+
div.gm4html5_login_header {
73+
text-align: center;
74+
}
75+
/* END - Custom Runner Styles */
76+
77+
</style>
78+
79+
<!-- Custom PostStyle code is injected here -->
80+
81+
82+
<!-- Builtin injector for injecting flurry analytics code -->
83+
84+
</head>
85+
86+
<!-- Custom PostHead code is injected here -->
87+
88+
89+
<!-- Custom PreBody code is injected here -->
90+
91+
92+
<body>
93+
<div class="gm4html5_div_class" id="gm4html5_div_id">
94+
95+
<!-- Builtin injector for splash screen -->
96+
97+
98+
<!-- Create the canvas element the game draws to -->
99+
<canvas id="canvas" width="448" height="192" >
100+
<p>Your browser doesn't support HTML5 canvas.</p>
101+
</canvas>
102+
</div>
103+
104+
<!-- Run the game code -->
105+
<script type="text/javascript" src="html5game/draw_self_inverted_demo.js?cachebust=1967612899"></script>
106+
107+
<!-- Builtin injector for injecting runner path -->
108+
109+
110+
<script>window.onload = GameMaker_Init;</script>
111+
112+
<!-- Builtin injector for injecting google analytics code -->
113+
114+
115+
</body>
116+
117+
<!-- Custom PostBody code is injected here -->
118+
119+
</html>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[HTML5]
2+
MajorVersion=1
3+
MinorVersion=0
4+
BuildVersion=0
5+
RevisionVersion=0
6+
DisplayName="draw_sprite_wave"
32 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)