Search found 6 matches

by vasiliy_vasilyev
Sun Nov 25, 2018 2:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Choice imagebutton glitching.
Replies: 3
Views: 314

Re: Choice imagebutton glitching.

Why not do it like so: screen settings_ris: modal False text 'Опции': style "veracrouz" xalign 0.5 yalign 0.15 text 'Собственный спрайт Генки': style "veracrouz" size 64 xalign 0.35 yalign 0.5 if sprite_gen == 'v1': imagebutton: xalign 0.65 yalign 0.5 auto 'ris/images/gui/no_slc...
by vasiliy_vasilyev
Sun Nov 25, 2018 1:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Choice imagebutton glitching.
Replies: 3
Views: 314

Choice imagebutton glitching.

Hello everybody. So... right now I'm writing a modification for a visual novel, and ran into trouble (see trouble.png). That happens when button is activated. Stage 1: first version of that button imagebutton: xalign, yalign bla-bla if gen_spr == 0: auto 'file_path/file_name_%s.png' action SetVariab...
by vasiliy_vasilyev
Thu Jul 26, 2018 2:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Styled textbutton disappears
Replies: 2
Views: 334

Re: Styled textbutton disappears

Nope. Doesn't work.
by vasiliy_vasilyev
Thu Jul 26, 2018 1:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Styled textbutton disappears
Replies: 2
Views: 334

Styled textbutton disappears

Hello again. Recently tried to make a test menu for a Ren'Py project with integrating style. I have used renpy style defining. Code of button style: style rosemarena_b: size 24 font "RosaMarena.ttf" idle_color "#aaa" hover_color "#aaa" Code of button: textbutton "s...
by vasiliy_vasilyev
Wed Jul 25, 2018 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Using lists in ATL
Replies: 3
Views: 517

Re: Using lists in ATL

Imperf3kt wrote: Wed Jul 25, 2018 6:04 pm If you're looking to make a Chess game, one was very recently added to the cookbook.
Perhaps this can save you some work?

viewtopic.php?f=51&t=50997
Thanks for help, but I try to realize something simplier - checkers.
by vasiliy_vasilyev
Wed Jul 25, 2018 3:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Using lists in ATL
Replies: 3
Views: 517

Using lists in ATL

Hello everyone. I wanna define transforms that are responsible for defining positions on chess board. However, unlike classic way, names of these transforms are located in Python list. But I ran on a problem "invalid syntax". Code: init python: comb = [] xposn = [] yposn = [] comb.append('...