Reflection is an essential part of our everyday environment. Naturally, for a realistic augmented reality experience, virtual objects should contain it too. Starting from ARKit 2.0 developers can use automatically generated environment textures for realistic reflections.

“In 3D asset rendering, environment textures are the basis for image-based lighting algorithms where surfaces can realistically reflect light from their surroundings. ARKit can generate environment textures during an AR session using camera imagery, allowing SceneKit or a custom rendering engine to provide realistic image-based lighting for virtual objects in your AR experience.”

Apple doc.

Environment texture gathers scene information in the form of a cube map; this texture later is used as a reflection probe. Because it’s impossible to have a fully complete cube map in realistic use cases(basically, to complete cube map the user has to complete 360-degree panorama), ARKit builds up missing parts of the cube map texture with machine learning.

Let’s take a look at a small demo of the reflective object.

As you can see, the sphere reflects real world objects that are placed on the table, which in my opinion is ultimately awesome 🤩

For this demo, I created a sphere and a reflective material for it.

I created a PBR material with a metalness = 1 and roughness = 0, here is a cheatsheet of how different materials look like depending on these values.

Metalness and roughness are two of the basic components for any physical based rendered material. You can check this article for more info about PBR lighting in SceneKit.

To enable environment texture map generation for an AR session all we have to do is set the [.c]environmentTexturing[.c] property of [.c]ARSession[.c] configuration:

From this point, ARKit will automatically create [.c]AREnvironmentProbeAnchor[.c] objects. [.c]AREnvironmentProbeAnchor[.c] provides environmental lighting information for a specific area of space.

[.c]AREnvironmentProbeAnchor[.c] is a subclass of [.c]ARAnchor[.c], which means that they have the same lifecycle. Its extent property represents the area around the anchor’s position which can be later used when projecting its texture for parallax correction. The texture is represented by [.c]environmentTexture[.c] property.

Currently, the environment texturing supports two settings:

  • For [.c]EnvironmentTexturing.automatic[.c] ARKit automatically creates, positions, and adds [.c]AREnvironmentProbeAnchor[.c] objects to the session.
  • For [.c]EnvironmentTexturing.manual[.c] you identify points in the scene for which you want light probe texture maps by creating [.c]AREnvironmentProbeAnchor[.c] objects and adding them to the session.

If [.c]configuration.environmentTexturing[.c] is set to [.c].automatic[.c] you don’t have to work with [.c]AREnvironmentProbeAnchor[.c] directly to achieve great results.

That’s it about the environment texturing and reflections in ARKit. You can find the source code of the reflective sphere that was shown earlier here. I hope you learned something new from this small post!

Let’s jump right in.
Ready to take your business to the next level with Augmented Reality?
Let’s TALK
Category
Table of Content
Book a Consultation now!
Ivan
CEO at Krootl
contact us