mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-03-06 23:57:30 +08:00
Fix input wrap
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user