Last active
August 18, 2021 09:04
-
-
Save pilssalgi/4fc94e21c77038bbad4fdd5f827b43d6 to your computer and use it in GitHub Desktop.
guiDatUpdate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function updateDisplay(gui) { | |
for (var i in gui.__controllers) { | |
gui.__controllers[i].updateDisplay(); | |
} | |
for (var f in gui.__folders) { | |
console.log("🚀 ~ gui.__folders", gui.__folders) | |
updateDisplay(gui.__folders[f]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment