Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
This is the final version of Step Right Up, featuring three playable …
…characters: a mgaician, a strongman, and an acrobat!
  • Loading branch information
jec18001 committed May 11, 2019
0 parents commit 1e22ac7
Show file tree
Hide file tree
Showing 54 changed files with 2,070 additions and 0 deletions.
41 changes: 41 additions & 0 deletions appmanifest.json
@@ -0,0 +1,41 @@
{
"name": "StepRightUpPractice",
"short_name": "StepRightUpPractice",
"description": "",
"start_url": "index.html",
"display": "fullscreen",
"orientation": "landscape",
"background_color": "#ffffff",
"icons": [
{
"src": "icons/icon-16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "icons/icon-32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "icons/icon-64.png",
"sizes": "64x64",
"type": "image/png"
},
{
"src": "icons/icon-128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "icons/icon-256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "icons/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
1 change: 1 addition & 0 deletions data.json

Large diffs are not rendered by default.

Binary file added icons/icon-128.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/icon-16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/icon-256.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/icon-32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/icon-512.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/icon-64.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/loading-logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/acrobatanim-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/acrobatanim-sheet1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/acrobatanim-sheet2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/background_dark-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/background_light-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/background_light2-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/background_medium-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/magicanim-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet5.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/shared-0-sheet6.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/stronganim-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions index.html
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>StepRightUpPractice</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">

<link rel="manifest" href="appmanifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="128x128" href="icons/icon-128.png">
<link rel="apple-touch-icon" sizes="256x256" href="icons/icon-256.png">
<link rel="apple-touch-icon" sizes="512x512" href="icons/icon-512.png">
<link rel="icon" type="image/png" href="icons/icon-512.png">

<link rel="stylesheet" href="style.css">

</head>
<body>
<div id="fb-root"></div>

<noscript>
<div id="notSupportedWrap">
<h2 id="notSupportedTitle">This content requires JavaScript</h2>
<p class="notSupportedMessage">JavaScript appears to be disabled. Please enable it to view this content.</p>
<p class="notSupportedMessage">This game was created using Construct, a <a href="https://www.construct.net/en">2D games maker</a>.</p>
</div>
</noscript>
<script src="scripts/supportCheck.js"></script>
<script src="scripts/offlineClient.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/register-sw.js"></script>
</body>
</html>
Binary file added media/bensound-epic.webm
Binary file not shown.
Binary file added media/bensound-hey.mp3
Binary file not shown.
Binary file added media/bensound-smallguitar.webm
Binary file not shown.
Binary file added media/credits.mp4
Binary file not shown.
Binary file added media/steprightup.mp4
Binary file not shown.
Binary file added media/steprightup_between.mp4
Binary file not shown.
Binary file added media/steprightup_home.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial1.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial2.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial3.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial4.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial5.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial6.mp4
Binary file not shown.
Binary file added media/steprightup_tutorial7.mp4
Binary file not shown.
Binary file added media/steprightupprac.mp4
Binary file not shown.
1 change: 1 addition & 0 deletions offline.json
@@ -0,0 +1 @@
{"version":1557546628599,"fileList":["scripts/c3runtime.js","data.json","style.css","scripts/offlineClient.js","images/shared-0-sheet2.png","images/acrobatanim-sheet0.png","images/acrobatanim-sheet1.png","images/acrobatanim-sheet2.png","images/magicanim-sheet0.png","images/shared-0-sheet1.png","images/shared-0-sheet3.png","images/shared-0-sheet0.png","images/shared-0-sheet4.png","images/shared-0-sheet5.png","images/shared-0-sheet6.png","images/stronganim-sheet0.png","images/background_medium-sheet0.png","images/background_light-sheet0.png","images/background_light2-sheet0.png","images/background_dark-sheet0.png","scripts/opus.wasm.js","scripts/opus.wasm.wasm","scripts/main.js","scripts/dispatchWorker.js","scripts/jobWorker.js","scripts/workerMain.js","scripts/supportCheck.js","media/bensound-hey.mp3","media/bensound-epic.webm","media/bensound-smallguitar.webm","media/steprightupprac.mp4","media/steprightup.mp4","media/steprightup_home.mp4","media/steprightup_between.mp4","media/steprightup_tutorial3.mp4","media/steprightup_tutorial1.mp4","media/steprightup_tutorial4.mp4","media/steprightup_tutorial2.mp4","media/steprightup_tutorial5.mp4","media/steprightup_tutorial6.mp4","media/steprightup_tutorial7.mp4","media/credits.mp4","icons/icon-16.png","icons/icon-32.png","icons/loading-logo.png","icons/icon-64.png","icons/icon-128.png","icons/icon-256.png","icons/icon-512.png","scripts/register-sw.js"]}
2 changes: 2 additions & 0 deletions scripts/c3runtime.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions scripts/dispatchWorker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions scripts/jobWorker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions scripts/main.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions scripts/offlineClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1e22ac7

Please sign in to comment.