-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
3217d8d
commit 81afda1
Showing
18 changed files
with
159 additions
and
49 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
ASSET_PREFIX = ""; | ||
SCRIPT_PREFIX = ""; | ||
SCENE_PATH = "1396021.json"; | ||
CONTEXT_OPTIONS = { | ||
window.ASSET_PREFIX = ""; | ||
window.SCRIPT_PREFIX = ""; | ||
window.SCENE_PATH = "1396021.json"; | ||
window.CONTEXT_OPTIONS = { | ||
'antialias': true, | ||
'alpha': false, | ||
'preserveDrawingBuffer': false, | ||
'preferWebGl2': true, | ||
'powerPreference': "default" | ||
}; | ||
SCRIPTS = [ 118396797, 78753240, 111773112, 108026253, 99767394, 108026252, 109387017, 109848422, 109848430, 110329954, 112098061, 114063573, 114085216, 118401522, 118403201, 120163247, 120163248, 121963195, 123110240 ]; | ||
CONFIG_FILENAME = "config.json"; | ||
INPUT_SETTINGS = { | ||
window.SCRIPTS = [ 118396797, 78753240, 111773112, 108026253, 99767394, 108026252, 109387017, 109848422, 109848430, 110329954, 112098061, 114063573, 114085216, 118401522, 118403201, 120163247, 120163248, 121963195, 123110240 ]; | ||
window.CONFIG_FILENAME = "config.json"; | ||
window.INPUT_SETTINGS = { | ||
useKeyboard: true, | ||
useMouse: true, | ||
useGamepads: false, | ||
useTouch: true | ||
}; | ||
pc.script.legacy = false; | ||
PRELOAD_MODULES = [ | ||
window.PRELOAD_MODULES = [ | ||
{'moduleName' : 'Ammo', 'glueUrl' : 'files/assets/120163247/1/ammo.wasm.js', 'wasmUrl' : 'files/assets/120163246/1/ammo.wasm.wasm', 'fallbackUrl' : 'files/assets/120163248/1/ammo.js', 'preload' : true}, | ||
]; |
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
Large diffs are not rendered by default.
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
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
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 |
---|---|---|
|
@@ -17,3 +17,7 @@ | |
(on :rewarded-break-potions | ||
(fn [] | ||
(update-potions 50 50))) | ||
|
||
(comment | ||
(update-potions 0 0) | ||
) |
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
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
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,11 @@ | ||
(ns enion-cljs.ui.utils | ||
(:require | ||
["bad-words" :as bad-words] | ||
[clojure.string :as str])) | ||
|
||
(def bad-words-filter (new bad-words)) | ||
|
||
(defn- clean [text] | ||
(when-not (str/blank? text) | ||
(.clean bad-words-filter text))) | ||
|
Oops, something went wrong.