UNPKG
potree
Version:
latest (0.1.0)
0.1.0
0.0.5
WebGL point cloud viewer - WORK IN PROGRESS
potree
/
src
/
extensions
/
EventDispatcher.js
11 lines
(8 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
THREE
.
EventDispatcher
.
prototype
.
removeEventListeners
=
function
(
type
) {
if
(
this
.
_listeners
===
undefined
) {
return
; }
if
(
this
.
_listeners
[
type
]) {
delete
this
.
_listeners
[
type
]; } };