-
Notifications
You must be signed in to change notification settings - Fork 0
JSGLOverview
Moderr edited this page Feb 26, 2023
·
3 revisions
- Download JavaScript file from Github Releases.
- Create empty JavaScript file for your game code.
- Create HTML file like below.
...
<body>
<canvas id="gameCanvas"></canvas>
<script src="jsgl.js"></script>
<script src="my-game.js"></script>
</body>
...
- Write your first game code. Required Code to Run