註冊系統

類似於 aframe 元件註冊系統。

如果系統名稱與元件名稱匹配,則元件將引用系統作為 this.system:

AFRAME.registerSystem('my-component', {
  schema: {},  // System schema. Parses into `this.data`.
  init: function () {
    // Called on scene initialization.
  },
  // Other handlers and methods.
});
AFRAME.registerComponent('my-component', {
  init: function () {
    console.log(this.system);
  }
});