Moving node and pins information to Configuration

This commit is contained in:
barsdeveloper
2023-01-06 18:23:56 +01:00
parent af44de4539
commit a3e0d6be2b
29 changed files with 1548 additions and 1100 deletions

View File

@@ -3,9 +3,18 @@ import IEntity from "./IEntity"
export default class VectorEntity extends IEntity {
static attributes = {
X: 0,
Y: 0,
Z: 0,
X: {
value: 0,
expected: true,
},
Y: {
value: 0,
expected: true,
},
Z: {
value: 0,
expected: true,
},
}
static {