Skip to content

Instantly share code, notes, and snippets.

@pilssalgi
Last active August 18, 2021 09:04
Show Gist options
  • Save pilssalgi/4fc94e21c77038bbad4fdd5f827b43d6 to your computer and use it in GitHub Desktop.
Save pilssalgi/4fc94e21c77038bbad4fdd5f827b43d6 to your computer and use it in GitHub Desktop.
guiDatUpdate
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