add example
This commit is contained in:
parent
8ae6f2727d
commit
d7c3677b22
19
script-archive/entityScripts/doubleClickExample.js
Normal file
19
script-archive/entityScripts/doubleClickExample.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
(function() {
|
||||||
|
var _this;
|
||||||
|
function DoubleClickExample() {
|
||||||
|
_this = this;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DoubleClickExample.prototype = {
|
||||||
|
clickDownOnEntity: function() {
|
||||||
|
print("clickDownOnEntity");
|
||||||
|
},
|
||||||
|
|
||||||
|
doubleclickOnEntity: function() {
|
||||||
|
print("doubleclickOnEntity");
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
return new DoubleClickExample();
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user