Files
ueblueprint/js/entity/ColorChannelRealValueEntity.js
barsdeveloper a55a475f70 Various fixes
2022-10-09 19:20:22 +02:00

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)
}
}