Skip to main content
Version: 4.55.1

Lens Studio for Unity Developers

As AR technology has evolved, many developers and designers are migrating from Unity Game Engine to Lens Studio, a top of the line platform specifically designed for AR development. While Lens Studio may seem similar at first, there are many differences that you should be aware of. This guide serves as a way to help translate content and workflows from Unity to Lens Studio, covering various aspects such as physics, VFX graphs, scripting, and user interfaces.

Whether you are new to Lens Studio or have been using it for a while, this document can be used as a comprehensive resource or a quick reference guide.

"Unity" and some of its feature names may be trademarks of Unity Technologies or its affiliates.

Unity to Lens Studio Glossary

Listed below are some of the common terminology used in Unity and what it is called in Lens Studio.

CategoryUnityLens StudioNote
InterfaceHierarchyObjects
Project (Assets)Resources
SceneScene
GamePreview
InspectorInspector
ConsoleLogger
TypesGameObjectSceneObject
ComponentComponent
PrefabPrefab
MaterialsShaderGraphMaterial Editor
Unity Visual Effect Graph (VFX Graph)VFX
UI ComponentsCanvasCanvas*In Lens Studio, Canvas component's sole purpose is to display UI elements in "World Space"
Rect TransformScreen Transform
Animation
ScriptingMonoBehaviourScriptComponent
PhysicsRigidBodyPhysicsBody
ColliderCollider
JointPhysicsConstraint

The Editor UI Comparison

image alt text

The default layout of Lens Studio is similar to Unity. There are six main panels in the Lens Studio interface:

Along with the Editor layout above, there are three editing panels for Script, Material, and VFX editing.

All panels can be dragged to your desired position and you can also reset those panels to default through the toolbar by selecting Window then Panels and select Default layout.

Objects vs Hierarchy

image alt text

In Lens Studio, there is no equivalent to Unity's concept of multiple Scenes. However, the Objects panel displays the hierarchy of all objects in your current scene, and allows you to enable or disable objects. The Objects panel also determines the render order and script execution order for objects in your scene. Objects at the bottom of the hierarchy will be rendered last, making them appear in front of objects at the top of the hierarchy.

You can learn more about the panels in Lens Studio in the Panels guide.

Resources vs Project (Assets)

image alt text

In Lens Studio, the Resources panel serves the same purpose as the Project panel in Unity. It lists all the resources (assets) that are currently available in the project, including Meshes, Materials, Textures, Scripts, Sounds, and more.

To add a new resource to the project, you can drag and drop a valid file into the Resources panel.

Scene vs Scene

image alt text

The Scene panel is where you can place and manipulate the objects in your scene. You can use the Scene panel to visually move, rotate, and scale objects, as well as access various camera controls through the panel's toolbar.

2D Scene and 3D Scene

image alt text

image alt text

In Lens Studio, there are two different modes of scene for 2D and 3D scenarios. The 2D scene mode is primarily used for visualizing and editing 2D objects like Screen Image, Post Effect and Face Effects. By default, selecting an object in the Objects panel will automatically select the best scene mode for that object.

For information on manipulating objects in both scene modes, you can refer to the Toolbar and Shortcutsguide.

Preview vs Game

image alt text

The Preview panel in Lens Studio allows you to see what your Lens will look like within Snapchat without having to transfer it to a device.

One major difference from Unity is that there is no play and stop distinction in Lens Studio. Instead, the Preview panel will run constantly and update in real time as you make changes to your scene, such as through scripting, material editing, or altering scene objects. You can also pair your device to Lens Studio to view your Lens on your mobile device. Once you've paired Lens Studio with your device, you can easily transfer your lens to the Snapchat app for further previewing.

Previewing Your Lens

You can also switch to webcam preview mode to view your lens through your device's camera.

Inspector vs Inspector

image alt text

There is no difference between Lens Studio and Unity. The Inspector panel allows you to add and edit components on the selected object.

./panels#inspector

Logger vs Console

image alt text

The Logger panel provides insights into the state of your Lens as well as Lens Studio itself.

./panels#logger

Scene Objects and Prefabs

From Game Objects to Scene Objects

GameObjects are the fundamental objects in Unity that represent characters, props and scenery. In Lens Studio, Scene Objects offer the same functionality that serves as containers for various built-in Components including image, audio, interaction and script.

With all SceneObjects, there is a Transform component attached to the SceneObject and it is non-deletable. The other Components that can give the object more functionality can be added by clicking the Add Component button in the Inspector panel. Depending on what kind of object you want to create, you add different combinations of components to a SceneObject.

image alt text

Prefab

The Prefab system in Lens Studio is a tool that allows you to create reusable components, similar to Unity's Prefab system. To create a Prefab, you can drag any SceneObject from the Object panel to the Resources panel. Prefab components can be instantiated at runtime or in the editor, and can be exported as an .oprfb file (equivalent to Unity's .unitypackage file) with all of its dependencies.

In Lens Studio, you can use the ObjectPrefab API to access Prefab components.

While there is no Prefab editing mode in Lens Studio, you can still apply changes to all instances of a Prefab by making changes to a single instance. To do this, use the Apply and Revert buttons at the top of the inspector panel. The Apply button allows you to use the current settings of a Scene Object as the default for the Prefab, while the Revert button allows you to revert all settings of the Scene Object to the default values of the Prefab.

image alt text

For more information on how to apply changes to a Prefab, see the step-by-step tutorial on the topic.

Exported packages: .oprfb vs .lso

Exported packages can be used to modularize larger projects, transport standalone packages for troubleshooting, sharing with other creators, or be published online for easy sharing. In Lens Studio, there are two common package formats for exporting bundled resources: the classic Prefab format,.oprfb and the .lso format.

There are two key differences between these formats:

  • The .lso format is created by exporting a Scene Object. When importing an .lso file, the Scene Object will be automatically instantiated in the importer's Objects panel, while preserving the Scene Object’s hierarchy.
  • The .oprfb format is created by exporting a Prefab, which is an asset that lives in the Resources panel. When importing an .oprfb file, there will not be any new Scene Objects created in the Objects panel. The .oprfb format is equivalent to Unity .unitypackage format.

Asset Library vs Asset Store

The Unity Asset Store and Lens Studio Asset Library are both repositories of assets and tools that can be used to create or enhance projects in their respective platforms. The Unity Asset Store contains a wide range of assets, including textures, models, animations, entire project examples, tutorials, and editor extensions, and is available for use in any project created in Unity. Some assets in the Unity Asset Store are free, while others are commercial and require payment.

In contrast, everything in the Lens Studio Asset Library is free to use. The Lens Studio Asset Library is specifically tailored for use in creating Lenses in Lens Studio and includes assets such as simple reusable assets and machine learning models. While assets from the Unity Asset Store can be used in other engines, those from the Lens Studio Asset Library can only be used within Lens Studio.

Persistent Storage and PlayerPrefs

Unity provides a built-in feature, known as PlayerPrefs, to preserve game data across sessions. PlayerPrefs is commonly employed to retain game progression and player configuration settings, with the load and save system being a prevalent use case.

Similarly, Lens Studio offers a comparable feature, known as the Persistent Storage system. In its default configuration, script variables hold their value only while the Lens is active. To transfer data between Lens sessions, one may use the Persistent Storage system by writing and retrieving data from storage. To illustrate, consider the following example:

var store = global.persistentStorageSystem.store;
var scoreKey = 'totalScore';
//read data
var currentGameScore = store.getInt(scoreKey);
//write data
store.putInt(scoreKey, 10);

To learn more about Persistent Storage, check out this page.

Scripting

Lens Studio uses the ECMAScript 2009 version of JavaScript, also known as ES5. Features like arrow function, class and promises are added in ES6 thus not available in Lens Studio. An easy way to check if a feature is available in Lens Studio is to check its compatibility with IE10.

Before diving into specific scripting content, you can view the full API list in the following link.

Lens Studio Visual Studio Code Extension

While Lens Studio has its built-in code editor, there are a few familiar features like Find Reference and Goto Implementation that are not available. To address this, Lens Studio has developed a Visual Studio Code Extension, commonly known as VSCode, that provides some level of auto-completion, debugging, and the ability to utilize snippets in your project.

Getting Started with Templates

Lens Studio offers a series of template projects that can be a great way to start your journey with Lens Studio. While Lens Studio has its own unique legacy and way of doing things that may be different from Unity. Here are a few tips to help ease you in:

  1. Start from the top, and work your way down. This is due to the Lens Studio Execution Order.
  2. Lens studio encourages creators to reuse existing helper scripts. Sometimes people trade a "perfect" design pattern in exchange for reusing a helper script to avoid repetitive work. So when you open a new template project, the first thing you can do is to spend a bit more time in the editor, try finding all the Behavior and Tween scripts being used. For more information, take a look at the Official Helper Script section.

Execution Order

In Lens Studio, the order in which scripts are executed can be determined by the location of their associated SceneObjects in the Objects panel. SceneObjects at the top of the panel will have their scripts executed before those attached to SceneObjects lower in the hierarchy. This is why you may see helper scripts, such as TweenManager, placed at the top of the Objects panel. This ensures that necessary functions and variables are initialized before they are called upon by other scripts. In contrast, Unity has a Script Execution Order setting in the Project Settings to adjust the order in which scripts are run.

image alt text

Script Module and Asset Library

If you are familiar with JavaScript, you may already know that it is a dynamically-typed language that does not use preprocessors like "include" or have the concept of "namespaces." However, it does have tools for modularization and connecting different scripts together. In Lens Studio, the Script Module feature allows you to structure your code in a more logical and organized way. It is highly recommended that you take advantage of this tool to streamline your workflow.

You can find more information about Script Modules in this link .

In Lens Studio's Asset Library, you can find a section dedicated to Script Modules, which includes some common modules that you may use frequently.

image alt text

The global object

Built-in Global Methods and Properties

The global object in Lens Studio is a powerful tool that allows you to access built-in methods and properties, as well as store your own variables, functions, and prototypes. Some examples of built-in global methods and properties include:

  1. global.scene : ScriptScene

Returns the global ScriptScene object, which offers information and controls for the current scene.

  1. global.getTime() : number`

Returns the time in seconds since the lens was started.

You can find the full list here.

Store your own things on global

You can use the global object to store and access your own variables and functions in Lens Studio. This is useful because it allows you to access these values and functions from anywhere in your code, similar to how you use static classes and functions in C#. In the next few examples, you can see how you can utilize the global object including storing variables, and accessing them from anywhere in your code. You can also create and store global functions. Additionally, you can register your prototypes or classes on the global object for easy access throughout your project.

You can register/store variables on it, make them accessible from wherever you want. Similar to how you make static classes in C#.

global.myScore = 0;
//inside another script
global.myScore++;

You can register/store a set of functions in it, making those functions global. Again, similarly to how you use static functions.

global.makeBox = function(){//make a box}

You can register your prototypes/classes on it.

global.Car = function (color) {
//do
};
global.Car.prototype.createNewCar = function () {
//do
};
var newCar = new global.Car(red);

Event Listeners

Event listeners allow you to respond to specific events in your code. There are two ways to create event listeners in Lens Studio:

  • The Asset Library's Script Modules section features the Event Module, which enables you to design custom events. You can refer to the script header for helpful examples on how to utilize it effectively. To provide a brief overview of its usage, here is a minimal example:

    //import the module
    var EventModule = require('EventModule');
    //create a new event
    var onScoreChange = new EventModule.EventWrapper();
    //register a listener to the event
    onScoreChange.add(function (newScore) {
    print('score changed, new score is ' + newScore);
    });
    //call the event. all listeners added to the event get executed too
    onScoreChange.trigger(10);
  • Listening to built-in events, such as InteractionComponent.onTap, by using the .add(function) method to add your callback functions to the event.

Helper Scripts

When coming from Unity, the idea of relying on helper scripts may be an unfamiliar workflow. It's important to note that while this approach may result in slightly different design patterns, it is generally a good trade off for AR apps, which tend to be less complex than Unity games.

You don't need to fully understand the inner workings of helper scripts in order to use them effectively.

You can find helper scripts through the Plus (+) sign at the top left corner of the Objects panel.

image alt text

Behavior.js

The Behavior script is a common type of helper script that can be found in many projects. It allows users to incorporate a wide range of common tasks into their projects without writing any code. The behavior script acts as a "if [trigger] then do [response]" system, with a variety of triggers and responses available. Even experienced developers can benefit from using the behavior script.

Tween

Tweening is a common technique in front-end JavaScript that is used to animate the position, scale, or other attributes of an element over time. If you have experience with front-end development, you may already be familiar with tweening as a way to add visual interest or polish to a project. While the primary function of tweening is often cosmetic, it can also be an important tool in interaction design, as it can significantly impact the user experience of a project. You can

Life Cycle Events

In Lens Studio, scripts that are attached to SceneObjects are typically triggered by an event, such as onAwake or onTouch. However, it is recommended to leave the trigger in the Inspector set to the default onAwake and bind actual triggers in the script. This can be done using the createEvent and bind functions, which allow you to create a Start() and Update() function similar to those found in Unity.

To create an update function and bind it to the UpdateEvent, you can use the following code:

function update() {
// write your update code here
}
var updateEvent = script.createEvent('UpdateEvent');
updateEvent.bind(update);

By standardizing your script triggers this way can help improve the clarity of your code and make it easier for others to understand the trigger for each script without needing to switch back and forth between the Lens Studio editor.

For more information, please visit Script Events | Docs

Reference to other scripts and components

Assign Reference in Inspector

Similar to Unity, Lens Studio provides ways to expose variables in the Inspector panel you could drag other objects, no matter if it is a Prefab, a texture, a SceneObject or another script to the slots.

To create a script level object while espousing it on the inspector, you can use the //@input keyword. The property is automatically added to the script object, and is treated as public, meaning it can be accessed by other scripts.

Here are few examples:

//primitive types
//@input bool myBool;
//@input vec3 myVec;

//Components
//@input Component.Animation myAnimation;
//@input Component.Image myImage;

//a Asset
//@input Asset.ObjectPrefab myPrefab;
//@input Asset.LocationAsset myLocAsset;

//you can access them by

var ani = script.myAnimation;
var prefab = script.myPrefab;

There isn’t a complete list of all the acceptable object types, but you could check out the Input Type list for all the primitive types, andthe Component list for all the Component types, and the Asset list for all the Asset types.

Cross Referencing Scripts

As of 4.0, there is no way to access a script specifically by name. You would just use getComponent("Component.ScriptComponent"). In the case that there are several scripts on the same scene object, you can use getComponents() which will return an array of components of that type. Once you have the list of ScriptComponents, you could check if a given script has a certain property of function to determine its "type."

/* ======================== */
/* main.js */
var scriptsComponents = myObject.getComponents('Component.ScriptComponent');
var targetScript;
scriptsComponents.forEach(function (sc) {
if (sc.isFoo === true) {
targetScript = sc;
}
});

/* ======================== */

/* script Foo.js */

script.isFoo = true;

Physics

Lens Studio contains a fully featured built-in physics system for running physics solutions in real-time. The physics system contains some differences in organization compared to other physics engines, such as Unity.

PhysicsBody vs PhysicsCollider

For simplicity, you can think of Lens Studio's PhysicsBody as similar to Unity's Rigidbody, and Lens Studio's PhysicsCollider as similar to Unity's Collider. However, in Lens Studio, a PhysicsBody comes with a collider integrated by default and cannot exist without one. This means that if an object already has a PhysicsBody, you do not need to add a separate PhysicsCollider to it. On the other hand, you can turn a PhysicsBody into a collider-only object by disabling the Dynamic checkbox.

Physics Constraint (Joint)

Lens Studio has three types of physics-based joints: Fixed, Point, and Hinge. These are sufficient for most cases, and are known as Physics Constraints in Lens Studio. Like in Unity, a Physics Constraint (joint) requires a PhysicsBody (rigidbody) to function.

Physics World Settings

In Unity, world settings are located in the Project Settings under the Physics tab. In Lens Studio, Physics World Settings are assets that can be created and customized. There is always one instance of Physics Root World Settings that exists by default, similar to the default render target and device camera textures. This is used as the implicit default settings for all physics world components. Each world component can optionally reference a specific Physics World Settings asset, or use the Physics Root World Settings by default. Additionally, WorldSettings can be applied per-collider.

To learn more, check out the Physics Asset and Components guide

UI

World Space v.s. Screen Screen

Screen Transform is the fundamental building block for displaying UI elements in Lens Studio, similar to Unity's RectTransform. In Unity, there is a Canvas component that has three different modes: Screen space (overlay), Screen space (camera), and World space. In Lens Studio, there is an equivalent to Screen space (camera), and World space. However, these modes are not consolidated under a single component like in Unity.

Screen Space (Camera)

In Lens Studio, to have screen space UI elements, you need to first have an Orthographic Camera, and then you can start adding Screen Transforms under it. Remember to set the layers of those Screen Transforms to Orthographic.

World Space

Lens Studio introduced the Canvas component in version 4.31. Canvas works similarly to Unity's Canvas, serving as a parent for other Screen Transforms like Text and Images. Because they are shown in the 3D world, you do not need to set their layers to Orthographic.

You can also add an Image or Text component directly into the world without using Canvas, as long as they have a regular Transform component instead of a Screen Transform. However, if you do this, your project will not be benefiting from the powerful layout tools that come with Screen Transform.

UI Elements

Lens Studio provides a set of Custom Components for creating common UI components like UI Button,, UI Toggle, UI Color Picker, Ui Scroll View and etc. You can find these Custom Components in the Asset Library.

Layout Elements

Similar to Unity’s Auto Layout tools, Lens Studio provides Horizontal Layout and Vertical Layout components for automatic layout. However, unlike in Unity, only children elements that have a Layout Element component are affected by the Horizontal Layout or Vertical Layout. For more information, you can refer to this documentation.

Rendering and Effects

As a mobile facing, all-tier friendly tool, Lens Studio provides standard rendering features for creating flexible, light-weight graphics.

Rendering Order and Passes vs Render Targets

In Lens Studio, the order in which objects are rendered is determined by their position in the Object hierarchy. Objects at the top of the hierarchy are rendered first, followed by those below them. The number next to the enabled checkbox indicates an object's position in the render order, with 0 being the first and 1 being the second, and so on.

Unlike Unity, Lens Studio only supports Forward Rendering. However, you can still customize your rendering by using Render Targets (which are similar to Unity's Render Textures) or Screen Texture (which is an implicit reference to the current render target). By organizing your Scene Objects in the Objects panel from top to bottom, you can effectively create a customized rendering "pipeline".

Case Study: Obtain the Depth Data

The Material and VFX editors in Lens Studio provide a Depth node, which returns the depth for a specific vertex or fragment. However, if you want to use depth data in your script, such as to manipulate UVs, you can follow these steps:

  1. Create a Depth Texture in the Resources panel.
  2. Assign the Depth Texture to the "Depth Render Target" field on the camera from which you want to obtain depth data.
  3. Lens Studio will automatically write depth data to the render target.
  4. You can access the depth data in scripts, materials, VFX, or any other location where you may need it.

Materials and Shaders

Unity introduced ShaderGraph in 2019 and it allows users to construct materials in a node-based graph system. Lens Studio has something very similar called the Material Editor. Unlike in Unity where you can create custom materials both with written shaders in HLSL/ShaderLab and the ShaderGraph, the Material Editor is the only way to create custom shaders/materials in your Lens Studio project.

While you must use the Material Editor to create shaders and materials, you can still write shader code within the Material Editor using the Custom Code node. While Unity uses HLSL, the Custom Code node uses GLSL along with some special formatting for variables. All standard GLSL functions are available within Code Node.

VFX and Particle System

Lens Studio has a Visual Effects (VFX) Graph system that is similar to Unity's VFX Graph. The VFX editor in Lens Studio is a node-based editor that allows you to modify properties of particles at three stages: spawn, update, and output. Unity's VFX Graph has four stages: spawn, initialize, update, and output.

In addition to nodes, the VFX editor also has access to the Custom Code node, which allows you to write custom GLSL code to affect your particles.

While Lens Studio does not have a particle system that works directly with in-scene physics colliders like Unity's Particle System, the VFX Graph does provide several ways to create collisions for your particle systems similar to Unity's approaches. For more information, you can refer to the VFX Collisions documentation.

Asset "Particles"

Additionally, you can use the Particles asset, which uses a specialized material instead of the VFX graph to create a particle system. You can create the Particles asset by clicking the plus button on the Objects panel and selecting "Particles." This material already has options for many common particle attributes available to modify in the Particles material, such as spawn options, color ramps, noise, and velocity.

To learn more, here is where you can learn the basics of VFX in Lens Studio: Learn More

Post Effects

Lens Studio has a built-in system for adding post effects to your projects. To use this feature, you can add a Post Effect component to a Scene Object. There are many pre-made post effects available in Lens Studio, such as Smoothing, Blur, HalfTone, and Edge. You can access these by clicking the plus button on the Objects panel and hovering over the Post Effect option. In addition to these ready-made effects, you can also create and edit your own Post Effect materials using the Material Editor with an output Shader node set to "Post Effect."

To learn more about Post Effect, you can check out this page.

Build and Release

Build and release in Lens Studio is simple and straightforward. Your Lenses will be hosted through one of the environments:

  • Snapchat (Android and iOS)
  • Spectacles (Wearable)
  • Camera Kit (publication process may vary)

You can publish your lens through the Publish Lens button in Lens Studio. For more detailed steps, checkout this guide. Although your lens has to exist on one of Snap's platforms, once it’s published, your AR application will be available to a vast global audience of active users.

Was this page helpful?
Yes
No

AI-Powered Search