What are Everywhere Actions?
Needle's Everywhere Actions are a set of carefully chosen components that allow you to create interactive experiences in Unity without writing a single line of code.
They are designed to serve as building blocks for experiences across the web, mobile and XR, including Augmented Reality on iOS.
From low-level triggers and actions, higher-level complex interactive behaviours can be built.
Supported Platforms
- Desktop
- Mobile (Android / iOS)
- VR Glasses
- AR Devices
- iOS AR – QuickLook (yes, really!)
How do I use Everywhere Actions?
For iOS support add the USDZExporter
component to your scene. It is good practice to add it to the same object as the WebXR
component (but not mandatory)
To add an action to any object in your scene
select it and then click Add Component > Needle > Everywhere Actions > [Action]
.
List of Everywhere Actions
Action | Description | Example Use Cases |
---|---|---|
Play Animation on Click | Plays a selected animation state from an Animator. After playing, it can optionally transition to another animation. | Product presentations, interactive tutorials, character movement |
Change Material on Click | Switch out one material for others. All objects with that material will be switched together. | Product configurators, characters |
Look At | Make an object look at the camera. | UI elements, sprites, info graphics, billboard effects, clickable hotspots |
Play Audio on Click | Plays a selected audio clip. | Sound effects, Narration, Museum exhibits |
Hide on Start | Hides an object at scene start for later reveal. | |
Set Active on Click | Show or hide objects. | |
Change Transform on Click | Move, rotate or scale an object. Allows for absolute or relative movement. | Characters, products, UI animation (use animation for more complex movements) |
Audio Source | Plays audio on start and keeps looping. Spatial or non-spatial | Background music, ambient sounds |
WebXR Image Tracking | Tracks an image target and shows or hides objects. | AR experiences, product presentations |
Samples
Musical Instrument
Demonstrates spatial audio, animation, and interactions.
Simple Character Controllers
Demonstrates combining animations, look at, and movement.
Image Tracking
Demonstrates how to attach 3D content onto a custom image marker. Start the scene below in AR and point your phone's camera at the image marker on a screen, or print it out.
On Android: please turn on "WebXR Incubations" in the Chrome Flags. You can find those by pasting chrome://flags/#webxr-incubations into the Chrome browser address bar of your Android phone.
Interactive Building Blocks Overview
Create your own Everywhere Actions
Creating new Everywhere Actions involves writing code for your action in TypeScript, which will be used in the browser and for WebXR, and using our TriggerBuilder and ActionBuilder API to create a matching setup for Augmented Reality on iOS via QuickLook. When creating custom actions, keep in mind that QuickLook has a limited set of features available. You can still use any code you want for the browser and WebXR, but the behaviour for QuickLook may need to be an approximation built from the available triggers and actions.
Tips
Often constructing specific behaviours requires thinking outside the box and creatively applying the available low-level actions. An example would be a "Tap to Place" action – there is no raycasting or hit testing available in QuickLook, but you could cover the expected placement area with a number of invisible objects and use a "Tap" trigger to move the object to be placed to the position of the tapped invisible object.
Triggers and Actions for QuickLook are based on Apple's Preliminary Interactive USD Schemas
Code Example
Here's the implementation for HideOnStart
as an example for how to create an Everywhere Action with implementations for both the browser and QuickLook:
import { Behaviour, UsdzBehaviour, BehaviorModel, TriggerBuilder, ActionBuilder, BehaviorExtension, USDObject, USDZExporterContext } from "@needle-tools/engine";
export class HideOnStart extends Behaviour implements UsdzBehaviour {
start() {
this.gameObject.visible = false;
}
createBehaviours(ext: BehaviorExtension, model: USDObject, _context: USDZExporterContext) {
if (model.uuid === this.gameObject.uuid)
ext.addBehavior(new BehaviorModel("HideOnStart_" + this.gameObject.name,
TriggerBuilder.sceneStartTrigger(),
ActionBuilder.fadeAction(model, 0, false)
));
}
beforeCreateDocument() {
this.gameObject.visible = true;
}
afterCreateDocument() {
this.gameObject.visible = false;
}
}
Tips
Often, getting the right behaviour will involve composing higher-level actions from the available lower-level actions. For example, our "Change Material on Click" action is composed of a number of fadeActions
and internally duplicates objects with different sets of materials each. By carefully constructing these actions, complex behaviours can be achieved.
Low level methods for building your own actions
Triggers | |
---|---|
TriggerBuilder.sceneStartTrigger | |
TriggerBuilder.tapTrigger |
Actions | |
---|---|
ActionBuilder.fadeAction | |
ActionBuilder.startAnimationAction | |
ActionBuilder.waitAction | |
ActionBuilder.lookAtCameraAction | |
ActionBuilder.emphasize | |
ActionBuilder.transformAction | |
ActionBuilder.playAudioAction |
Group Actions | |
---|---|
ActionBuilder.sequence | |
ActionBuilder.parallel | |
GroupAction.addAction | |
GroupAction.makeParallel | |
GroupAction.makeSequence | |
GroupAction.makeLooping | |
GroupAction.makeRepeat |
To see the implementation of our built-in Everywhere Actions, please take look at src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts
.
Further reading
The following pages provide more examples and samples that you can test and explore right now:
- Visit our AR Showcase Website that has many interactive AR examples with a focus on iOS AR & Quicklook
- Needle Engine Everywhere Action Samples