InstantiatedSpinner.js 265 B

12345678910111213141516
  1. // Script instantianted "child" component
  2. var inspectorFields = {
  3. speed: 1.0
  4. }
  5. exports.component = function(self) {
  6. self.start = function() {
  7. self.instantated = self.node.createJSComponent("Components/ProtoSpinner.js", { speed: self.speed } );
  8. }
  9. }