37 lines
586 B
JavaScript
37 lines
586 B
JavaScript
export function SignalModel(data) {
|
|
|
|
this.uuid = null;
|
|
this.code = null;
|
|
this.name = null;
|
|
this.modelid = null;
|
|
this.type = null;
|
|
this.direction = null;
|
|
this.ismodel = false;
|
|
this.istexture = false;
|
|
this.modelurl = null;
|
|
// this.textures = {
|
|
// red:null,
|
|
// yellor:null,
|
|
// green:null
|
|
// }
|
|
// this.position = {
|
|
// x:0,
|
|
// y:0,
|
|
// z:0
|
|
// };
|
|
// this.rotation = {
|
|
// x:0,
|
|
// y:0,
|
|
// z:0
|
|
// };
|
|
// this.scale = {
|
|
// x:0,
|
|
// y:0,
|
|
// z:0
|
|
// }
|
|
|
|
this.mesh = null;
|
|
this.meshurl = null;
|
|
this.picurl = null;
|
|
}
|