Search found 39 matches

by felipe
Tue Oct 20, 2015 6:08 am
Forum: Completed Games
Topic: Mother of Waters [Short][Fantasy][Dark]
Replies: 3
Views: 2403

Re: Mother of Waters [Short][Fantasy][Dark]

idkwhatusername wrote:Loved the game! Could I ask the title of the song on the "cover" art page?
Thanks! That's "É que nessa encarnação eu nasci manga", you can find it here:
https://soundcloud.com/indigno-kid/e-qu ... asci-manga
by felipe
Mon Oct 19, 2015 9:18 pm
Forum: Completed Games
Topic: Mother of Waters [Short][Fantasy][Dark]
Replies: 3
Views: 2403

Mother of Waters [Short][Fantasy][Dark]

. http://static.wixstatic.com/media/12bca8_ad62cda6d803408aa07e4017eaa7c2de.png_srb_p_538_55_75_22_0.50_1.20_0.00_png_srb http://lemmasoft.renai.us/forums/download/file.php?mode=view&id=36335&sid=9485f017294c79f2e155df3980b7a71d MOTHER OF WATERS A very short visual novel about a woman facing...
by felipe
Sun May 11, 2014 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

Re: When a side image is shown, is there a variable == True?

Oh, you just helped me come up with an idea! I can place the ConditionSwitch() inside the side image declaration instead of in the background declaration. The only other thing I need it to have a variable throughout the script, changing to match the scenes. I'll try to implement that now to see if i...
by felipe
Sun May 11, 2014 6:09 pm
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

Re: When a side image is shown, is there a variable == True?

I'd say it's a bit simpler than that. What I want is a small background for the side image. I have: A scene on the beach with Joe and Jane. A background beach image. A full sprite image of Jane. A side sprite image (face only) of Joe. AND a window behind Joe's head showing another part of the beach ...
by felipe
Sun May 11, 2014 1:07 pm
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

Re: When a side image is shown, is there a variable == True?

Another solution I'm thinking about: (1) I create a flag: init: $ flagsideimage = False (2) Then I go to the screens file and try to change my flag in there: if side_image: add side_image $ flagsideimage = True else: add SideImage() xalign 0.0 yalign 0.0 #This is where I change the position of the s...
by felipe
Sun May 11, 2014 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

Re: When a side image is shown, is there a variable == True?

The ConditionSwitch() is part of an image statement: image bg beach: contains: "images/bg_beach.png" contains: ConditionSwitch("side_image", "sidebg beach", True, Null()) xpos 0.0 xanchor 0.0 ypos 0.0 yanchor 0.0 At first I tried with if/else, but it wasn't working and ...
by felipe
Sun May 11, 2014 11:22 am
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

Re: When a side image is shown, is there a variable == True?

Yeah, I was pointed in that direction, but it doesn't work. When I tried "side_image" or "side_image == True" or "side_image is not None" or even "side_image != None" as the condition, I get: NameError: name 'side_image' is not defined. Any other ideas? I thin...
by felipe
Sat May 10, 2014 10:54 pm
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

Re: When a side image is shown, is there a variable that = T

Obrigado pela resposta :) But alas, no, that wasn't my question. I guess I could have been more clear about it. What I want is to use the ConditionSwitch in the background image, so that the background changes depending if there is a side image being displayed or not. In order for that to happen I n...
by felipe
Sat May 10, 2014 3:52 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Side image with a background that matches the scene
Replies: 3
Views: 563

Re: Side image with a background that matches the scene

EDIT: Instead of using the ConditionSwitch() with "contains" to create the background image, I used it to create the side image. Thanks again for the suggestion. :) So my side image looks like this: image side man: contains: ConditionSwitch("flagscene == 'beach'", "sidebg be...
by felipe
Sat May 10, 2014 2:46 pm
Forum: Ren'Py Questions and Announcements
Topic: When a side image is shown, is there a variable == True?
Replies: 11
Views: 1100

When a side image is shown, is there a variable == True?

Hi, Quick question: when a side image is displayed, is there a variable somewhere that evaluates as "True"? Can I declare one? I'm trying to show another image whenever a character side image is displayed. The discussion on this is in this topic: http://lemmasoft.renai.us/forums/viewtopic....
by felipe
Fri May 09, 2014 4:01 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Side image with a background that matches the scene
Replies: 3
Views: 563

Re: Side image with a background that matches the scene

Cool, thanks! :) I think I still need to define (or point to) the side_image variable somewhere. I was hoping I could tap into the pre-existing side image feature (which I'm not sure if it's as boolean like I thought) to make it work. Do you (or anyone) happen to know how the side image works in ord...
by felipe
Fri May 09, 2014 1:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Confusion/ Need help with Side Images
Replies: 7
Views: 898

Re: Confusion/ Need help with Side Images

I don't know if this helps, but I was having trouble with side images not showing until I added the image parameter(?) to the character declaration. So the code would look like this in the script file: image side ruben = "ruben_neutral.png" define ruben = Character('Ruben', window_left_pad...
by felipe
Fri May 09, 2014 12:08 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Side image with a background that matches the scene
Replies: 3
Views: 563

[Solved] Side image with a background that matches the scene

So, I designed the side images to have a background that changes depending on the scene (to depict the scene the character is in as well as the character's face). I'm thinking this could be done somehow piling up the two images ("side_bg" and side_image) in the screens file. And also someh...
by felipe
Thu May 08, 2014 3:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do I customize buttons without images?
Replies: 3
Views: 536

Re: How do I customize buttons in the main menu without imag

akemicchi wrote:

Code: Select all

init -2:
should be

Code: Select all

init -2 python:
This did the trick. Thanks, guys!
by felipe
Thu May 08, 2014 1:13 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do I customize buttons without images?
Replies: 3
Views: 536

[Solved] How do I customize buttons without images?

I need help with this. The buttons I drew for my main menu are simple enough to be done by code only (I think), I just need to change the outline, the size and colors (and maybe transparency). But the tutorial I found about this (http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=24454&hi...