aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2021-11-07 15:42:22 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2021-11-07 15:42:22 +0800
commitfb19a8b072e8529b9d90bd3fb322da31ca4911df (patch)
tree1acc0a7ef40241b3e5908f68945c3a16f9873ec1
parent8e3f1bd3e94e6416d1a2afabf8cc5643a6e0ec25 (diff)
downloadSoopyV2-fb19a8b072e8529b9d90bd3fb322da31ca4911df.tar.gz
SoopyV2-fb19a8b072e8529b9d90bd3fb322da31ca4911df.tar.bz2
SoopyV2-fb19a8b072e8529b9d90bd3fb322da31ca4911df.zip
add guimanager polyfill
-rw-r--r--index.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/index.js b/index.js
index 6e08fb6..8486c4e 100644
--- a/index.js
+++ b/index.js
@@ -1,6 +1,25 @@
/// <reference types="../CTAutocomplete" />
/// <reference lib="es2015" />
+import SoopyGuiElement from "../guimanager/GuiElement/SoopyGuiElement.js"
+import SoopyBoxElement from "../guimanager/GuiElement/SoopyBoxElement"
+
+SoopyGuiElement.prototype.clearChildren = function (){
+ let theParent = this.innerObjectPaddingThing || this
+ theParent.children.forEach(child => {
+ child.setParent(undefined)
+ });
+ theParent.children = []
+ return this
+}
+SoopyBoxElement.prototype.clearChildren = function (){
+ let theParent = this.innerObjectPaddingThing || this
+ theParent.children.forEach(child => {
+ child.setParent(undefined)
+ });
+ theParent.children = []
+ return this
+}
class SoopyAddons {
constructor(){
this.FeatureManager = require("./featureClass/featureManager.js")