-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
191 changed files
with
921 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
...ng/2018Fall/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/Build/UnityLoader.js
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+843 KB
...18Fall/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/Build/build.data.unityweb
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...ipting/2018Fall/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/Build/build.json
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,13 @@ | ||
{ | ||
"companyName": "Meaghan Doherty", | ||
"productName": "DMD2542-SidescrollerPrototype-MeaghanDoherty", | ||
"dataUrl": "build.data.unityweb", | ||
"wasmCodeUrl": "build.wasm.code.unityweb", | ||
"wasmFrameworkUrl": "build.wasm.framework.unityweb", | ||
"TOTAL_MEMORY": 268435456, | ||
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"], | ||
"webglContextAttributes": {"preserveDrawingBuffer": false}, | ||
"splashScreenStyle": "Dark", | ||
"backgroundColor": "#231F20", | ||
"cacheControl": {"default": "must-revalidate"} | ||
} |
Binary file added
BIN
+2.88 MB
...l/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/Build/build.wasm.code.unityweb
Binary file not shown.
Binary file added
BIN
+88.1 KB
...al-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/Build/build.wasm.framework.unityweb
Binary file not shown.
24 changes: 24 additions & 0 deletions
24
...ll/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/UnityProgress.js
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,24 @@ | ||
function UnityProgress(gameInstance, progress) { | ||
if (!gameInstance.Module) | ||
return; | ||
if (!gameInstance.logo) { | ||
gameInstance.logo = document.createElement("div"); | ||
gameInstance.logo.className = "logo " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.container.appendChild(gameInstance.logo); | ||
} | ||
if (!gameInstance.progress) { | ||
gameInstance.progress = document.createElement("div"); | ||
gameInstance.progress.className = "progress " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.progress.empty = document.createElement("div"); | ||
gameInstance.progress.empty.className = "empty"; | ||
gameInstance.progress.appendChild(gameInstance.progress.empty); | ||
gameInstance.progress.full = document.createElement("div"); | ||
gameInstance.progress.full.className = "full"; | ||
gameInstance.progress.appendChild(gameInstance.progress.full); | ||
gameInstance.container.appendChild(gameInstance.progress); | ||
} | ||
gameInstance.progress.full.style.width = (100 * progress) + "%"; | ||
gameInstance.progress.empty.style.width = (100 * (1 - progress)) + "%"; | ||
if (progress == 1) | ||
gameInstance.logo.style.display = gameInstance.progress.style.display = "none"; | ||
} |
Binary file added
BIN
+13 KB
...018Fall/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/favicon.ico
Binary file not shown.
Binary file added
BIN
+345 Bytes
...-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/fullscreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+155 Bytes
...pe/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/progressEmpty.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...e/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/progressEmpty.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+137 Bytes
...ype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/progressFull.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...pe/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/progressFull.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.29 KB
...ype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/progressLogo.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.21 KB
...pe/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/progressLogo.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
.../2018Fall/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/style.css
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,18 @@ | ||
.webgl-content * {border: 0; margin: 0; padding: 0} | ||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
|
||
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;} | ||
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;} | ||
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;} | ||
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;} | ||
|
||
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');} | ||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');} | ||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');} | ||
|
||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;} | ||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;} | ||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;} | ||
.webgl-content .footer .title {margin-right: 10px; float: right;} | ||
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;} |
Binary file added
BIN
+3.5 KB
...-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/TemplateData/webgl-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
...oToScripting/2018Fall/Final-Prototype/DMD2542-SideScrollerProto-MeaghanDoherty/index.html
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,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>MushKid - Meaghan Doherty</title> | ||
<link rel="shortcut icon" href="TemplateData/favicon.ico"> | ||
<link rel="stylesheet" href="TemplateData/style.css"> | ||
<script src="TemplateData/UnityProgress.js"></script> | ||
<script src="Build/UnityLoader.js"></script> | ||
<script> | ||
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/build.json", {onProgress: UnityProgress}); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="webgl-content"> | ||
<div id="gameContainer" style="width: 960px; height: 600px"></div> | ||
<div class="footer"> | ||
<div class="webgl-logo"></div> | ||
<div class="fullscreen" onclick="gameInstance.SetFullscreen(1)"></div> | ||
<div class="title">DMD2542-SidescrollerPrototype-MeaghanDoherty<br>DMD 2542 - Introduction to Scripting - Professor Ken Thompson<br>University of Connecticut - School of Fine Arts - Department of Digital Media and Design</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Binary file added
BIN
+1.26 MB
...Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/Build/Prototype.data.unityweb
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...ting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/Build/Prototype.json
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,13 @@ | ||
{ | ||
"companyName": "DefaultCompany", | ||
"productName": "Sidescroller", | ||
"dataUrl": "Prototype.data.unityweb", | ||
"wasmCodeUrl": "Prototype.wasm.code.unityweb", | ||
"wasmFrameworkUrl": "Prototype.wasm.framework.unityweb", | ||
"TOTAL_MEMORY": 268435456, | ||
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"], | ||
"webglContextAttributes": {"preserveDrawingBuffer": false}, | ||
"splashScreenStyle": "Dark", | ||
"backgroundColor": "#231F20", | ||
"cacheControl": {"default": "must-revalidate"} | ||
} |
Binary file added
BIN
+3.34 MB
...Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/Build/Prototype.wasm.code.unityweb
Binary file not shown.
Binary file added
BIN
+88.1 KB
...-Prototype/DMD2542-SidescrollerProto-AlexWilliams/Build/Prototype.wasm.framework.unityweb
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
...ting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/Build/UnityLoader.js
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/UnityProgress.js
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,24 @@ | ||
function UnityProgress(gameInstance, progress) { | ||
if (!gameInstance.Module) | ||
return; | ||
if (!gameInstance.logo) { | ||
gameInstance.logo = document.createElement("div"); | ||
gameInstance.logo.className = "logo " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.container.appendChild(gameInstance.logo); | ||
} | ||
if (!gameInstance.progress) { | ||
gameInstance.progress = document.createElement("div"); | ||
gameInstance.progress.className = "progress " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.progress.empty = document.createElement("div"); | ||
gameInstance.progress.empty.className = "empty"; | ||
gameInstance.progress.appendChild(gameInstance.progress.empty); | ||
gameInstance.progress.full = document.createElement("div"); | ||
gameInstance.progress.full.className = "full"; | ||
gameInstance.progress.appendChild(gameInstance.progress.full); | ||
gameInstance.container.appendChild(gameInstance.progress); | ||
} | ||
gameInstance.progress.full.style.width = (100 * progress) + "%"; | ||
gameInstance.progress.empty.style.width = (100 * (1 - progress)) + "%"; | ||
if (progress == 1) | ||
gameInstance.logo.style.display = gameInstance.progress.style.display = "none"; | ||
} |
Binary file added
BIN
+13 KB
.../2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/favicon.ico
Binary file not shown.
Binary file added
BIN
+345 Bytes
...al-Prototype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/fullscreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+155 Bytes
...type/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/progressEmpty.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...ype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/progressEmpty.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+137 Bytes
...otype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/progressFull.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...type/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/progressFull.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.29 KB
...otype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/progressLogo.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.21 KB
...type/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/progressLogo.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
...ng/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/style.css
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,18 @@ | ||
.webgl-content * {border: 0; margin: 0; padding: 0} | ||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
|
||
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;} | ||
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;} | ||
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;} | ||
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;} | ||
|
||
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');} | ||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');} | ||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');} | ||
|
||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;} | ||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;} | ||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;} | ||
.webgl-content .footer .title {margin-right: 10px; float: right;} | ||
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;} |
Binary file added
BIN
+3.5 KB
...al-Prototype/DMD2542-SidescrollerProto-AlexWilliams/TemplateData/webgl-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
...troToScripting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/index.html
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,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>Unity WebGL Player | Sidescroller</title> | ||
<link rel="shortcut icon" href="TemplateData/favicon.ico"> | ||
<link rel="stylesheet" href="TemplateData/style.css"> | ||
<script src="TemplateData/UnityProgress.js"></script> | ||
<script src="Build/UnityLoader.js"></script> | ||
<script> | ||
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/Prototype.json", {onProgress: UnityProgress}); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="webgl-content"> | ||
<div id="gameContainer" style="width: 1024px; height: 768px"></div> | ||
<div class="footer"> | ||
<div class="webgl-logo"></div> | ||
<div class="fullscreen" onclick="gameInstance.SetFullscreen(1)"></div> | ||
<div class="title">Sidescroller</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Binary file added
BIN
+66.5 KB
...g/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AlexWilliams/thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.2 MB
...pe/DMD2542-SidescrollerProto-AriffJeff/Build/DMD2542-Sidescroller-AriffJeff.data.unityweb
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...l-Prototype/DMD2542-SidescrollerProto-AriffJeff/Build/DMD2542-Sidescroller-AriffJeff.json
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,13 @@ | ||
{ | ||
"companyName": "DefaultCompany", | ||
"productName": "DMD2542-Sidescroller-AriffJeff", | ||
"dataUrl": "DMD2542-Sidescroller-AriffJeff.data.unityweb", | ||
"wasmCodeUrl": "DMD2542-Sidescroller-AriffJeff.wasm.code.unityweb", | ||
"wasmFrameworkUrl": "DMD2542-Sidescroller-AriffJeff.wasm.framework.unityweb", | ||
"TOTAL_MEMORY": 268435456, | ||
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"], | ||
"webglContextAttributes": {"preserveDrawingBuffer": false}, | ||
"splashScreenStyle": "Dark", | ||
"backgroundColor": "#231F20", | ||
"cacheControl": {"default": "must-revalidate"} | ||
} |
Binary file added
BIN
+2.95 MB
...D2542-SidescrollerProto-AriffJeff/Build/DMD2542-Sidescroller-AriffJeff.wasm.code.unityweb
Binary file not shown.
Binary file added
BIN
+88.1 KB
...-SidescrollerProto-AriffJeff/Build/DMD2542-Sidescroller-AriffJeff.wasm.framework.unityweb
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
...ripting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/Build/UnityLoader.js
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...018Fall/Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/UnityProgress.js
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,24 @@ | ||
function UnityProgress(gameInstance, progress) { | ||
if (!gameInstance.Module) | ||
return; | ||
if (!gameInstance.logo) { | ||
gameInstance.logo = document.createElement("div"); | ||
gameInstance.logo.className = "logo " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.container.appendChild(gameInstance.logo); | ||
} | ||
if (!gameInstance.progress) { | ||
gameInstance.progress = document.createElement("div"); | ||
gameInstance.progress.className = "progress " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.progress.empty = document.createElement("div"); | ||
gameInstance.progress.empty.className = "empty"; | ||
gameInstance.progress.appendChild(gameInstance.progress.empty); | ||
gameInstance.progress.full = document.createElement("div"); | ||
gameInstance.progress.full.className = "full"; | ||
gameInstance.progress.appendChild(gameInstance.progress.full); | ||
gameInstance.container.appendChild(gameInstance.progress); | ||
} | ||
gameInstance.progress.full.style.width = (100 * progress) + "%"; | ||
gameInstance.progress.empty.style.width = (100 * (1 - progress)) + "%"; | ||
if (progress == 1) | ||
gameInstance.logo.style.display = gameInstance.progress.style.display = "none"; | ||
} |
Binary file added
BIN
+13 KB
...ing/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/favicon.ico
Binary file not shown.
Binary file added
BIN
+345 Bytes
...Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/fullscreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+155 Bytes
...ototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/progressEmpty.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...totype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/progressEmpty.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+137 Bytes
...rototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/progressFull.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...ototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/progressFull.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.29 KB
...rototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/progressLogo.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.21 KB
...ototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/progressLogo.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
...pting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/style.css
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,18 @@ | ||
.webgl-content * {border: 0; margin: 0; padding: 0} | ||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
|
||
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;} | ||
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;} | ||
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;} | ||
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;} | ||
|
||
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');} | ||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');} | ||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');} | ||
|
||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;} | ||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;} | ||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;} | ||
.webgl-content .footer .title {margin-right: 10px; float: right;} | ||
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;} |
Binary file added
BIN
+3.5 KB
...Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/TemplateData/webgl-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
...-IntroToScripting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-AriffJeff/index.html
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,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>Unity WebGL Player | DMD2542-Sidescroller-AriffJeff</title> | ||
<link rel="shortcut icon" href="TemplateData/favicon.ico"> | ||
<link rel="stylesheet" href="TemplateData/style.css"> | ||
<script src="TemplateData/UnityProgress.js"></script> | ||
<script src="Build/UnityLoader.js"></script> | ||
<script> | ||
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/DMD2542-Sidescroller-AriffJeff.json", {onProgress: UnityProgress}); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="webgl-content"> | ||
<div id="gameContainer" style="width: 960px; height: 600px"></div> | ||
<div class="footer"> | ||
<div class="webgl-logo"></div> | ||
<div class="fullscreen" onclick="gameInstance.SetFullscreen(1)"></div> | ||
<div class="title">DMD2542-Sidescroller-AriffJeff</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Binary file added
BIN
+3.59 MB
...SidescrollerProto-DevinQuinn/Build/DMD2542-SidescrollerPrototype-DevinQuinn.data.unityweb
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
.../DMD2542-SidescrollerProto-DevinQuinn/Build/DMD2542-SidescrollerPrototype-DevinQuinn.json
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,13 @@ | ||
{ | ||
"companyName": "University of Connecticut - DMD2542 - Intro to Game Scripting - Professor Kenneth Thompson", | ||
"productName": "SnakeEyesPrototype - Devin Quinn", | ||
"dataUrl": "DMD2542-SidescrollerPrototype-DevinQuinn.data.unityweb", | ||
"wasmCodeUrl": "DMD2542-SidescrollerPrototype-DevinQuinn.wasm.code.unityweb", | ||
"wasmFrameworkUrl": "DMD2542-SidescrollerPrototype-DevinQuinn.wasm.framework.unityweb", | ||
"TOTAL_MEMORY": 268435456, | ||
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"], | ||
"webglContextAttributes": {"preserveDrawingBuffer": false}, | ||
"splashScreenStyle": "Dark", | ||
"backgroundColor": "#231F20", | ||
"cacheControl": {"default": "must-revalidate"} | ||
} |
Binary file added
BIN
+4.34 MB
...crollerProto-DevinQuinn/Build/DMD2542-SidescrollerPrototype-DevinQuinn.wasm.code.unityweb
Binary file not shown.
Binary file added
BIN
+89.1 KB
...erProto-DevinQuinn/Build/DMD2542-SidescrollerPrototype-DevinQuinn.wasm.framework.unityweb
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
...ipting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DevinQuinn/Build/UnityLoader.js
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...18Fall/Final-Prototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/UnityProgress.js
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,24 @@ | ||
function UnityProgress(gameInstance, progress) { | ||
if (!gameInstance.Module) | ||
return; | ||
if (!gameInstance.logo) { | ||
gameInstance.logo = document.createElement("div"); | ||
gameInstance.logo.className = "logo " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.container.appendChild(gameInstance.logo); | ||
} | ||
if (!gameInstance.progress) { | ||
gameInstance.progress = document.createElement("div"); | ||
gameInstance.progress.className = "progress " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.progress.empty = document.createElement("div"); | ||
gameInstance.progress.empty.className = "empty"; | ||
gameInstance.progress.appendChild(gameInstance.progress.empty); | ||
gameInstance.progress.full = document.createElement("div"); | ||
gameInstance.progress.full.className = "full"; | ||
gameInstance.progress.appendChild(gameInstance.progress.full); | ||
gameInstance.container.appendChild(gameInstance.progress); | ||
} | ||
gameInstance.progress.full.style.width = (100 * progress) + "%"; | ||
gameInstance.progress.empty.style.width = (100 * (1 - progress)) + "%"; | ||
if (progress == 1) | ||
gameInstance.logo.style.display = gameInstance.progress.style.display = "none"; | ||
} |
Binary file added
BIN
+13 KB
...ng/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/favicon.ico
Binary file not shown.
Binary file added
BIN
+345 Bytes
...inal-Prototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/fullscreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+155 Bytes
...totype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/progressEmpty.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...otype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/progressEmpty.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+137 Bytes
...ototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/progressFull.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...totype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/progressFull.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.29 KB
...ototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/progressLogo.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.21 KB
...totype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/progressLogo.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
...ting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/style.css
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,18 @@ | ||
.webgl-content * {border: 0; margin: 0; padding: 0} | ||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
|
||
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);} | ||
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;} | ||
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;} | ||
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;} | ||
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;} | ||
|
||
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');} | ||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');} | ||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');} | ||
|
||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;} | ||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;} | ||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;} | ||
.webgl-content .footer .title {margin-right: 10px; float: right;} | ||
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;} |
Binary file added
BIN
+3.5 KB
...inal-Prototype/DMD2542-SidescrollerProto-DevinQuinn/TemplateData/webgl-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
...IntroToScripting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DevinQuinn/index.html
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,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>Unity WebGL Player | SnakeEyesPrototype - Devin Quinn</title> | ||
<link rel="shortcut icon" href="TemplateData/favicon.ico"> | ||
<link rel="stylesheet" href="TemplateData/style.css"> | ||
<script src="TemplateData/UnityProgress.js"></script> | ||
<script src="Build/UnityLoader.js"></script> | ||
<script> | ||
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/DMD2542-SidescrollerPrototype-DevinQuinn.json", {onProgress: UnityProgress}); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="webgl-content"> | ||
<div id="gameContainer" style="width: 960px; height: 600px"></div> | ||
<div class="footer"> | ||
<div class="webgl-logo"></div> | ||
<div class="fullscreen" onclick="gameInstance.SetFullscreen(1)"></div> | ||
<div class="title">SnakeEyesPrototype - Devin Quinn</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Binary file added
BIN
+6 KB
...IntroToScripting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DonnaFaryna/.DS_Store
Binary file not shown.
Binary file added
BIN
+1.08 MB
...2-SidescrollerProto-DonnaFaryna/Build/DMD2542-SidescrollerProto-DonnaFaryna.data.unityweb
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...pe/DMD2542-SidescrollerProto-DonnaFaryna/Build/DMD2542-SidescrollerProto-DonnaFaryna.json
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,13 @@ | ||
{ | ||
"companyName": "DefaultCompany", | ||
"productName": "Project04-Final-DonnaFaryna", | ||
"dataUrl": "DMD2542-SidescrollerProto-DonnaFaryna.data.unityweb", | ||
"wasmCodeUrl": "DMD2542-SidescrollerProto-DonnaFaryna.wasm.code.unityweb", | ||
"wasmFrameworkUrl": "DMD2542-SidescrollerProto-DonnaFaryna.wasm.framework.unityweb", | ||
"TOTAL_MEMORY": 268435456, | ||
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"], | ||
"webglContextAttributes": {"preserveDrawingBuffer": false}, | ||
"splashScreenStyle": "Dark", | ||
"backgroundColor": "#231F20", | ||
"cacheControl": {"default": "must-revalidate"} | ||
} |
Binary file added
BIN
+2.88 MB
...escrollerProto-DonnaFaryna/Build/DMD2542-SidescrollerProto-DonnaFaryna.wasm.code.unityweb
Binary file not shown.
Binary file added
BIN
+88.1 KB
...llerProto-DonnaFaryna/Build/DMD2542-SidescrollerProto-DonnaFaryna.wasm.framework.unityweb
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
...pting/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DonnaFaryna/Build/UnityLoader.js
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...8Fall/Final-Prototype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/UnityProgress.js
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,24 @@ | ||
function UnityProgress(gameInstance, progress) { | ||
if (!gameInstance.Module) | ||
return; | ||
if (!gameInstance.logo) { | ||
gameInstance.logo = document.createElement("div"); | ||
gameInstance.logo.className = "logo " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.container.appendChild(gameInstance.logo); | ||
} | ||
if (!gameInstance.progress) { | ||
gameInstance.progress = document.createElement("div"); | ||
gameInstance.progress.className = "progress " + gameInstance.Module.splashScreenStyle; | ||
gameInstance.progress.empty = document.createElement("div"); | ||
gameInstance.progress.empty.className = "empty"; | ||
gameInstance.progress.appendChild(gameInstance.progress.empty); | ||
gameInstance.progress.full = document.createElement("div"); | ||
gameInstance.progress.full.className = "full"; | ||
gameInstance.progress.appendChild(gameInstance.progress.full); | ||
gameInstance.container.appendChild(gameInstance.progress); | ||
} | ||
gameInstance.progress.full.style.width = (100 * progress) + "%"; | ||
gameInstance.progress.empty.style.width = (100 * (1 - progress)) + "%"; | ||
if (progress == 1) | ||
gameInstance.logo.style.display = gameInstance.progress.style.display = "none"; | ||
} |
Binary file added
BIN
+13 KB
...g/2018Fall/Final-Prototype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/favicon.ico
Binary file not shown.
Binary file added
BIN
+345 Bytes
...nal-Prototype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/fullscreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+155 Bytes
...otype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/progressEmpty.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...type/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/progressEmpty.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+137 Bytes
...totype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/progressFull.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...otype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/progressFull.Light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.29 KB
...totype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/progressLogo.Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.21 KB
...otype/DMD2542-SidescrollerProto-DonnaFaryna/TemplateData/progressLogo.Light.png
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.