-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.js
80 lines (76 loc) · 2.28 KB
/
hello.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
if (Meteor.isClient) {
var exceptionHandler = function exceptionHandler (e) {
throw e;
};
EventEx = new EventEmitterEx();
// counter starts at 0
Session.setDefault('counter', 0);
Template.hello.helpers({
ThreeJSViewContainer: function () {
return ThreeJSViewContainer;
},
counter: function () {
return Session.get('counter');
}
});
Template.hello.events({
'click #initialize': function () {
// Just add a ground reference plane
Dispatcher.dispatch('TEST_INIT');
},
'click #zoomIn': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('ZOOM_IN');
},
'click #zoomOut': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') - 1);
Dispatcher.dispatch('ZOOM_OUT');
},
'click #rotRt': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('ROT_RT');
},
'click #rotLt': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('ROT_LT');
},
'click #panRt': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('PAN_RT');
},
'click #panLt': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('PAN_LT');
},
'click #cameraUp': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('CAMERA_UP');
},
'click #cameraDn': function () {
// increment the counter when button is clicked
//Session.set('counter', Session.get('counter') + 1);
Dispatcher.dispatch('CAMERA_DN');
},
'click #sampleMesh': function () {
Dispatcher.dispatch('TEST_MESH');
},
'click #orthographicCamera': function () {
Dispatcher.dispatch('SET_ORTHO_CAMERA');
},
'click #perspectiveCamera': function () {
Dispatcher.dispatch('SET_PERSPECTIVE_CAMERA');
}
});
}
if (Meteor.isServer) {
Meteor.startup(function () {
// code to run on server at startup
});
}