Large mouse events refactoring and cleanup

This commit is contained in:
barsdeveloper
2021-10-04 00:32:22 +02:00
parent dbff7a2c5f
commit fece3da438
17 changed files with 545 additions and 414 deletions

View File

@@ -1,4 +1,4 @@
import UEBlueprintDraggableObject from "./UEBlueprintDraggableObject.js"
import UEBlueprintDraggableObject from "./UEBlueprintDraggableObject"
export default class UEBlueprintObject extends UEBlueprintDraggableObject {
static classInputs = [/*
@@ -86,7 +86,7 @@ export default class UEBlueprintObject extends UEBlueprintDraggableObject {
this.style.setProperty('--ueb-position-x', this.location[0])
this.style.setProperty('--ueb-position-y', this.location[1])
let aDiv = document.createElement('div');
let aDiv = document.createElement('div')
aDiv.innerHTML = this.render()
this.appendChild(aDiv.firstElementChild)
}