Search found 5 matches

by tanakeiQ
Wed May 23, 2018 1:41 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best practices of animation images that are already displayed
Replies: 8
Views: 1126

Re: [SOLVED] Best practices of animation images that are already displayed

Or the following code is also good. "Show sakuya" show sakuya maid default at center as original with dissolve: zoom 0.5 yoffset 150 "Show copy" show sakuya maid default at right as copy with dissolve: zoom 0.5 yoffset 150 "Apply to sakura" show sakuya as original: ease...
by tanakeiQ
Wed May 23, 2018 12:39 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best practices of animation images that are already displayed
Replies: 8
Views: 1126

Re: Best practices of animation images that are already displayed [RESOLVED]

https://www.renpy.org/doc/html/displaying_images.html#renpy.copy_images Its nice. image sakuya = "sakuya maid default.png" ... "Show sakuya" show sakuya at center with dissolve: zoom 0.5 yoffset 150 "Copy" $ renpy.copy_images(old="sakuya", new="copy1&quo...
by tanakeiQ
Wed May 23, 2018 3:55 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best practices of animation images that are already displayed
Replies: 8
Views: 1126

Re: Best practices of animation images that are already displayed

thanks! understood. From what I understand, giving your image a different image tag doesn't create a handle on it, so you can't directly manipulate it by that name besides hiding it. I see. I'd like you to be able to specify animation for aliases in future updates... sakuya2 = "sakuya.png"...
by tanakeiQ
Tue May 22, 2018 8:06 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best practices of animation images that are already displayed
Replies: 8
Views: 1126

Re: Best practices of animation images that are already displayed

thanks kivik! Any particular reason you're renaming sakuya to sakuya_center? I want to display the same character with the setting called Doppelganger. Actually it will be as follows. transform zoom_out: linear 1.0 zoom 0.5 ... show sakuya maid default at right as sakuya_right with dissolve pause sh...
by tanakeiQ
Mon May 21, 2018 10:23 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best practices of animation images that are already displayed
Replies: 8
Views: 1126

[SOLVED] Best practices of animation images that are already displayed

Hi All. I'm tried zoom character that is already displayed. show sakuya maid default at center as sakuya_center: with dissolve pause show sakuya maid default at center as sakuya_center: linear 1.0 zoom 0.5 Its works, but very redundant. For example, I want to write like this. show sakuya maid defaul...