mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-16 02:22:07 -05:00
some shit
This commit is contained in:
parent
28a7297e49
commit
36a904c66e
@ -577,5 +577,10 @@
|
|||||||
"name": "n-gon",
|
"name": "n-gon",
|
||||||
"directory": "ngon",
|
"directory": "ngon",
|
||||||
"image": "favicon.ico"
|
"image": "favicon.ico"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Subway Surfers",
|
||||||
|
"directory": "subway-surfers-ny",
|
||||||
|
"image": "NewYorkIcon.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
20293
subway-surfers/4399.z.js
20293
subway-surfers/4399.z.js
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"companyName": "Kiloo Games",
|
|
||||||
"productName": "Subway Surfers",
|
|
||||||
"productVersion": "1.94.0",
|
|
||||||
"dataUrl": "SanFrancisco.data.unityweb",
|
|
||||||
"wasmCodeUrl": "SanFrancisco.wasm.code.unityweb",
|
|
||||||
"wasmFrameworkUrl": "SanFrancisco.wasm.framework.unityweb",
|
|
||||||
"asmCodeUrl": "SanFrancisco.asm.code.unityweb",
|
|
||||||
"asmMemoryUrl": "SanFrancisco.asm.memory.unityweb",
|
|
||||||
"asmFrameworkUrl": "SanFrancisco.asm.framework.unityweb",
|
|
||||||
"TOTAL_MEMORY": 369098752,
|
|
||||||
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
|
|
||||||
"webglContextAttributes": {"preserveDrawingBuffer": false},
|
|
||||||
"splashScreenStyle": "Dark",
|
|
||||||
"backgroundColor": "#231F20",
|
|
||||||
"developmentBuild": false,
|
|
||||||
"multithreading": false,
|
|
||||||
"unityVersion": "2019.4.18f1"
|
|
||||||
}
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Before Width: | Height: | Size: 95 KiB |
Binary file not shown.
Before Width: | Height: | Size: 7.3 MiB |
@ -1,39 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<script src="/js/main.js"></script>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<title>Subway Surfers | 3kh0</title>
|
|
||||||
<link rel="icon" href="img/FirstAvatar.png">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="4399.z.js"></script>
|
|
||||||
<script>
|
|
||||||
window.config = {
|
|
||||||
loader: "unity",
|
|
||||||
debug: false,
|
|
||||||
maxRatio: 16 / 9,
|
|
||||||
minRatio: 9 / 16,
|
|
||||||
|
|
||||||
title: "Subway Surfers: San Francisco",
|
|
||||||
|
|
||||||
unityVersion: "2019.4.18f1",
|
|
||||||
unityWebglBuildUrl: "Build/SanFrancisco.json",
|
|
||||||
|
|
||||||
fileSize: 35,
|
|
||||||
cachedDecompressedFileSizes: {
|
|
||||||
"SanFrancisco.asm.code.unityweb": 9077143,
|
|
||||||
"SanFrancisco.asm.framework.unityweb": 86369,
|
|
||||||
"SanFrancisco.asm.memory.unityweb": 951447,
|
|
||||||
"SanFrancisco.data.unityweb": 18323917,
|
|
||||||
"SanFrancisco.wasm.code.unityweb": 7279617,
|
|
||||||
"SanFrancisco.wasm.framework.unityweb": 90693,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<script src="master-loader.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,29 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var scripts = document.getElementsByTagName("script"),
|
|
||||||
scriptUrl = scripts[scripts.length - 1].src,
|
|
||||||
root = scriptUrl.split("master-loader.js")[0],
|
|
||||||
loaders = {
|
|
||||||
unity: "unity.js",
|
|
||||||
"unity-beta": "unity-beta.js",
|
|
||||||
"unity-2020": "unity-2020.js"
|
|
||||||
};
|
|
||||||
if (0 <= window.location.href.indexOf("pokiForceLocalLoader") && (loaders.unity = "/unity/dist/unity.js", loaders["unity-beta"] = "/unity-beta/dist/unity-beta.js", loaders["unity-2020"] = "/unity-2020/dist/unity-2020.js", root = "/loaders"), !window.config) throw Error("window.config not found");
|
|
||||||
var loader = loaders[window.config.loader];
|
|
||||||
if (!loader) throw Error('Loader "' + window.config.loader + '" not found');
|
|
||||||
if (!window.config.unityWebglLoaderUrl) {
|
|
||||||
var versionSplit = window.config.unityVersion ? window.config.unityVersion.split(".") : [],
|
|
||||||
year = versionSplit[0],
|
|
||||||
minor = versionSplit[1];
|
|
||||||
switch (year) {
|
|
||||||
case "2019":
|
|
||||||
window.config.unityWebglLoaderUrl = 1 === minor ? "UnityLoader.2019.1.js" : "UnityLoader.2019.2.js";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
window.config.unityWebglLoaderUrl = "UnityLoader.js"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var sdkScript = document.createElement("script");
|
|
||||||
sdkScript.src = "./poki-sdk.js", sdkScript.onload = function() {
|
|
||||||
var i = document.createElement("script");
|
|
||||||
i.src = root + loader, document.body.appendChild(i)
|
|
||||||
}, document.body.appendChild(sdkScript);
|
|
File diff suppressed because one or more lines are too long
@ -1,113 +0,0 @@
|
|||||||
(() => {
|
|
||||||
var e = function (e) {
|
|
||||||
var n = RegExp("[?&]" + e + "=([^&]*)").exec(window.location.search);
|
|
||||||
return n && decodeURIComponent(n[1].replace(/\+/g, " "));
|
|
||||||
},
|
|
||||||
n = "kids" === e("tag"),
|
|
||||||
o = new ((function () {
|
|
||||||
function e() {
|
|
||||||
var e = this;
|
|
||||||
(this.queue = []),
|
|
||||||
(this.init = function (n) {
|
|
||||||
return (
|
|
||||||
void 0 === n && (n = {}),
|
|
||||||
new Promise(function (o, t) {
|
|
||||||
e.enqueue("init", n, o, t);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
(this.rewardedBreak = function () {
|
|
||||||
return new Promise(function (e) {
|
|
||||||
e(!1);
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
(this.noArguments = function (n) {
|
|
||||||
return function () {
|
|
||||||
e.enqueue(n);
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
(this.oneArgument = function (n) {
|
|
||||||
return function (o) {
|
|
||||||
e.enqueue(n, o);
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
(this.handleAutoResolvePromise = function () {
|
|
||||||
return new Promise(function (e) {
|
|
||||||
e();
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
(this.handleAutoResolvePromiseObj = function () {
|
|
||||||
return new Promise(function (e) {
|
|
||||||
e();
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
(this.throwNotLoaded = function () {
|
|
||||||
console.debug("PokiSDK is not loaded yet. Not all methods are available.");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
(e.prototype.enqueue = function (e, o, t, i) {
|
|
||||||
var r = { fn: e, options: o, resolveFn: t, rejectFn: i };
|
|
||||||
n ? i && i() : this.queue.push(r);
|
|
||||||
}),
|
|
||||||
(e.prototype.dequeue = function () {
|
|
||||||
for (
|
|
||||||
var e = function () {
|
|
||||||
var e = n.queue.shift(),
|
|
||||||
o = e,
|
|
||||||
t = o.fn,
|
|
||||||
i = o.options;
|
|
||||||
"function" == typeof window.PokiSDK[t]
|
|
||||||
? (null == e ? void 0 : e.resolveFn) || (null == e ? void 0 : e.rejectFn)
|
|
||||||
? window.PokiSDK[t](i)
|
|
||||||
.then(function () {
|
|
||||||
for (var n = [], o = 0; o < arguments.length; o++) n[o] = arguments[o];
|
|
||||||
"function" == typeof e.resolveFn && e.resolveFn.apply(e, n);
|
|
||||||
})
|
|
||||||
.catch(function () {
|
|
||||||
for (var n = [], o = 0; o < arguments.length; o++) n[o] = arguments[o];
|
|
||||||
"function" == typeof e.rejectFn && e.rejectFn.apply(e, n);
|
|
||||||
})
|
|
||||||
: void 0 !== (null == e ? void 0 : e.fn) && window.PokiSDK[t](i)
|
|
||||||
: console.error("Cannot execute " + e.fn);
|
|
||||||
},
|
|
||||||
n = this;
|
|
||||||
this.queue.length > 0;
|
|
||||||
|
|
||||||
)
|
|
||||||
e();
|
|
||||||
}),
|
|
||||||
e
|
|
||||||
);
|
|
||||||
})())();
|
|
||||||
(window.PokiSDK = { init: o.init, initWithVideoHB: o.init, customEvent: o.throwNotLoaded, destroyAd: o.throwNotLoaded, getLeaderboard: o.handleAutoResolvePromiseObj }),
|
|
||||||
["disableProgrammatic", "gameLoadingStart", "gameLoadingFinished", "gameInteractive", "roundStart", "roundEnd", "muteAd"].forEach(function (e) {
|
|
||||||
window.PokiSDK[e] = o.noArguments(e);
|
|
||||||
}),
|
|
||||||
[
|
|
||||||
"setDebug",
|
|
||||||
"gameplayStart",
|
|
||||||
"gameplayStop",
|
|
||||||
"gameLoadingProgress",
|
|
||||||
"happyTime",
|
|
||||||
"setPlayerAge",
|
|
||||||
"togglePlayerAdvertisingConsent",
|
|
||||||
"toggleNonPersonalized",
|
|
||||||
"setConsentString",
|
|
||||||
"logError",
|
|
||||||
"sendHighscore",
|
|
||||||
"setDebugTouchOverlayController",
|
|
||||||
].forEach(function (e) {
|
|
||||||
window.PokiSDK[e] = o.oneArgument(e);
|
|
||||||
});
|
|
||||||
var t,
|
|
||||||
i = ((t = window.pokiSDKVersion) || (t = e("ab") || "v2.234.2"), "poki-sdk-" + (n ? "kids" : "core") + "-" + t + ".js"),
|
|
||||||
r = document.createElement("script");
|
|
||||||
r.setAttribute("src", i),
|
|
||||||
r.setAttribute("type", "text/javascript"),
|
|
||||||
r.setAttribute("crossOrigin", "anonymous"),
|
|
||||||
(r.onload = function () {
|
|
||||||
return o.dequeue();
|
|
||||||
}),
|
|
||||||
document.head.appendChild(r);
|
|
||||||
})();
|
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user