diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-07 15:42:22 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-07 15:42:22 +0800 |
commit | fb19a8b072e8529b9d90bd3fb322da31ca4911df (patch) | |
tree | 1acc0a7ef40241b3e5908f68945c3a16f9873ec1 | |
parent | 8e3f1bd3e94e6416d1a2afabf8cc5643a6e0ec25 (diff) | |
download | SoopyV2-fb19a8b072e8529b9d90bd3fb322da31ca4911df.tar.gz SoopyV2-fb19a8b072e8529b9d90bd3fb322da31ca4911df.tar.bz2 SoopyV2-fb19a8b072e8529b9d90bd3fb322da31ca4911df.zip |
add guimanager polyfill
-rw-r--r-- | index.js | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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") |