mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-12 07:34:42 +08:00
16 lines
535 B
JavaScript
16 lines
535 B
JavaScript
/** @typedef {import("./graph/GraphNode").default} GraphNode */
|
|
export default class BlueprintData {
|
|
|
|
constructor() {
|
|
/** @type {GraphNode[]}" */
|
|
this.nodes = new Array()
|
|
this.expandGridSize = 400
|
|
/** @type {number[]} */
|
|
this.additional = /*[2 * this.expandGridSize, 2 * this.expandGridSize]*/[0, 0]
|
|
/** @type {number[]} */
|
|
this.translateValue = /*[this.expandGridSize, this.expandGridSize]*/[0, 0]
|
|
/** @type {number[]} */
|
|
this.mousePosition = [0, 0]
|
|
}
|
|
}
|