-
Notifications
You must be signed in to change notification settings - Fork 0
/
getstarted.html
89 lines (84 loc) · 4.48 KB
/
getstarted.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
<html>
<head>
<title>Clockwork</title>
<link rel="stylesheet" href="css/style.css" />
<script src="js/taglines.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-96597717-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="splashPage" class="fixedHeader">
<div id="clockworkLogo"></div>
<div id="header">
<h1><a href="index.html">Clockwork</a></h1>
<h3 id="tagline">>The game engine that doesn’t grind your gears</h3>
<h2>An open platform for developing HTML5 games based on modular components.</h2>
<h4>If you want to know why you should choose Clockwork, just keep scrolling!</h4>
<h2>
<div class="red">Coming soon!</div>
</h2>
<div class="buttonsContainer">
<a href="howitworks.html"><div class="linkText">How does it work?</div></a>
<a href="getstarted.html"><div class="linkText">Get started</div></a>
<a href="documentation.html"><div class="linkText">Documentation</div></a>
<a href="http://clockwork.js.org/blog"><div class="linkText">Blog</div></a>
</div>
</div>
<a class="twitterLogo" href="https://twitter.com/clockworkjs"></a>
<a class="githubLogo" href="https://github.com/clockworkDev"></a>
</div>
<div id="contentSection">
<div class="feature">
<img src="img/tools.png" />
<div class="featureDescription">
<h3>0 - Get the tools</h3>
Install <a href="https://code.visualstudio.com/">Visual Studio Code</a> and add the <a href="https://marketplace.visualstudio.com/items?itemName=arcadio.clockwork">Clockwork extension</a>.
You will also need to download <a href="https://www.microsoft.com/store/apps/9mt9ntllrqsr?cid=ClockworkWebsite">Clockwork Runtime</a> from the Windows Store and enable <a href="https://docs.microsoft.com/en-us/windows/uwp/get-started/enable-your-device-for-development">developer mode</a>.
</div>
</div>
<div class="feature">
<img src="img/tools.png" />
<div class="featureDescription">
<h3>1 - Unlock Clockwork</h3>
By default, UWP apps can't communicate with other software running on the same PC. Open VS Code and execute the unlock command (press F1 > 'Unlock Clockwork Runtime') to let the Runtime and your dev tools talk to each other.
</div>
</div>
<div class="feature">
<img src="img/tools.png" />
<div class="featureDescription">
<h3>2 - Create a project</h3>
Open an empty folder and create a Clockwork project (press F1 > 'Create Clockwork Project').
</div>
</div>
<div class="feature">
<img src="img/tools.png" />
<div class="featureDescription">
<h3>3 - Deploy your project</h3>
Deploy your project to the Clockwork Runtime (press F1 > 'Deploy Clockwork Project') and click on its tile to run it. Each time you modify your game you will need to deploy it again so you can see the changes.
</div>
</div>
<div class="feature">
<img src="img/tools.png" />
<div class="featureDescription">
<h3>4 - Work on your project</h3>
It's time to get your hands dirty! You can start editing the components, levels and spritesheets to build your game. The <a href="http://clockwork.js.org/blog/tutorials">tutorials</a> and the <a href="documentation.html">documentation</a> are your friends!
</div>
</div>
<div class="feature">
<img src="img/tools.png" />
<div class="featureDescription">
<h3>5 - Publish your game</h3>
When you are ready to share your project with the world, you can use the <a href="http://clockwork.js.org/blog/tags/#bridges">bridges</a> to export your game.
</div>
</div>
</div>
</body>
</html>