smrghsh / GSOC22

work summary for GSOC 22

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GSOC 22 Work Summary

To quickly view contributions please visit this link: https://github.com/stalgiag/p5.xr/commits?author=smrghsh

Enter VR button -- Immersive Session Process Update

The first goal of my work with p5xr was to improve the process by which a user enters a VR app. I was inspired by the way Three.js VR projects offer a scene preview and a VR button. This offers significant improvements for use, for distribution, and for development.

For the user - Immersive environments can be very intense experiences. By providing the user with a preview of the scene, a user can be primed with an expectation of experience, increasing comfort and safety.

For a content distributor - Providing a 2D scene representation is akin to providing a thumbnail — this can be used to cue the user to enter or to help represent a set of content on a single interface.

For the developer - By providing a scene preview, a developer can execute tests on the 3D environment without entering headset. This rapidly increases development time by giving a quicker view of the starting environment. This also allows for VR previews in a documentation page.

diagram of before and after

This is how p5xr would display a VR scene has a green cube with a magenta background. Originally you could only see it once you click Enter VR and launch an immersive session. Now, you can preview the 3D scene.

View the original issue with plan and documentation stalgiag/p5.xr#169

Process Analysis

Working with WebXR Sessions and Devices was new to me, so under the advice of my mentor, I undertook a process analysis to learn about how three.js accomplished this goal and how p5js worked with WebXR. WebXR documentation feels quite sparse with regards to best practices and procedures, and it took me some time to learn.

Process diagram of Three.js

Three.js’s implementation is quite simple, however, it does not provide for inline sessions— circumstances where VR/AR uses devices other than a head mounted display (HMD).

Process diagram of p5xr before PR p5xr accounted for this, but creating a process diagram revealed opportunities to streamline this process and load the environment earlier. I went through several iterations of streamlining the process, and eventually settled on a process design that hoisted device checks earlier in the process and reduced the amount of checks on the browser XR state.

Implemented process On figma, it’s easier to view the full process analysis diagrams: Figma link

Challenges with implementation

One challenge that I struggled with was dealing with resetting the reference space in between launching a VR experience for the user and returning to an inline session in an HMD’s 2D web browser. This is needed because the physical space that a user navigates in an HMD is different than how they would interact in 2D. During this reset it’s necessary to set this, as well as a particular subset of XR properties to null in order to completely clear this, Examining a similar issue with Aframe’s development helped in the solution.

View the pull request: stalgiag/p5.xr#171

Controller API Update

p5xr-controller-rotation.mp4
  • Including the Quaternion.js library as a dependency.
  • Exposing the rotation as Euler angles (while respecting the angleMode) for progress for Controller Input Rotation Data #158. There is some gimbal-locking type behavior that is persisting.
  • Updating the manual input test to show controller tracking with orientation as well as primary and second button presses
  • Added notice about gimbal locking to documentation

View the pull request stalgiag/p5.xr#181

Minor Contributions

  • Small note to help Windows users with development, suggesting Git Bash to prevent errors with launching a local development server. Through this commit, Stalgia taught me contribution norms.

stalgiag/p5.xr#168

  • p5xr development has a set of manual tests in which the tester verifies app state manually; this pull request moves the objects in front of the tester, so they don’t have to turn their neck. I intended to increase usability and iteration speed with these changes

stalgiag/p5.xr#170

Acknowledgements

Under the mentorship of Stalgia Grigg, I have learned invaluable methods of development and technical communication. This is my first time contributing to open source, and my first time interfacing with the WebXR API. At present, WebXR adoption is still growing, and the lack of best practices make development complex for new open source contributors. Stalgia has a unique ability to elucidate complex processes, and has fostered my interest on how to remove technical barriers to VR development. p5.js has shaped me as an artist, a developer, and an educator-- it is the basis on which I have built my technical skill. The opportunity to engage with how this library approaches VR is an honor. Thank you for this mentorship and opportunity.

About

work summary for GSOC 22