InstantiatedSpinner.js 289 B

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