Search found 206 matches

by iichan_lolbot
Sat May 09, 2009 6:44 pm
Forum: Ren'Py Questions and Announcements
Topic: Russian Translation
Replies: 9
Views: 1343

Re: Russian Translation

I know about at least half-a-dozen VNs in Ex-USSR, which are being developed at current time using RenPy.
by iichan_lolbot
Sat Apr 18, 2009 4:23 am
Forum: Ren'Py Questions and Announcements
Topic: keybindings dilemna
Replies: 2
Views: 774

Re: keybindings dilemna

I think you should just redefine key bindigs. Or do smth like this: init python: default_keymap = config.keymap my_keymap = dict( ...#all you want ) After that you just start walking sections with $ config.keymap = my_keymap and finish them with $ config.keymap = default_keymap
by iichan_lolbot
Tue Apr 07, 2009 11:00 am
Forum: Ren'Py Questions and Announcements
Topic: Music hacks from script?
Replies: 7
Views: 907

Re: Music hacks from script?

delta wrote:It's in 6.9.1, and it works.
Can't find it in documentation. :shock:
by iichan_lolbot
Tue Apr 07, 2009 10:07 am
Forum: Ren'Py Questions and Announcements
Topic: Music hacks from script?
Replies: 7
Views: 907

Re: Music hacks from script?

http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=4864&hilit=volume This is for your first question. Well, actually I'd hope that this functionality will be integrated in 6.9.1 (it's not hard), this is only a stopgap solution because there's no ETA for 6.9.1. Well, I'd join to Delta in my hope, ...
by iichan_lolbot
Tue Apr 07, 2009 4:40 am
Forum: Ren'Py Questions and Announcements
Topic: Music hacks from script?
Replies: 7
Views: 907

Music hacks from script?

Is it possible to make something with the sound and music streams, other then just play/queue/stop?
Our musician wants to do some things like:
  • Volume fading from current value to a given one
  • Playback speed fading from current value to a given one (Is it possible? O_o)
by iichan_lolbot
Mon Mar 09, 2009 6:44 am
Forum: Ren'Py Questions and Announcements
Topic: Lambda troubles [SOLVED: renpy.curry instead of lambda]
Replies: 4
Views: 1177

Re: Lambda troubles

Thanks, PyTom!
RenPy really ROCKS!!!!
by iichan_lolbot
Sun Mar 08, 2009 5:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Lambda troubles [SOLVED: renpy.curry instead of lambda]
Replies: 4
Views: 1177

Lambda troubles [SOLVED: renpy.curry instead of lambda]

It's more python question, I guess, but I still ask it here... I'm implementing something like an imagemap, but which is scrollable by moving mouse near the edge of the screen. Doing this, I met a strange problem, involving lambda-funcs: def overlay(self): if self.enabled: ui.image(self.pics["bgpic"...
by iichan_lolbot
Wed Jan 14, 2009 12:18 pm
Forum: Ren'Py Questions and Announcements
Topic: making transparent imagebuttons(SOLVED)
Replies: 4
Views: 739

Re: making transparent imagebuttons(SOLVED)

Yes, i use imagebuttons, that contain transparent parts.
Or you meen fully transparent picture, without any non-transparent pixels?
It would be very strange if it is shown somehow O_O
by iichan_lolbot
Tue Jan 13, 2009 6:40 am
Forum: Ren'Py Questions and Announcements
Topic: making transparent imagebuttons(SOLVED)
Replies: 4
Views: 739

Re: making transparent imagebuttons(SOLVED)

>>>I tried using a transparent png but it still isn't transparent.

WHAT?! O__O
by iichan_lolbot
Tue Jan 13, 2009 6:40 am
Forum: Ren'Py Questions and Announcements
Topic: using ui.imagebutton and im.matrix.brightness[Solved]
Replies: 3
Views: 618

Re: using ui.imagebutton and im.matrix.brightness

Interesting idea, I'll try it.

The most interesting thing is that we can change effects without editing png's, not less drive space.
Also we are always sure, that all the imagebuttons have the same effects.
by iichan_lolbot
Tue Jan 13, 2009 6:36 am
Forum: Ren'Py Questions and Announcements
Topic: Flash question
Replies: 10
Views: 1343

Re: Flash question

Flash version of RenPy (RenFlay?)))) would be a separate project?
Or you plan a full migration from "fairly heavyweight" python to "portable to very many embedded devices" flash?
by iichan_lolbot
Mon Jan 12, 2009 2:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Flash question
Replies: 10
Views: 1343

Re: Flash question

What about pure python code?

It's a much more powerful and flexible thing, then action script. I don't believe it have all the features of python...

By the way, Python port for PSP exists, maybe it exists for other gadgets too...
by iichan_lolbot
Fri Jan 09, 2009 4:40 pm
Forum: Ren'Py Questions and Announcements
Topic: call ... from
Replies: 1
Views: 552

call ... from

I just wonder... On the one hand we have: call_statement -> "call" name "(" arguments ")" ( "from" name )? call_statement -> "call" "expression" simple_expression "(" arguments ")" ( "from" name )? On the other: Function: renpy.call_in_new_context (label): So, the question is: is there a way of usin...
by iichan_lolbot
Fri Jan 09, 2009 12:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Questions on rollback
Replies: 14
Views: 3350

Re: Questions on rollback

PyTom wrote:This isn't easy. For one thing, it's actually pretty hard to set recollection01 in such a way that it doesn't get unset when rolling back to before the point where it was first set.
Do you mean, that even persistent.* values would suffer?