Selectable Draggable name simplified

This commit is contained in:
barsdeveloper
2021-10-05 12:28:58 +02:00
parent 0bb3a1ca3e
commit 5032289e86
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import USelectableDraggableObject from "./USelectableDraggableObject" import USelectableDraggable from "./USelectableDraggable"
export default class UEBlueprintObject extends USelectableDraggableObject { export default class UEBlueprintObject extends USelectableDraggable {
static classInputs = [/* static classInputs = [/*
{ {
name: "Input Example", name: "Input Example",

View File

@@ -1,6 +1,6 @@
import UDrag from "./input/UDrag" import UDrag from "./input/UDrag"
export default class USelectableDraggableObject extends HTMLElement { export default class USelectableDraggable extends HTMLElement {
constructor() { constructor() {
super() super()

View File

@@ -925,7 +925,7 @@ class UDrag extends UMouseClickDrag {
} }
} }
class USelectableDraggableObject extends HTMLElement { class USelectableDraggable extends HTMLElement {
constructor() { constructor() {
super(); super();
@@ -995,7 +995,7 @@ class USelectableDraggableObject extends HTMLElement {
} }
class UEBlueprintObject extends USelectableDraggableObject { class UEBlueprintObject extends USelectableDraggable {
static classInputs = [/* static classInputs = [/*
{ {
name: "Input Example", name: "Input Example",