Search found 8 matches

by winsock
Mon Apr 02, 2012 12:09 pm
Forum: Ren'Py Questions and Announcements
Topic: how to define a image style's bar?
Replies: 3
Views: 435

Re: how to define a image style's bar?

thank you Reply to this topic.

but after test your code,i notice that my roll button is not display,maybe roll button not defind?
by winsock
Mon Apr 02, 2012 4:21 am
Forum: Ren'Py Questions and Announcements
Topic: how to define a image style's bar?
Replies: 3
Views: 435

how to define a image style's bar?

i have two image: bar background: item-bar.png bar roll button: b-bar_idle.png and this is my designsketch: designsketch.png so,How to define this image style's bar?i try to write a define code: ui.bar(left_bar=Frame("UI/item-bar.png", 0, 0), thumb=Frame("UI/b-bar_idle.png", 0, 0...
by winsock
Sat Mar 31, 2012 8:37 pm
Forum: Development of Ren'Py
Topic: Editra + Ren'Py
Replies: 27
Views: 11759

Re: Editra + Ren'Py

so,why not use notepad++?i think it's a good editor.and it is GPL license.
by winsock
Sat Mar 31, 2012 12:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange Reload
Replies: 4
Views: 583

Re: Strange Reload

could you give me some suggest?
thank you.
by winsock
Sat Mar 31, 2012 12:05 am
Forum: Ren'Py Questions and Announcements
Topic: Strange Reload
Replies: 4
Views: 583

Re: Strange Reload

ok...so,if i want to make a FadeIn effects,What should I do? I mean use the python.
thank you
by winsock
Fri Mar 30, 2012 11:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange Reload
Replies: 4
Views: 583

Strange Reload

i use renpy.define_screen to define a preferences scene init python: IsFadeIn=True def BGAlpha(t,st,at): global IsFadeIn if IsFadeIn and t.alpha<1: t.alpha=t.alpha+0.1 elif (not IsFadeIn) and t.alpha>0: t.alpha=t.alpha-0.1 return 0 def preferences(_scope,_name): print _name print _scope ui.transform...
by winsock
Fri Mar 30, 2012 12:18 pm
Forum: Ren'Py Questions and Announcements
Topic: how to use python definition the scene show and hide event?
Replies: 2
Views: 364

how to use python definition the scene show and hide event?

i use renpy.define_screen to define a new scene,but how to uew python define the scenen's show and hide event?
just as the Screen Language 's "On"?