Merge branch 'master' of https://github.com/Ucodia/dat.gui into Ucodia-master

# Conflicts:
#	src/dat/gui/GUI.js
This commit is contained in:
Jeff Nusz 2016-08-18 15:46:04 -07:00
commit 420e0458ad

View File

@ -729,6 +729,15 @@ common.extend(
if (init) { if (init) {
updateDisplays(this.__listening); updateDisplays(this.__listening);
} }
},
updateDisplay: function() {
common.each(this.__controllers, function(controller) {
controller.updateDisplay();
});
common.each(this.__folders, function(folder) {
folder.updateDisplay();
});
} }
} }
); );