fix
BIN
98/307312_Windows_98_v2.swf
Normal file
3
98/cover.svg
Normal file
After Width: | Height: | Size: 17 KiB |
28
98/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Windows 98</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("307312_Windows_98_v2.swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
12
Selenite.csproj
Normal file
@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="3.1.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
56
Startup.cs
Normal file
@ -0,0 +1,56 @@
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using System.IO;
|
||||
|
||||
public class Startup
|
||||
{
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||||
{
|
||||
if (env.IsDevelopment())
|
||||
{
|
||||
app.UseDeveloperExceptionPage();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
app.UseStaticFiles(new StaticFileOptions
|
||||
{
|
||||
FileProvider = new Microsoft.Extensions.FileProviders.PhysicalFileProvider(
|
||||
Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")),
|
||||
RequestPath = ""
|
||||
});
|
||||
|
||||
app.Map("/projects", HandleRequest("projects.html"));
|
||||
app.Map("/bookmarklets", HandleRequest("bookmarklets.html"));
|
||||
app.Map("/settings", HandleRequest("settings.html"));
|
||||
app.Map("/support", HandleRequest("support.html"));
|
||||
app.Map("/about", HandleRequest("about.html"));
|
||||
app.Map("/transfer", HandleRequest("transfer.html"));
|
||||
app.Map("/suggest", HandleRequest("suggest.html"));
|
||||
app.Map("/contact", HandleRequest("contact.html"));
|
||||
app.Map("/ad", HandleRequest("ad.html"));
|
||||
|
||||
app.Run(async (context) =>
|
||||
{
|
||||
await context.Response.WriteAsync("Not Found");
|
||||
});
|
||||
}
|
||||
|
||||
private static Action<IApplicationBuilder> HandleRequest(string fileName)
|
||||
{
|
||||
return app => app.Run(async context =>
|
||||
{
|
||||
await context.Response.SendFileAsync(Path.Combine(Directory.GetCurrentDirectory(), fileName));
|
||||
});
|
||||
}
|
||||
}
|
BIN
bikechamp/517004_bike_champ.swf
Normal file
3
bikechamp/cover.svg
Normal file
After Width: | Height: | Size: 40 KiB |
28
bikechamp/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Bike Champ</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("517004_bike_champ.swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
bikechamp2/546467_bike_champ_2.swf
Normal file
3
bikechamp2/cover.svg
Normal file
After Width: | Height: | Size: 8.1 KiB |
28
bikechamp2/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Bike Champ 2</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("546467_bike_champ_2.swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
395
bootstrap3.css
vendored
Normal file
@ -0,0 +1,395 @@
|
||||
/*!
|
||||
* Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
|
||||
*/
|
||||
/*!
|
||||
* Bootstrap v3.4.1 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2019 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/
|
||||
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
|
||||
|
||||
.modal-open {
|
||||
overflow: hidden;
|
||||
}
|
||||
.close {
|
||||
float:right;
|
||||
}
|
||||
.modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1050;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
outline: 0;
|
||||
}
|
||||
.modal.fade .modal-dialog {
|
||||
-webkit-transform: translate(0, -25%);
|
||||
-ms-transform: translate(0, -25%);
|
||||
-o-transform: translate(0, -25%);
|
||||
transform: translate(0, -25%);
|
||||
-webkit-transition: -webkit-transform 0.3s ease-out;
|
||||
-o-transition: -o-transform 0.3s ease-out;
|
||||
transition: transform 0.3s ease-out;
|
||||
}
|
||||
.modal.in .modal-dialog {
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
-o-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
.modal-open .modal {
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.modal-dialog {
|
||||
position: relative;
|
||||
width: auto;
|
||||
margin: 10px;
|
||||
}
|
||||
.modal-content {
|
||||
position: relative;
|
||||
background-color: #ffffff;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
border: 1px solid #999999;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||||
outline: 0;
|
||||
}
|
||||
.modal-backdrop {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1040;
|
||||
background-color: #000000;
|
||||
}
|
||||
.modal-backdrop.fade {
|
||||
filter: alpha(opacity=0);
|
||||
opacity: 0;
|
||||
}
|
||||
.modal-backdrop.in {
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0.5;
|
||||
}
|
||||
.modal-header {
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
.modal-header .close {
|
||||
margin-top: -2px;
|
||||
}
|
||||
.modal-title {
|
||||
margin: 0;
|
||||
line-height: 1.42857143;
|
||||
}
|
||||
.modal-body {
|
||||
position: relative;
|
||||
padding: 15px;
|
||||
}
|
||||
.modal-footer {
|
||||
padding: 15px;
|
||||
text-align: right;
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.modal-footer .btn + .btn {
|
||||
margin-bottom: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.modal-footer .btn-group .btn + .btn {
|
||||
margin-left: -1px;
|
||||
}
|
||||
.modal-footer .btn-block + .btn-block {
|
||||
margin-left: 0;
|
||||
}
|
||||
.modal-scrollbar-measure {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
overflow: scroll;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.modal-dialog {
|
||||
width: 600px;
|
||||
margin: 30px auto;
|
||||
}
|
||||
.modal-content {
|
||||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.modal-sm {
|
||||
width: 300px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.modal-lg {
|
||||
width: 900px;
|
||||
}
|
||||
}
|
||||
.clearfix:before,
|
||||
.clearfix:after,
|
||||
.modal-header:before,
|
||||
.modal-header:after,
|
||||
.modal-footer:before,
|
||||
.modal-footer:after {
|
||||
display: table;
|
||||
content: " ";
|
||||
}
|
||||
.clearfix:after,
|
||||
.modal-header:after,
|
||||
.modal-footer:after {
|
||||
clear: both;
|
||||
}
|
||||
.center-block {
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
.pull-right {
|
||||
float: right !important;
|
||||
}
|
||||
.pull-left {
|
||||
float: left !important;
|
||||
}
|
||||
.hide {
|
||||
display: none !important;
|
||||
}
|
||||
.show {
|
||||
display: block !important;
|
||||
}
|
||||
.invisible {
|
||||
visibility: hidden;
|
||||
}
|
||||
.text-hide {
|
||||
font: 0/0 a;
|
||||
color: transparent;
|
||||
text-shadow: none;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
}
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
.affix {
|
||||
position: fixed;
|
||||
}
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
.visible-xs,
|
||||
.visible-sm,
|
||||
.visible-md,
|
||||
.visible-lg {
|
||||
display: none !important;
|
||||
}
|
||||
.visible-xs-block,
|
||||
.visible-xs-inline,
|
||||
.visible-xs-inline-block,
|
||||
.visible-sm-block,
|
||||
.visible-sm-inline,
|
||||
.visible-sm-inline-block,
|
||||
.visible-md-block,
|
||||
.visible-md-inline,
|
||||
.visible-md-inline-block,
|
||||
.visible-lg-block,
|
||||
.visible-lg-inline,
|
||||
.visible-lg-inline-block {
|
||||
display: none !important;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.visible-xs {
|
||||
display: block !important;
|
||||
}
|
||||
table.visible-xs {
|
||||
display: table !important;
|
||||
}
|
||||
tr.visible-xs {
|
||||
display: table-row !important;
|
||||
}
|
||||
th.visible-xs,
|
||||
td.visible-xs {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.visible-xs-block {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.visible-xs-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.visible-xs-inline-block {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
.visible-sm {
|
||||
display: block !important;
|
||||
}
|
||||
table.visible-sm {
|
||||
display: table !important;
|
||||
}
|
||||
tr.visible-sm {
|
||||
display: table-row !important;
|
||||
}
|
||||
th.visible-sm,
|
||||
td.visible-sm {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
.visible-sm-block {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
.visible-sm-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
.visible-sm-inline-block {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.visible-md {
|
||||
display: block !important;
|
||||
}
|
||||
table.visible-md {
|
||||
display: table !important;
|
||||
}
|
||||
tr.visible-md {
|
||||
display: table-row !important;
|
||||
}
|
||||
th.visible-md,
|
||||
td.visible-md {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.visible-md-block {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.visible-md-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.visible-md-inline-block {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.visible-lg {
|
||||
display: block !important;
|
||||
}
|
||||
table.visible-lg {
|
||||
display: table !important;
|
||||
}
|
||||
tr.visible-lg {
|
||||
display: table-row !important;
|
||||
}
|
||||
th.visible-lg,
|
||||
td.visible-lg {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.visible-lg-block {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.visible-lg-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.visible-lg-inline-block {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.hidden-xs {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
.hidden-sm {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.hidden-md {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.hidden-lg {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
.visible-print {
|
||||
display: none !important;
|
||||
}
|
||||
@media print {
|
||||
.visible-print {
|
||||
display: block !important;
|
||||
}
|
||||
table.visible-print {
|
||||
display: table !important;
|
||||
}
|
||||
tr.visible-print {
|
||||
display: table-row !important;
|
||||
}
|
||||
th.visible-print,
|
||||
td.visible-print {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
.visible-print-block {
|
||||
display: none !important;
|
||||
}
|
||||
@media print {
|
||||
.visible-print-block {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
.visible-print-inline {
|
||||
display: none !important;
|
||||
}
|
||||
@media print {
|
||||
.visible-print-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
}
|
||||
.visible-print-inline-block {
|
||||
display: none !important;
|
||||
}
|
||||
@media print {
|
||||
.visible-print-inline-block {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
.hidden-print {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
@ -99,7 +99,7 @@ This version of eaglercraft you are using right now is from 11/05/2022
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>ALLAH IS THE ONLY GOD</title>
|
||||
<title>CMM Client</title>
|
||||
|
||||
<script type="text/javascript">
|
||||
window.addEventListener("load", function() {
|
||||
@ -111,7 +111,7 @@ window.addEventListener("load", function() {
|
||||
container: "game_frame", assetsURI: getAssetsURI(),
|
||||
serverWorkerURI: createWorkerURI("sp_worker"),
|
||||
worldsFolder: "TEST", mainMenu: { splashes: [
|
||||
"ALLAHU AKBAR!", "JIHAD!"
|
||||
"hi"
|
||||
]}, worldsFolder: "OFFLINE", relays: [
|
||||
{ addr: "wss://relay.deev.is/", name: "lax1dude relay #1", primary: relayId == 0 },
|
||||
{ addr: "wss://relay.lax1dude.net/", name: "lax1dude relay #2", primary: relayId == 1 },
|
||||
|
BIN
copter/copter(www.albinoblacksheep.com).swf
Normal file
3
copter/cover.svg
Normal file
After Width: | Height: | Size: 23 KiB |
28
copter/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Copter</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("copter(www.albinoblacksheep.com).swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
creeper/653546_cc2-v4.swf
Normal file
3
creeper/cover.svg
Normal file
After Width: | Height: | Size: 7.0 KiB |
28
creeper/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Creep Craft 2</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("653546_cc2-v4.swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
crimsonfantasia/14qAOu.png
Normal file
After Width: | Height: | Size: 175 KiB |
BIN
crimsonfantasia/Build/Crimson Fantasia [WebGL].data
Normal file
1
crimsonfantasia/Build/Crimson Fantasia [WebGL].loader.js
Normal file
BIN
crimsonfantasia/Build/Crimson Fantasia [WebGL].wasm
Normal file
@ -0,0 +1 @@
|
||||
{"Keys":["com.unity.services.core.environment-name","com.unity.services.core.cloud-environment","com.unity.services.leaderboards.version","com.unity.services.leaderboards.initializer-assembly-qualified-names","com.unity.services.core.version","com.unity.services.core.initializer-assembly-qualified-names","com.unity.services.authentication.version","com.unity.services.authentication.initializer-assembly-qualified-names","com.unity.services.core.all-package-names"],"Values":[{"m_Value":"production","m_IsReadOnly":false},{"m_Value":"production","m_IsReadOnly":false},{"m_Value":"1.0.0-exp.1","m_IsReadOnly":true},{"m_Value":"Unity.Services.Leaderboards.LeaderboardsInitializer, Unity.Services.Leaderboards, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_IsReadOnly":true},{"m_Value":"1.10.1","m_IsReadOnly":true},{"m_Value":"Unity.Services.Core.Registration.CorePackageInitializer, Unity.Services.Core.Registration, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_IsReadOnly":true},{"m_Value":"2.6.1","m_IsReadOnly":true},{"m_Value":"Unity.Services.Authentication.AuthenticationPackageInitializer, Unity.Services.Authentication, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_IsReadOnly":true},{"m_Value":"com.unity.services.leaderboards;com.unity.services.core;com.unity.services.authentication","m_IsReadOnly":false}]}
|
BIN
crimsonfantasia/TemplateData/favicon.ico
Normal file
After Width: | Height: | Size: 2.3 KiB |
1
crimsonfantasia/config.json
Normal file
@ -0,0 +1 @@
|
||||
{"dataUrl":"Build/Crimson Fantasia [WebGL].data","frameworkUrl":"Build/Crimson Fantasia [WebGL].framework.js","codeUrl":"Build/Crimson Fantasia [WebGL].wasm","streamingAssetsUrl":"StreamingAssets","companyName":"CROW'S NEST","productName":"Crimson Fantasia","productVersion":"v1.1.3"}
|
132
crimsonfantasia/index.html
Normal file
@ -0,0 +1,132 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Crimson Fantasia</title>
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
<style>
|
||||
html {
|
||||
overflow-x: hidden;
|
||||
box-sizing: border-box;
|
||||
background-color: black;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="unity-container" class="unity-desktop">
|
||||
<canvas id="unity-canvas" width=1280 height=720></canvas>
|
||||
<div id="unity-loading-bar">
|
||||
<div id="unity-logo"></div>
|
||||
<div id="unity-progress-bar-empty">
|
||||
<div id="unity-progress-bar-full"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="unity-warning"> </div>
|
||||
<div id="unity-footer">
|
||||
<div id="unity-webgl-logo"></div>
|
||||
<div id="unity-fullscreen-button"></div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var container = document.querySelector("#unity-container");
|
||||
var canvas = document.querySelector("#unity-canvas");
|
||||
var loadingBar = document.querySelector("#unity-loading-bar");
|
||||
var progressBarFull = document.querySelector("#unity-progress-bar-full");
|
||||
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
|
||||
var warningBanner = document.querySelector("#unity-warning");
|
||||
|
||||
// Shows a temporary message banner/ribbon for a few seconds, or
|
||||
// a permanent error message on top of the canvas if type=='error'.
|
||||
// If type=='warning', a yellow highlight color is used.
|
||||
// Modify or remove this function to customize the visually presented
|
||||
// way that non-critical warnings and error messages are presented to the
|
||||
// user.
|
||||
function unityShowBanner(msg, type) {
|
||||
function updateBannerVisibility() {
|
||||
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
|
||||
}
|
||||
var div = document.createElement('div');
|
||||
div.innerHTML = msg;
|
||||
warningBanner.appendChild(div);
|
||||
if (type == 'error') div.style = 'background: red; padding: 10px;';
|
||||
else {
|
||||
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
|
||||
setTimeout(function() {
|
||||
warningBanner.removeChild(div);
|
||||
updateBannerVisibility();
|
||||
}, 5000);
|
||||
}
|
||||
updateBannerVisibility();
|
||||
}
|
||||
|
||||
var buildUrl = "Build";
|
||||
var loaderUrl = buildUrl + "/Crimson Fantasia [WebGL].loader.js";
|
||||
var config = {
|
||||
dataUrl: buildUrl + "/Crimson Fantasia [WebGL].data",
|
||||
frameworkUrl: buildUrl + "/Crimson Fantasia [WebGL].framework.js",
|
||||
codeUrl: buildUrl + "/Crimson Fantasia [WebGL].wasm",
|
||||
streamingAssetsUrl: "StreamingAssets",
|
||||
companyName: "CROW'S NEST",
|
||||
productName: "Crimson Fantasia",
|
||||
productVersion: "v1.1.3",
|
||||
showBanner: unityShowBanner,
|
||||
};
|
||||
|
||||
// By default Unity keeps WebGL canvas render target size matched with
|
||||
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
|
||||
// Set this to false if you want to decouple this synchronization from
|
||||
// happening inside the engine, and you would instead like to size up
|
||||
// the canvas DOM size and WebGL render target sizes yourself.
|
||||
// config.matchWebGLToCanvasSize = false;
|
||||
|
||||
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
|
||||
// Mobile device style: fill the whole browser client area with the game canvas:
|
||||
|
||||
var meta = document.createElement('meta');
|
||||
meta.name = 'viewport';
|
||||
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
|
||||
document.getElementsByTagName('head')[0].appendChild(meta);
|
||||
container.className = "unity-mobile";
|
||||
canvas.className = "unity-mobile";
|
||||
|
||||
// To lower canvas resolution on mobile devices to gain some
|
||||
// performance, uncomment the following line:
|
||||
// config.devicePixelRatio = 1;
|
||||
|
||||
unityShowBanner('WebGL builds are not supported on mobile devices.');
|
||||
} else {
|
||||
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
|
||||
|
||||
canvas.style.width = "1280px";
|
||||
canvas.style.height = "720px";
|
||||
}
|
||||
|
||||
canvas.style.background = "url('" + buildUrl + "/Crimson Fantasia [WebGL].jpg') center / cover";
|
||||
loadingBar.style.display = "block";
|
||||
|
||||
var script = document.createElement("script");
|
||||
script.src = loaderUrl;
|
||||
script.onload = () => {
|
||||
createUnityInstance(canvas, config, (progress) => {
|
||||
progressBarFull.style.width = 100 * progress + "%";
|
||||
}).then((unityInstance) => {
|
||||
loadingBar.style.display = "none";
|
||||
fullscreenButton.onclick = () => {
|
||||
unityInstance.SetFullscreen(1);
|
||||
};
|
||||
}).catch((message) => {
|
||||
alert(message);
|
||||
});
|
||||
};
|
||||
document.body.appendChild(script);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
demo/advanced.swf
Normal file
3
demo/cover.svg
Normal file
After Width: | Height: | Size: 11 KiB |
28
demo/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Advanced Terrain Demo</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("advanced.swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
2
deps.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export { serve } from 'https://deno.land/std/http/server.ts';
|
||||
export { join } from 'https://deno.land/std/path/mod.ts';
|
BIN
dune/603794_DuneBuggyDash_NG_secure.swf
Normal file
3
dune/cover.svg
Normal file
After Width: | Height: | Size: 27 KiB |
28
dune/index.html
Normal file
@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script src="/js/all.js"></script>
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Dune Buggy Dash</title>
|
||||
<style>html{background-color:#000;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ruffle" width="100%" height="100%"></div>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<script>
|
||||
window.RufflePlayer = window.RufflePlayer || {};
|
||||
window.addEventListener("load", (event) => {
|
||||
const ruffle = window.RufflePlayer.newest();
|
||||
const player = ruffle.createPlayer();
|
||||
const container = document.getElementById("ruffle");
|
||||
player.id = "player";
|
||||
player.style.width = "100%";
|
||||
player.style.height = "100%";
|
||||
container.appendChild(player);
|
||||
player.load("603794_DuneBuggyDash_NG_secure.swf");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
33
eggycar/404.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>We not find page</title>
|
||||
|
||||
<style media="screen">
|
||||
body { background: #ECEFF1; color: rgba(0,0,0,0.87); font-family: Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; }
|
||||
#message { background: white; max-width: 360px; margin: 100px auto 16px; padding: 32px 24px 16px; border-radius: 3px; }
|
||||
#message h3 { color: #888; font-weight: normal; font-size: 16px; margin: 16px 0 12px; }
|
||||
#message h2 { color: #ffa100; font-weight: bold; font-size: 16px; margin: 0 0 8px; }
|
||||
#message h1 { font-size: 22px; font-weight: 300; color: rgba(0,0,0,0.6); margin: 0 0 16px;}
|
||||
#message p { line-height: 140%; margin: 16px 0 24px; font-size: 14px; }
|
||||
#message a { display: block; text-align: center; background: #039be5; text-transform: uppercase; text-decoration: none; color: white; padding: 16px; border-radius: 4px; }
|
||||
#message, #message a { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
|
||||
#load { color: rgba(0,0,0,0.4); text-align: center; font-size: 13px; }
|
||||
@media (max-width: 600px) {
|
||||
body, #message { margin-top: 0; background: white; box-shadow: none; }
|
||||
body { border-top: 16px solid #ffa100; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="message">
|
||||
<h2>404</h2>
|
||||
<h1>amar derr page pai nai</h1>
|
||||
<p>Amar derr file pai ni ay site ay. Check coro url mistake err zono.</p>
|
||||
<h3>Why etta deek ta see?</h3>
|
||||
<p>Page generate by firebase comand lin modify it using <code>404.html</code> file in your project's configured <code>public</code> directory.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
1
eggycar/@source.txt
Normal file
@ -0,0 +1 @@
|
||||
https://html5.gamedistribution.com/rvvASMiM/59a98bf799ef499d9d7b9285bccaa196/
|
@ -0,0 +1 @@
|
||||
ahrefs-site-verification_585f4691b0e399a160cb6e0c016b4fcd7b0c55de8ae4d7dc4c83d5d0761520b3
|
28
eggycar/appmanifest.json
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "Eggy Car",
|
||||
"short_name": "Eggy Car",
|
||||
"start_url": "index.html",
|
||||
"display": "fullscreen",
|
||||
"orientation": "any",
|
||||
"icons": [{
|
||||
"src": "icon-16.png",
|
||||
"sizes": "16x16",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "icon-32.png",
|
||||
"sizes": "32x32",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "icon-128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "icon-256.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "icon-256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}]
|
||||
}
|
BIN
eggycar/changaone_regular.ttf
Normal file
3
eggycar/cover.svg
Normal file
After Width: | Height: | Size: 87 KiB |
1
eggycar/data.js
Normal file
BIN
eggycar/eggy-car.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
eggycar/favicon.ico
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
eggycar/icon-256.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
eggycar/images/a_coin-sheet0.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
eggycar/images/a_dial-sheet0.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
eggycar/images/a_dial-sheet1.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
eggycar/images/a_dial_needle-sheet0.png
Normal file
After Width: | Height: | Size: 539 B |
BIN
eggycar/images/a_egg-sheet0.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
eggycar/images/a_egg_crack-sheet0.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
eggycar/images/a_egg_crack-sheet1.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
eggycar/images/a_egg_outline-sheet0.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
eggycar/images/a_focus-sheet0.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
eggycar/images/a_loading_bar.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
eggycar/images/a_loading_frame-sheet0.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
eggycar/images/a_logo-sheet0.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
eggycar/images/a_logo_tyre-sheet0.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
eggycar/images/a_power_up-sheet0.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
eggycar/images/a_power_up-sheet1.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
eggycar/images/a_track-sheet0.png
Normal file
After Width: | Height: | Size: 206 KiB |
BIN
eggycar/images/a_track-sheet1.png
Normal file
After Width: | Height: | Size: 246 KiB |
BIN
eggycar/images/a_track-sheet2.png
Normal file
After Width: | Height: | Size: 260 KiB |
BIN
eggycar/images/a_track-sheet3.png
Normal file
After Width: | Height: | Size: 204 KiB |
BIN
eggycar/images/a_track-sheet4.png
Normal file
After Width: | Height: | Size: 275 KiB |
BIN
eggycar/images/a_track-sheet5.png
Normal file
After Width: | Height: | Size: 130 KiB |
BIN
eggycar/images/bg_parrallax_front-sheet0.png
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
eggycar/images/blockage-sheet0.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
eggycar/images/btn_car_selection-sheet0.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
eggycar/images/btn_challenge-sheet0.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
eggycar/images/btn_close-sheet0.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
eggycar/images/btn_continue-sheet0.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
eggycar/images/btn_invite-sheet0.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
eggycar/images/btn_leaderboard-sheet0.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
eggycar/images/btn_music-sheet0.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
eggycar/images/btn_play-sheet0.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
eggycar/images/btn_sound-sheet0.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
eggycar/images/car_0-sheet0.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
eggycar/images/car_0_tyre-sheet0.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
eggycar/images/car_0_tyre-sheet1.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
eggycar/images/car_sel_button-sheet0.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
eggycar/images/car_sel_button-sheet1.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
eggycar/images/car_sel_card-sheet0.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
eggycar/images/car_sel_card-sheet1.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
eggycar/images/car_sel_card-sheet2.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
eggycar/images/car_sel_frame-sheet0.png
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
eggycar/images/challenge_pic-sheet0.png
Normal file
After Width: | Height: | Size: 117 B |
BIN
eggycar/images/dotted_line.png
Normal file
After Width: | Height: | Size: 112 B |
BIN
eggycar/images/egg_freeze_vfx-sheet0.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
eggycar/images/ground_detector-sheet0.png
Normal file
After Width: | Height: | Size: 94 B |
BIN
eggycar/images/hud_paddle-sheet0.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
eggycar/images/hud_paddle-sheet1.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
eggycar/images/icon_coin-sheet0.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
eggycar/images/icon_trophy-sheet0.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
eggycar/images/particles.png
Normal file
After Width: | Height: | Size: 512 B |
BIN
eggycar/images/particles2.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
eggycar/images/particles3.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
eggycar/images/particles4.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
eggycar/images/power_up_bar.png
Normal file
After Width: | Height: | Size: 421 B |