top of page

You can place your characters anywhere on the screen at whatever size you want them to be using spot direction.​ Use this command:

@CHARACTER spot % x y in zone # at layer #

  • % is the scale size which determines how big or how small you want your character to be.

    • The default scale size is 1.28​0 (positions such as "screen center" use the default size)

  • x y are the spot coordinates which determines where your character will be placed on the screen.

    • x is the x coordinate, the horizontal placement from side to side. 0 - 320 is a place onscreen. Anything less than 0 is offscreen to the left and anything more than 320 is offscreen to the right.​

    • y is the y coordinate, the vertical placement, up and down.

  • zone # is the zone in which you want your character to be placed in (1-4)

  • layer # determines the layer of the character

  • You do not have to add the layer or the zone if you don't need to. You can just use: @CHARACTER spot % x y

IMG_2178 x.jpg
IMG_2178 x2.jpg
IMG_2178 x3.jpg

Use the spot helper when previewing your story. First tap on "Show Helpers" then you'll find the "Spot Directing" near the bottom of the screen.

To change characters, tap on "Change Char" or tap on the character on screen.

Web Previewer Users: 

  • Click on the "Switch tool" to toggle between moving the character and changing the scale.

  • Click and drag to place your character where you want or change their size.

  • The exact code for the placement can be found underneath the web previewer. You can copy and paste the code right into your script.

App Previewer Users:

  • Tap the screen and move your finger around to place your character.

  • Pinch the screen with 2 fingers to make the character smaller.

  • Spread your fingers away from each other to make the character grow bigger.

Walking With Spot Direction

@CHARACTER walks to spot % x y in zone # in [time]

Entering the Scene to a Specific Spot:

  • The "enters from" command uses the default size.

  • The character will enter the scene at the size of 1.280 then walk to a certain spot onscreen

@CHARACTER enters from left/right to spot % x y

Example:

@CHARACTER enters from right to spot 0.74 160 200

Entering the Scene with a Specific Scale Size:​

  • Using "enters from" makes the character enter at the default size, so if you want them to enter at a specific height, you must first place your character at a spot offscreen with the size you want them to be at. 

    • Remember, the x coordinate needs to be less than 0 to be offscreen to the left, and more than 320 to be offscreen to the right.

    • Or you can just place them in a different zone

  • Then have them walk to whichever spot you want them to go to with the same scale size and the same y coordinate.

Example:

@CHARACTER spot 0.98 -100 130 in zone 2 at layer 3

@CHARACTER walks to spot 0.98 125 130 in zone 2 in 5

Exiting the Scene with a Specific Scale Size:

  • Using "@CHARACTER exits left/right" will make the character exit at the default size of 1.280

  • You will have to make your character walk to a spot offscreen if you want them to exit at the same scale size, then remove that character.

    • Remember, the x coordinate needs to be less than 0 to be offscreen to the left, and more than 320 to be offscreen to the right.​

    • Or you can just make them walk to a spot in a different zone, then remove the character.

  • Use the "then" command on the same line to remove the character from the scene after they walked offscreen.

Example:

@CHARACTER walks to spot 0.587 420 223 in 4 THEN remove CHARACTER

Walking and Changing Layers:

  • You cannot add "at layer #" to a spot walking command.

  • The only way to have your character walk to a spot and change their layer at the same time is to use the "moves to layer" command

  • You have to add the layer command on the same line as the walking command using the "and" command. 

@CHARACTER walks to spot % x y in [time] and CHARACTER moves to layer # 

Following Character to Spot in Different Zone:

  • The "follow" command is only valid for general positions (screen left, upscreen right, etc.)

  • To have the camera follow a character to a specific spot in a different zone, you will have to pan to that zone at the same time your character walks.

@CHARACTER walks to spot % x y in zone # in [time] and pan to zone # in [time]

Example Codes:

@CHARACTER spot 1.395 22 305 in zone 3 at layer 7

@CHARACTER spot 2.0 288 -30

@CHARACTER spot .55 95 200 in zone 2

@CHARACTER spot 1 160 100 in zone 2 at layer -3

@CHARACTER spot 0 0 0

@CHARACTER walks to spot .9 32 45 in 2

@CHARACTER walks to spot 0.783 399 257 in zone 3

@CHARACTER walks to spot 1.280 160 0 in zone 1 in 4

@CHARACTER walks to spot 4.06 -84 -100 

bottom of page