xrsh-com/com/require.js

13 lines
388 B
JavaScript
Raw Normal View History

2023-11-13 10:09:38 +01:00
AFRAME.registerComponent('require', {
init: function() {
2023-11-03 11:55:51 +01:00
},
2023-11-13 10:09:38 +01:00
})
//<script src="https://coderofsalvation.github.io/xrsh-apps/helloworld.js"></script>
const updateComponents = AFRAME.AEntity.prototype.updateComponents
AFRAME.AEntity.prototype.updateComponents = function(updateComponents){
return function(){
return updateComponents.apply(this,args)
}
}(updateComponents)