Search found 34 matches

by Vladya
Fri Oct 23, 2020 8:16 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Problem with CTypes and Unicode characters
Replies: 11
Views: 824

Re: Problem with CTypes and Unicode characters

First of all, you don't escaped '\' characters . Second, you can use the more convenient 'renpy.loader.transfn' that accepts the path relative to the 'game' folder. With this in mind, I used the code below and it works for me. ("bass api" was in the vicinity. It is important for us to chec...
by Vladya
Fri Oct 23, 2020 4:17 am
Forum: Ren'Py Questions and Announcements
Topic: remember YScrollValue
Replies: 1
Views: 584

Re: remember YScrollValue

init python: _yinitial = .0 screen my_screen: hbox: align (.5, .5) xysize (1280, 720) vpgrid id "some_id": cols 3 spacing 30 yinitial _yinitial mousewheel True draggable True xfill True for i in xrange(1337): textbutton "{0}".format(i) action Return() vbar value YScrollValue(&qu...
by Vladya
Mon Oct 19, 2020 6:21 am
Forum: Ren'Py Questions and Announcements
Topic: Different bleeps for 1 character?
Replies: 2
Views: 420

Re: Different bleeps for 1 character?

You need _side_image_attributes variable. This is a tuple of strings (or None), where the first element is the image tag associated with the character, and the subsequent elements are the attributes passed along with the name (exactly what you are looking for). Example: init python: def char_callbac...
by Vladya
Sat Oct 10, 2020 11:16 am
Forum: Ren'Py Cookbook
Topic: Equalizer, shooter, and music tag parser.
Replies: 2
Views: 1987

Equalizer, shooter, and music tag parser.

A few my recent projects. (The sources on GitHub, if possible, provided with comments in Russian (in .rpy files) and English (in .py/.c/.h files) languages). №1. " whatPlaying ". Music file tag parser. https://i.ibb.co/1fSH637/2020-08-22-02-45-09.png https://i.ibb.co/m9xdBPG/2020-08-22-02-...