mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
10 lines
231 B
JavaScript
Executable File
10 lines
231 B
JavaScript
Executable File
import Utility from "../Utility"
|
|
import IntegerEntity from "./IntegerEntity"
|
|
|
|
export default class ColorChannelRealValueEntity extends IntegerEntity {
|
|
|
|
toString() {
|
|
return (this.value / 255).toFixed(6)
|
|
}
|
|
}
|