Skip to main content
Version: 5.x
Supported on
Snapchat
Camera Kit

Transitions Library Plugin

This plugin is a library of VFX transitions, with the ability to preview existing transitions, search among them, and install them into a project without the need for additional settings.

Where to Find it

Asset Library

To Install Transitions Library Plugin in Lens Studio:

  1. In Lens Studio, navigate to the Plugins category in the Asset Library.

  2. Locate the Transitions Library Plugin and click on it to install.

  3. Access the Transitions Library panel by navigating to Window -> Transitions Library in the top menu bar.

Usage

  1. Initially, a page with all the transitions will be visible. You can also use the menu on the left to navigate through the following categories:
  • Camera Effects: Effects that emulate various types of camera lenses and techniques, such as bokeh, flares, vintage film styles, and others, creating unique visual aesthetics.

  • Motion: Abstract animations and movements that can be used to create dynamic and engaging visual effects, often utilized for backgrounds or as supplementary elements.

  • Overlay: The application of various graphical elements, such as textures, colors, or images, layered over the main content to enhance visual appeal and style.

  • Cartoon: Effects that mimic hand-drawn or cartoon styles, including pencil sketches, pastel effects, or 2D animation-inspired visuals.

  • Distortion: Visual effects involving glitches, image warping, and disruptions, creating a damaged or altered appearance.

  • Scan: Effects related to scanning processes, such as scan lines, retro scanner aesthetics, or visuals that utilize depth and slicing for dramatic effect.

  • Nature: Transitions associated with the effects of nature - rain, lightning, seasons.

  • Fast transitions: Effects designed to create seamless and quick changes between scenes or elements, adding a sense of movement and energy.

  1. When hovering over each transition, the option to play a video preview and download the transition will appear.
  2. After pressing the Import button, a prefab of the selected transition will be added to the scene. No additional setup is needed. The added transition immediately has the necessary parameters for render targets and scripts required for its execution.

  1. You can use the Transition Executor script to select events during which the transition restarts and reverts to the previous state. Additionally, you can trigger it through code using the play() method of the custom component Transition Executor.
// @input Component.ScriptComponent transitionExecutor
// @input float delayBeforeStart
let delay = script.createEvent('DelayedCallbackEvent');
delay.bind(function () {
script.transitionExecutor.play();
});
delay.reset(script.delayBeforeStart);

Modification of the transition:

If you need to modify a transition (such as speed, duration, textures, etc.), you can do so using the custom components included within the imported transition.

  1. If you want to change the textures from which or to which the transition is made, or the duration of the transition - configure this in the input data of the Transition Executor script:

  2. If you want to change the animation of the materials involved in the transition - configure this in the input data of the TimeLineItemInputs script.

TransitionExecutor

TransitionExecutor is a component that manages the execution of transitions.

API

setDuration(value: number) : void

Sets the duration for each timeline item to the specified duration.


reset() : void

Resets the state of the TransitionExecutor and all timeline items.


pause(): void

Pauses the execution of the transition.


play(): void

Starts the execution of the transition.


stop(): void

Stops the execution of the transition.


Was this page helpful?
Yes
No