lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
37 lines • 839 B
JavaScript
import Appendable from "./core/Appendable";
import { configLineSystem } from "../systems/configSystems/configLineSystem";
export default class Line extends Appendable {
_bloom;
get bloom() {
return this._bloom;
}
set bloom(value) {
this._bloom = value;
configLineSystem.add(this);
}
_from;
get from() {
return this._from;
}
set from(value) {
this._from = value;
configLineSystem.add(this);
}
_to;
get to() {
return this._to;
}
set to(value) {
this._to = value;
configLineSystem.add(this);
}
_thickness = 1;
get thickness() {
return this._thickness;
}
set thickness(value) {
this._thickness = value;
configLineSystem.add(this);
}
}
//# sourceMappingURL=Line.js.map