mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
added unListenTo method
This commit is contained in:
parent
87f7f877c1
commit
6b61ad9b30
8
gui.js
8
gui.js
@ -217,7 +217,13 @@ var GUI = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.unlistenTo = function(controller) {
|
this.unlistenTo = function(controller) {
|
||||||
// TODO
|
// TODO: test this
|
||||||
|
for(var i = 0; i < listening.length; i++) {
|
||||||
|
if(listening[i] == controller) listening.splice(i, 1);
|
||||||
|
}
|
||||||
|
if(listening.length <= 0) {
|
||||||
|
clearInterval(listenInterval);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.listen = function(whoToListenTo) {
|
this.listen = function(whoToListenTo) {
|
||||||
|
Loading…
Reference in New Issue
Block a user