-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added soccer random and volley random
- Loading branch information
avscs
committed
Jan 17, 2025
1 parent
886500c
commit adae7c2
Showing
131 changed files
with
13,922 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "Soccer Random", | ||
"short_name": "Soccer Random", | ||
"description": "Random Physics Soccer", | ||
"start_url": "index.html", | ||
"display": "fullscreen", | ||
"orientation": "any", | ||
"background_color": "#ffffff", | ||
"icons": [] | ||
} |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Soccer Random</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | ||
|
||
<meta name="generator" content="Scirra Construct"> | ||
<meta name="author" content="RHM Interactive"> | ||
<meta name="description" content="Random Physics Soccer"> | ||
<link rel="manifest" href="appmanifest.json"> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
|
||
<script> | ||
window.addEventListener("keydown", function(e) { | ||
// space and arrow keys | ||
if([32, 37, 38, 39, 40].indexOf(e.keyCode) > -1) { | ||
e.preventDefault(); | ||
} | ||
}, false); | ||
</script> | ||
|
||
<script async | ||
data-ad-client="ca-pub-8349441957149316" | ||
data-ad-channel="9976299074" | ||
data-ad-frequency-hint="30s" | ||
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" | ||
crossorigin="anonymous"> | ||
</script> | ||
|
||
<script> | ||
window.adsbygoogle = window.adsbygoogle || []; | ||
const adBreak = adConfig = function(o) {adsbygoogle.push(o);} | ||
adConfig({ | ||
preloadAdBreaks: 'on', | ||
onReady: () => { | ||
console.log("onReady") | ||
}, | ||
}); | ||
</script> | ||
|
||
<script> | ||
function CallInterstitialAds() | ||
{ | ||
adBreak({ | ||
type: 'next', | ||
name: 'restart-game', | ||
beforeAd: () => { | ||
console.log("Ad Started!"); | ||
c3_callFunction("adStarted"); | ||
}, | ||
afterAd: () => { | ||
c3_callFunction("onClose"); | ||
console.log("After Ad Finished"); | ||
}, | ||
adBreakDone: () => { | ||
console.log('adBreakDone'); | ||
c3_callFunction("onClose"); | ||
} | ||
}); | ||
} | ||
</script> | ||
|
||
</head> | ||
<body> | ||
|
||
<script> | ||
if (location.protocol.substr(0, 4) === "file") | ||
{ | ||
alert("Web exports won't work until you upload them. (When running on the file: protocol, browsers block many features from working for security reasons.)"); | ||
} | ||
</script> | ||
<script src="box2d.wasm.js"></script> | ||
<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> | ||
</div> | ||
</noscript> | ||
<script src="scripts/supportcheck.js"></script> | ||
<script src="scripts/offlineclient.js" type="module"></script> | ||
<script src="scripts/main.js" type="module"></script> | ||
<script src="scripts/register-sw.js" type="module"></script> | ||
|
||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":1699277624299,"fileList":["box2d.wasm.js","box2d.wasm","scripts/c3runtime.js","data.json","style.css","scripts/offlineclient.js","images/shared-0-sheet0.png","images/shared-0-sheet1.png","images/shared-0-sheet2.png","images/shared-0-sheet3.png","images/ballline-sheet0.png","images/rightshoe-sheet0.png","images/hair-sheet0.png","images/rightshort-sheet0.png","images/leftshort-sheet0.png","images/righttshirt-sheet0.png","images/lefttshirt-sheet0.png","images/leftshoe-sheet0.png","images/tshirt-sheet0.png","images/groundtile-sheet0.png","images/fencetile-sheet0.png","images/grasstile-sheet0.png","images/cloudtile-sheet0.png","images/buildingtile-sheet0.png","images/startile-sheet0.png","images/portraitcovertile-sheet0.png","images/titlebg-sheet0.png","images/game_bg-sheet0.png","images/groundtilesnow-sheet0.png","images/buildingtile2-sheet0.png","images/buildingtile3-sheet0.png","images/titlechars-sheet0.png","images/groundtileplaj-sheet0.png","images/seatile-sheet0.png","scripts/opus.wasm.js","scripts/opus.wasm.wasm","scripts/main.js","scripts/dispatchworker.js","scripts/jobworker.js","scripts/supportcheck.js","scripts/project/FrameRateLimit.js","scripts/project/scriptsInEvents.js","media/buttonx.webm","media/start.webm","media/win.webm","media/jump.webm","media/intro-button.webm","media/intro-sound.webm","media/bup.webm","media/bellsoc.webm","media/goasoc.webm","media/refsoc.webm","media/file.webm","media/wrong.webm","media/menu.webm","media/press.webm","media/music.webm","scripts/register-sw.js"]} |
Oops, something went wrong.