Skip to main content
Version: 3.0

Base Settings

Below are settings found in all Markers that allow you to configure the positioning, constraints, and visual effects for tutorial markers in your UI.

Position Mode

Select how your marker will be positioned in the canvas:

ModeDescription
Canvas Transform BasedPositions the marker relative to a UI element in your canvas
World Transform BasedPositions the marker based on a world-space transform, converting the position to screen space
Anchor BasedPositions the marker at a fixed anchor point in the canvas
ManualAllows direct specification of the marker's position using Vector2 coordinates

Canvas Transform Based

SettingDescription
Target CanvasReference to the canvas that contains the target UI element
Target TransformThe RectTransform of the UI element the marker will be positioned relative to
AlignmentHow the marker aligns with the target (see Alignment Options table below)

World Transform Based

SettingDescription
Target TransformThe world-space Transform the marker will track
AlignmentHow the marker aligns with the projected screen position of the target
Render CameraConfiguration for which camera to use for world-to-screen projection

Camera Configuration

Camera TypeDescription
Inherit from CanvasUses the camera assigned to the canvas
Camera.mainUses the main camera in the scene
CustomUses a specified camera reference

Anchor Based

SettingDescription
AlignmentSets the marker at a fixed location in the canvas based on selected alignment

Manual

SettingDescription
PositionDirect Vector2 coordinates where the marker will be placed

General Settings

SettingDescription
Calculate OnceWhen enabled, calculates marker position only once. When disabled, recalculates every Update() loop
Constrain to CanvasConfiguration to ensure marker stays within canvas boundaries
OffsetFinal Vector2 offset applied after all positioning calculations

Constrain to Canvas

When Constrain to Canvas is enabled, the Marker will not leave the Canvas, even if its final position would be out of bounds. This is useful if you want the Player to pay attention to something that's out of their field of view.

Padding

Specifies the padding of the constraint. The higher the values, the smaller the space the Marker can navigate around.

Here's a visualization of how padding works against the canvas and how the Marker is affected by it:

Setting padding to a negative value will achieve the opposite effect, increasing the constraint area beyond the Canvas.

Effects

Entrance

Entrance effects play once when Markers are appearing.

You can add multiple effects and control the order in which they appear.

Duration

Controls how many seconds it takes for an effect to finish. The longer the duration, the slower the effect.

Effect timing

You can control the timing at which effects start playing:

  • Start After Previous - The effect will play only after the previous one finishes
  • Start With Previous - The effect will play in parallel with the previous one

Note that the timing does not affect how the first effect plays.

Loop

Loop effects play continuously and always in parallel. They stop playing when Markers are no longer needed (i.e., when the Stage is exited).