mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
16 lines
389 B
JavaScript
Executable File
16 lines
389 B
JavaScript
Executable File
import Utility from "../Utility"
|
|
import IntegerEntity from "./IntegerEntity"
|
|
|
|
export default class ColorChannelValueEntity extends IntegerEntity {
|
|
|
|
static attributes = {
|
|
value: Number,
|
|
}
|
|
|
|
/** @param {Object | Number | String} options */
|
|
constructor(options = 0) {
|
|
super(options)
|
|
this.value = Utility.clamp(this.value, 0, 255)
|
|
}
|
|
}
|