Source: scripts/basic-script.js

  1. /**
  2. Basic script object. Scripts are loaded and instantiated when server demands it.
  3. Experimental, most likely to change a lot, more towards IOC.
  4. */
  5. export class BasicScript {
  6. /**
  7. @param world the World this script runs in, contains babylon scene, WorldManager and everything else
  8. @param vrObject VRObject added tot he scene..
  9. */
  10. constructor( world, vrObject ) {
  11. this.world = world;
  12. this.scene = world.scene;
  13. this.worldManager = world.worldManager;
  14. this.VRSPACE = this.worldManager.VRSPACE;
  15. this.vrObject = vrObject;
  16. this.vrObject.attachedScript = this;
  17. this.vrObject.addListener((obj,changes)=>this.remoteChange(this.vrObject,changes));
  18. }
  19. /**
  20. Supposed to create a visible object and return root node
  21. */
  22. init() {
  23. return null;
  24. }
  25. /**
  26. * Executed when a remote change is triggerred. Changes have been already applied to the object.
  27. */
  28. remoteChange(vrObject, changes) {
  29. console.log("Remote changes for "+vrObject.id, changes);
  30. }
  31. dispose() {
  32. console.log("Disposing of script", this.vrObject);
  33. }
  34. isMine() {
  35. return this.vrObject.properties && this.VRSPACE.me.id == this.vrObject.properties.clientId;
  36. }
  37. }