9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
|
AFRAME.registerComponent('xrshell', {
|
||
|
init: function ( ) {
|
||
|
|
||
|
console.log("this is the boot component which initializes other components")
|
||
|
|
||
|
},
|
||
|
|
||
|
});
|