Source: ui/world/logo-room.js

  1. import {VRSPACEUI} from '../vrspace-ui.js';
  2. /**
  3. Room with vrspace.org logo as floor and invisible cylinder walls, as used on vrspace.org demo site.
  4. */
  5. export class LogoRoom {
  6. /**
  7. @param scene babylonjs scene
  8. */
  9. constructor( scene ) {
  10. this.scene = scene;
  11. this.diameter = 20;
  12. this.shadows = true;
  13. }
  14. /**
  15. Creates VRSpaceUI, and displays the logo as floor mesh and creates walls.
  16. */
  17. async load() {
  18. this.floorGroup = new BABYLON.TransformNode("Floor");
  19. // ground, used for teleportation/pointer
  20. this.ground = BABYLON.MeshBuilder.CreateDisc("ground", {}, this.scene);
  21. this.ground.rotation = new BABYLON.Vector3( Math.PI/2, 0, 0 );
  22. this.ground.position = new BABYLON.Vector3( 0, 0.1, 0 );
  23. this.ground.parent = this.floorGroup;
  24. this.ground.isVisible = false;
  25. this.ground.checkCollisions = true;
  26. // mesh that we display as floor
  27. await VRSPACEUI.init(this.scene); // wait for logo to load
  28. VRSPACEUI.receiveShadows( VRSPACEUI.logo, this.shadows );
  29. // CHECKME: true - why and why not? Shadows!
  30. VRSPACEUI.copyMesh(VRSPACEUI.logo, this.floorGroup, true);
  31. // walls, used for collisions, to limit the movement
  32. var walls = BABYLON.MeshBuilder.CreateCylinder("FloorWalls", {height:4,diameter:1,sideOrientation:BABYLON.Mesh.BACKSIDE}, this.scene);
  33. walls.checkCollisions = true;
  34. walls.isVisible = false;
  35. walls.position = new BABYLON.Vector3(0,2,0);
  36. walls.parent = this.floorGroup;
  37. this.setDiameter(this.diameter);
  38. this.floorGroup.position = new BABYLON.Vector3( 0, -0.05, 0 );
  39. this.scene.addTransformNode(this.floorGroup);
  40. this.floorGroup.getChildMeshes().forEach(child=>{
  41. if (child.name && child.name.indexOf("-instance") > 0 && child.material.getClassName() == "PBRMaterial") {
  42. child.material.clearCoat.isEnabled = true;
  43. child.material.metalic = 0.4;
  44. child.material.roughness = 0.6;
  45. }
  46. });
  47. return this;
  48. }
  49. /** disposes of instantiated geometry */
  50. dispose() {
  51. this.floorGroup.dispose();
  52. }
  53. /** set room diameter and rescale */
  54. setDiameter( diameter ) {
  55. this.diameter = diameter;
  56. this.floorGroup.scaling = new BABYLON.Vector3(this.diameter,2,this.diameter);
  57. }
  58. /** get current diameter */
  59. getDiameter() {
  60. return this.diameter;
  61. }
  62. }