mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-21 22:34:44 +08:00
SelectModel fixed
This commit is contained in:
5
js/Utility.js
Normal file
5
js/Utility.js
Normal file
@@ -0,0 +1,5 @@
|
||||
export default class Utility {
|
||||
static clamp(val, min, max) {
|
||||
return Math.min(Math.max(val, min), max)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user