Fix input wrap

This commit is contained in:
barsdeveloper
2023-01-30 21:39:31 +01:00
parent cc82c1f6fe
commit 8de12775a7
18 changed files with 282 additions and 135 deletions

View File

@@ -66,7 +66,7 @@ export default class Utility {
/** @param {String} value */
static numberFromText(value = "") {
value = value.toLowerCase()
switch(value) {
switch (value) {
case "zero": return 0
case "one": return 1
case "two": return 2
@@ -416,9 +416,4 @@ export default class Utility {
}
requestAnimationFrame(doAnimation)
}
/** @param {String} value */
static warn(value) {
console.warn("UEBlueprint: " + value)
}
}