File tree 6 files changed +24
-26
lines changed
6 files changed +24
-26
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
"@babel/runtime" : " ^7.15.4" ,
12
12
"jquery" : " ^3.6.0" ,
13
13
"meteor-node-stubs" : " ^1.2.1"
14
- },
15
- "meteor" : {
16
- "mainModule" : {
17
- "client" : " client/main.js" ,
18
- "server" : " server/main.js"
19
- },
20
- "testModule" : " tests/main.js"
21
14
}
22
15
}
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
< template name ="appBlock ">
10
10
< x3d id ="x3d ">
11
11
< scene >
12
- <!-- Camera -->
13
- < viewpoint position ="8.19 12.33 19.5 " orientation ="-0.834 0.55 0 0.65 "> </ viewpoint >
14
- < navigationinfo type ="turntable " headlight ="true "> </ navigationinfo >
15
-
16
12
<!-- Floor -->
17
- < transform rotation =" -1.5707963267948966 0 0 1.5707963267948966 " >
13
+ < transform >
18
14
< shape >
19
15
< appearance >
20
16
< material diffuseColor ="#4A9 "> </ material >
23
19
</ shape >
24
20
</ transform >
25
21
22
+ <!-- Cube -->
23
+ < transform translation ="0 0 0 ">
24
+ < shape >
25
+ < appearance >
26
+ < material diffuseColor ="1 0 0 "> </ material >
27
+ </ appearance >
28
+ < box size ="1 1 1 "> </ box >
29
+ </ shape >
30
+ </ transform >
26
31
</ scene >
27
32
</ x3d >
28
33
</ template >
Original file line number Diff line number Diff line change
1
+ import { Meteor } from 'meteor/meteor' ;
2
+ import { Template } from 'meteor/templating' ;
3
+
4
+ if ( Meteor . isClient ) {
5
+ Template . appBlock . onCreated ( function ( ) { } ) ;
6
+
7
+ Template . appBlock . helpers ( { } ) ;
8
+
9
+ Template . appBlock . events ( { } ) ;
10
+ }
11
+
12
+ if ( Meteor . isServer ) {
13
+
14
+ }
You can’t perform that action at this time.
0 commit comments