Search found 1950 matches

by Donmai
Tue Jul 30, 2013 9:08 am
Forum: Ren'Py Questions and Announcements
Topic: Help 2 create a background with slight wobble/shake (Solved)
Replies: 9
Views: 1423

Re: Help to create a background with slight wobble/shake

Sad news for you, tigersmurf (well, not so sad, at all :P ): in fact it's not easy, at last while we're in the beginning. The first time I saw a block of ATL code I ran away screaming :shock: :lol: . Nowadays I'm still unaware of writing ATL whithout rereading the documentation every minute. Yes, yo...
by Donmai
Mon Jul 29, 2013 5:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Help 2 create a background with slight wobble/shake (Solved)
Replies: 9
Views: 1423

Re: Help to create a background with slight wobble/shake

Here is a quick and dirty way to make two things at the same time (in this case, rotate and zoom): scene your image: truecenter zoom 1.5 rotate 30.0 subpixel True ease 1.5 zoom 1.0 rotate 0.0 with dissolve or you can use the parallel statement: http://www.renpy.org/wiki/renpy/doc/reference/Animation...
by Donmai
Mon Jul 29, 2013 1:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Help 2 create a background with slight wobble/shake (Solved)
Replies: 9
Views: 1423

Re: Help to create a background with slight wobble/shake

Take a look also here, tigersmurf: http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=10321 As for your question regarding "truecenter", it is only one of the possible default transforms to display graphics. Look here: http://www.renpy.org/doc/html/transforms.html#default-transforms ...
by Donmai
Sun Jul 28, 2013 5:44 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best way for overlaying special effects
Replies: 4
Views: 888

Re: Best way for overlaying special effects

Coud it be this is what you want? http://lemmasoft.renai.us/forums/viewto ... =8&t=22154
Please ignore my lame ATL code. Tom's solution is better!
by Donmai
Sun Jul 28, 2013 5:34 pm
Forum: Ren'Py Questions and Announcements
Topic: May be simple but....
Replies: 3
Views: 651

Re: May be simple but....

Hi Fenrir. How are you coding the position of your sprite?
Look this thread for some code examples: http://lemmasoft.renai.us/forums/viewto ... =8&t=21949
by Donmai
Sun Jul 28, 2013 8:55 am
Forum: Ren'Py Questions and Announcements
Topic: Combining other effects with Shake?
Replies: 6
Views: 1982

Re: Combining other effects with Shake?

Old problems need new solutions. Why don't you use the ATL code Alex wrote to simulate the shake effect? It's here: http://lemmasoft.renai.us/forums/viewtopic.php?p=137350#p137350 Then you can simply do something like: scene background at my_shake with Dissolve(2.0) You can tweak the offset numbers ...
by Donmai
Fri Jul 26, 2013 7:55 pm
Forum: General Discussion
Topic: Just wanted to say thanks
Replies: 4
Views: 817

Re: Just wanted to say thanks

I see nothing strange with your post, Fenrir. In fact there is a thread for this kind of post: http://lemmasoft.renai.us/forums/viewtopic.php?f=13&t=13879 For some reason people stopped posting there (shame on me! never did it :oops: ). I'm happy to know how Ren'Py and the community are being go...
by Donmai
Fri Jul 26, 2013 8:00 am
Forum: Ren'Py Questions and Announcements
Topic: Character name appears under dialogue box
Replies: 2
Views: 607

Re: Character name appears under dialogue box

Hi EzzyAlpha. Maybe you will find a solution here: http://lemmasoft.renai.us/forums/viewto ... =8&t=14046
Good luck!
by Donmai
Fri Jul 26, 2013 7:37 am
Forum: General Discussion
Topic: Post your photo
Replies: 1176
Views: 159013

Re: Post your photo

What do I see? A red hood? (Howl!)
by Donmai
Thu Jul 25, 2013 5:38 pm
Forum: Ren'Py Questions and Announcements
Topic: A basic question on showing 2 characters at once.
Replies: 3
Views: 2530

Re: A basic question on showing 2 characters at once.

If your sprites have the same name tag (i.e. if one is named "alice happy" and the other "alice sad") one will replace the other when showing. "Alice sad" and "Joe Sad" will appear together with no problems.
by Donmai
Mon Jul 22, 2013 2:58 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I hide my files? Can I reduce file size?
Replies: 1
Views: 437

Re: How do I hide my files? Can I reduce file size?

Hi EarlyMind. Just look here to know how to hide and pack your files: http://lemmasoft.renai.us/forums/viewto ... 73#p282773
by Donmai
Mon Jul 22, 2013 8:35 am
Forum: Ren'Py Questions and Announcements
Topic: Is there something wrong with my copy of Ren'Py? {Solved}
Replies: 7
Views: 1562

Re: Is there something wrong with my copy of Ren'Py?

Ren'Py don't come with that Eileen picture as default. That's only a demonstration of the new Launcher skinning feature. The documentation is here: http://www.renpy.org/doc/html/skins.html Pwisaguacate started an interesting thread in the Cookbook about creating Ren'Py skins: http://lemmasoft.renai....
by Donmai
Sun Jul 21, 2013 3:39 pm
Forum: Ren'Py Questions and Announcements
Topic: A basic question on showing 2 characters at once.
Replies: 3
Views: 2530

Re: A basic question on showing 2 characters at once.

init: image yourFirstSprite = "anyImageYouHave.png" image yourSecondSprite = "anyOtherImageYouHave.png" image yourBackground = "anyImageBackgroundYouHave.jpg" label start: scene yourBackground show yourFirstSprite at left show yourSecondSprite at right with fade You ca...
by Donmai
Sat Jul 20, 2013 4:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated objects in the main menu (solved)
Replies: 2
Views: 588

Re: Animated objects in the main menu

Hi Mehmed. crimsonnight started an epic thread on this subject some time ago. You will find it here: http://lemmasoft.renai.us/forums/viewto ... =8&t=17033
Maybe you will find some useful code examples there.
by Donmai
Fri Jul 19, 2013 5:32 pm
Forum: Ren'Py Questions and Announcements
Topic: bug report:say screen background disappear(Closed)
Replies: 9
Views: 1306

Re: bug report:say screen background disappear

Also check that no other graphic asset has the same name or the same name tag of your dialogue window background (just wondering).