Tutorial Ren'Py - Animation and Transformation Language (ATL)

Опубликовано: 10 Октябрь 2024
на канале: Discover with Mia
4,395
175

Hello adventurers! A new Ren'Py tutorial is available on the Discover with Mia channel. In this video, we will see how to use the Animation and Transformation Language. With the help of Princess Emi and Captain Silver, we'll do this quest together. (=˃ᆺ˂=)

link to renpy documentation : https://www.renpy.org/doc/html/atl.html
My ~meow Twitter:   / miacodeex  

=^._.^= ∫
Here are the steps we will see:

Ren'Py - ATL - Animation and Transformation Language:

A : Move the character

1- transform name_animation:
xalign 0.0 yalign 0.0
linear 1.0 xalign 1.0
repeat

2- show name_img.png at name_animation

B : Change a character's expressions

1- image name_animation_b :
"image_name_A.png" with Dissolve(1)
pause 1.0
"image_name_B.png" with Dissolve(1)
pause 1.0
repea

2- show name_animation_b at position (left, right, trucenter)

C: move the character and change her expressions at the same time

1- image name_animation_c :
parallel :
block_animation_a (character expression )
parallel :
block_animation_b (character movement )

2- show name_animation_c


D :Replace an image with another one with transition.

1-

image name_animation_a:
animation
"img_a.png"
xalign 0.0 yalign 0.0
linear 1.0 xalign 1.0
repeat

image name_animation_b:
animation
"img_b.png"
xalign 1.0 yalign 0.0
linear 1.0 xalign 0.0
repeat

2-
show name_animation_a
pause
hide name_animation_a
show name_animation_b
pause
hide name_animation_b

Thank you for your support, if you watch this video on February 14, 2023,
I wish you a happy Valentine's Day (₌♥ᆽ♥₌)

Musics :

Karugamo BGM
Trial & Error

Characters :

-NoranekoGames

Thank you very much for your support! Meow! (=^ ◡ ^=)

#renpy #tutorial #indiegamedev #visualnovel #animation