Hi. I need help with tappable overlays. I have 2 overlays and I have a bit of a struggle with them.
- Customize
I am having trouble with the customization button. I will demonstrate a picture:
Summary
As seen in the photos, the characters are going “inside” the overlays & I don’t know how to change that.
- The skip
The skip button pictures:
Summary
As seen in the picture, it’s not putting the other choices. Sometimes the other choice would show but it never worked. And if the readers want to skip the episode I don’t know how to finish the episode.
So, If you know please assist.
My script template is down below
Summary
INT. VAMPIRESTART with START with SKIP with CUSTOMIZE
label start_of_story
@overlay 6351333595217920_START shifts to 68 383 in zone 1
@overlay 6351333595217920_START scales to 2.620 2.620
@overlay 6351333595217920_START moves to layer 8
@overlay 6351333595217920_CUSTOMIZE shifts to 25 244 in zone 1
@overlay 6351333595217920_CUSTOMIZE scales to 2.368 2.368
@overlay 6351333595217920_CUSTOMIZE moves to layer 8
@overlay 6351333595217920_SKIP shifts to 78 74 in zone 1
@overlay 6351333595217920_SKIP scales to 2.764 2.764
@overlay 6351333595217920_SKIP moves to layer 8
tappable
“START” {
goto start_story
} “CUSTOMIZE” {
label customize_characters
NARRATOR
Who do you want to customize?
choice
“Character 1” {
@YOU walks to screen center
goto CHAR_1
} “Character 2” {
goto CHAR_2
} “Character 3” {
goto CHAR_3
} “Finished customizing!” {
goto done_cc
}
label CHAR_1
@pause for 0
#CHARACTER 1 customization goes here#
goto customize_characters
label CHAR_2
@pause for 0
#CHARACTER 2 customization goes here#
goto customize_characters
label CHAR_3
@pause for 0
#CHARACTER 3 customization goes here#
goto customize_characters
#Your story goes here#
} “SKIP” {
NARR
Are you sure you would like to SKIP?
choice “Yes, I would like to skip.” {
NARR
Okay! See you in the next episode.
}} “No, I would NOT like to SKIP” {
goto start_of_story
}
NARR
Let’s start!
label start_story
@transition fade out black in 3
Thank you!