- Sep 9, 2022
- 4
- 3
Hello,could someone please help me with this code?I´m a total beginner at Renpy.I wanted to create the effect of the camera showing the picture with character from bottom to top
I created new project for that effect to avoid messing up my original
Thanks for the help
You must be registered to see the links
its done in visual novels, at introduction with new characters.
Code:
define k = Character("kk")
image picture_1 = "FIRST_DAY_MORNING_SCENE_54p_introduce.jpg"
image picture_2 = "FIRST_DAY_MORNING_SCENE_52p_a and.jpg"
label start:
scene picture_1
yalign 1.0
ease 5.5
yalign 0.0
k "test"
scene picture_2
k "test"
return
You must be registered to see the links
is the error:
Code:
[code]
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/script.rpy", line 14: expected statement.
yalign 1.0
^
File "game/script.rpy", line 15: expected statement.
ease 5.5
^
File "game/script.rpy", line 16: expected statement.
yalign 0.0
^