We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.

Blogs

Verge3D 3.1 for Maya Released

Here is a new release of Verge3D for Maya, an artist-friendly toolkit for creating 3D web interactives. Version 3.1 brings new demos and Maya integrations, means for operating VR controllers, many new features in the physics engine, logic blocks for Vector operations, faster image-based lighting modes, React.js and Vue.js templates, support for HTML5 Pointer events in Puzzles, and lots of stability improvements.

New Demos and Maya Integrations

The small yet amusing game Farmer’s Journey is available. This game runs both on desktop and mobile browsers.

The Parametric Models demo is available. This Verge3D demo shows how you can implement customizable parametric models with ease. The possibilities are endless: dimensions, shape, thickness, holes, profiles, etc – everything can now be modified and even animated at run time.

Also, the simplistic Physics demo has been added. Check out the source files of these apps in Verge3D distribution.

We fixed installation/running issues caused by the Gatekeeper security feature of the recent versions of macOS. From now on, the installer script will invoke Python3 installation procedure (if Python3 is not already installed).

The active camera is now picked up by Verge3D (previously, the very first camera was used).

Verge3D now better represents Maya transforms thanks to the properly supported object pivots. We also fixed some bugs related to Euler angles.

We fixed the bug when 2 objects could have the same name.

We fixed the issue with Verge3D settings missing from the UI or added twice.

We fixed the export crash when a shading group does not have a material assigned to it.

VR Updates

The puzzles traverse controllers and get controller property are now available.

Traverse controllers allows you to iterate over all connected controllers (e.g. left and right controllers of Oculus Quest or HTC Vive). While iterating, you can use the get controller property puzzle to access the following info:

  • object – the name of the associated 3D object (this is an invisible empty/dummy object that represents the position of a controller).
  • ray/reticle – the name of the line object or reticle object (you can change the line color this way, for example).
  • handedness – “left”, “right” or “none”.
  • target ray mode – “gaze” for cardboard devices or “tracked-pointer” for Oculus-like controllers. Thanks to this option, there is no need in the previously added cardboard detection feature from the feature available puzzle, so we removed it.
  • profiles – the list of device types to distinguish between headset vendors. For example, any of Oculus Quest controllers will output the list [“oculus-touch-v2”, “oculus-touch”, “generic-trigger-squeeze-thumbstick”].
  • gamepad index – numeric value associated with the controller. You can pass this value to the get gamepad property puzzle and get its state, such as whether a button is pressed (via “button” option), or how a thumb stick was moved (via “axis” option), etc.

The puzzle session event obtained connected and disconnected options, which you can use to detect the connection status for VR controllers.

You can use the previously-mentioned get controller property puzzle to detect which exactly controller has been connected or disconnected. As a rule, you should start implementing logic for a controller after it is connected.

The get gamepad puzzle received a debug info option. With it you can learn what buttons or sticks are available on the connected VR controllers or non-VR gamepads.

Rays rendered for VR controllers will now automatically adjust their length when they intersect some object.

Physics Updates

Native browser technology WebAssembly (Wasm) is now used to run the physics engine. This resulted in huge performance and memory footprint gains, and halved the size of the physics engine module.

webassembly logo

Wasm is not supported in IE 11 and in the older versions of iOS Safari, so if you need to target these browsers, use the IE11 compatibility module option which enables the JavaScript-based fallback (ammo.js).

New puzzle on before/after simulation was added. We recommend that you apply forces/velocities and detect collisions using this puzzle.

The rationale for using this puzzle is that the time loops for physics simulation and rendering run independently, producing different time deltas. With this puzzle you can better synchronize between these two loops, making the physics movement much smoother, and collision detection much more precise visually.

As you can see on the above screenshot, the get object direction puzzle can now return horizontal direction vector. This simplifies navigation in first-person view.

A new extremely useful puzzle was added, body control.

With this puzzle, you can override the state of a physics body, e.g. force it to become static, kinematic or dynamic, disable and resume physics simulation for it, reset its forces/velocities, make it sleep, etc.

One of many possible use cases is that you can use this puzzle for grabbing objects and throwing it with VR controllers.

From now on, all physics objects go to the sleep mode after some period of inactivity, saving some performance for your app. The object will wake up if it collides with something, or if you explicitly activate it using the above-mentioned body control puzzle.

So called ghost physics objects have been implemented.

Some examples of how you can use them are: detecting if some dragged objects (like furniture models in a room) are overlapping, or pushing a button with VR controller.

The angular factor and linear factor options are available in the apply vector physics puzzle. Using these new options, you can limit the movement of physics bodies along a certain axis by supplying zero to it.

Possible use cases include various whirligigs and swings, but you can also use this puzzle to implement a physical character.

Kinematic and ghost meshes are now supported in addition to the previously available dynamic and static meshes.

New Puzzles

Puzzles for operating with vectors were added to the Numbers category, namely create vector, set/get vector value, and vector math.

A new puzzle, clone animation, is available. With this puzzle you can cut out a piece of animation from a longer track, and use it as a new animation clip (typical case is character animation).

A new puzzle, stop sound, is available. Not only it stops playback, but also rewinds the sound to the start.

Applying materials from a non-skinned object to a skinned one now works with puzzles.

IBL Performance

Here is an important performance tweaking improvement. From now on, you can select the algorithm for image-based lighting. Before, only the Prefiltered Mipmaped Radiance Environment Map (PMREM) technique was available, which produces quality rendering but is unfortunately rather slow. This version introduces two simpler and faster techniques based on light probes, which can be enabled in the Export settings:

  • PMREM – high quality, slow. This is the default option.
  • Light Probe + Cubemap – reduced quality of image-based specular reflections, average performance.
  • Light Probe – no image-based specular reflections, fastest (may be 10x faster compared to PMREM).

So if you have performance issues (low FPS), you can try to fix this by switching to a light probe technique. You can replace your Principled BSDF nodes with Diffuse BSDF or Emission BSDF nodes as further optimization.

In addition, Environment Map Size setting is now available (aiSkyDomeLight -> Hardware Texturing -> Texture Resolution).

Use it to trade the quality of reflections for memory consumption and performance. We recommend to use 256 pixels for most scenes, or 512 if you need a better quality for reflections (e.g. for rendering jewelry).

Pointer Events Puzzles

The modern standard for handling input devices in the browser is now reflected in Puzzles. Thus, the HTML event puzzle obtained pointerdown, pointerup, pointermove and other events.

The get event property puzzle now has the isPrimary (e.g. detect the first finger of multi-touch event) and pointerType (mouse, pen or touch) options.

We also added some other relevant event properties to this puzzle: button (0 – left, 1 – wheel, 2 -right, 3 – browser back, 4 – browser forward), offsetX and offsetY.

React.js and Vue.js Templates

Verge3D can now be more easily integrated with React.js and Vue.js applications thanks to newly introduced application templates. See this guide for more details.

Other Improvements

The id of the WebGL canvas container element was changed from simply “container” to the more distinguishing “v3d-container”. Make sure you change your code if you relied on this name.

The Puzzles library’s save file my_library.xml will no longer be overwritten when a new version of Verge3D is installed in the same directory.

WebGL shaders were optimized a bit. As a result, they now are compiled 20-25% faster, helping to scene loading.

JavaScript methods copyRGBEToLinear() and convertRGBEToLinear() were added for the Color class.

We updated and expanded the documentation. Among updated sections are physics, lighting and rendering, as well as help pages for the new and previously implemented puzzles.

Bug Fixes

We fixed a rare issue related to non-node-based materials.

We fixed the bug when objects parented to VR controllers disappeared after being outside the camera view for a certain period of time.

We fixed several bugs reported in these forum topics:

SecurityError: The operation is insecure.

“dict check key” TypeError

Verge3D 3.1 pre1 available!

We fixed the bug with the screen-space reflection puzzle.

We fixed the bug when the Flying or First-person camera is parented to some object.

We fixed the puzzle is visible which was not working in some cases.

We fixed a series of installation issues which happened if the name of the user directory on Windows contained spaces or non-latin symbols.

We fixed the bug when raycasting was applied to hidden parented objects. Such objects are now ignored.

We fixed various smaller bugs in Puzzles, which were found by an automatic code checker.

Grab Verge3D While It’s Hot!

Get this Verge3D version from the downloads page and see how it works for your projects!

By Yuri Kovelenov

Chief 3D Verger

Leave a Reply

Related Posts