Search found 786 matches

by kivik
Tue Jun 26, 2018 6:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 7 Layered Image Attributes Problem (solved)
Replies: 25
Views: 7774

Re: Ren'Py 7 Layered Image Attributes Problem

Ah! In that case it definitely needs to be documented properly - I did a search for "lower" on the layeredimage page and got zero hits. I was thinking about writing up an issue on github, but if there may be intension behind making it lowercased then perhaps I'd leave it! I've learnt a lot...
by kivik
Tue Jun 26, 2018 6:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Spacing/Positioning Problem (Solved)
Replies: 4
Views: 1233

Re: Spacing/Positioning Problem

I think you've misunderstood what to put in side - you should use "c r" for all of them in your code (I think): basically the two letters determines where the elements are aligned underneath - so viewport would be assigned to center, vbar to the right. Also I think you need to position you...
by kivik
Tue Jun 26, 2018 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 7 Layered Image Attributes Problem (solved)
Replies: 25
Views: 7774

Re: Ren'Py 7 Layered Image Attributes Problem

Well this was fun... I stripped everything down to just your body and botarms up to try and get it working with no luck, so I said "Sod it, I'm using renpy.list_images() to see what Ren'py's actually pulled from the images" and this is what happens: Renpy automatically drops the case for a...
by kivik
Tue Jun 26, 2018 5:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Developer Console
Replies: 11
Views: 1447

Re: Developer Console

Re: Capslock, Renpy seems ignores capslock for dev console as I'm able to get it to work with or without capslock on, which is pretty interesting! Oh, that's true! (I've cheked :wink: ) Yeah I think that behaviour must have changed at some point, I remember having some weirdness with it which was w...
by kivik
Tue Jun 26, 2018 5:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 7 Layered Image Attributes Problem (solved)
Replies: 25
Views: 7774

Re: Ren'Py 7 Layered Image Attributes Problem

Hmm, I did try to just change the file name to "aethL_botarms_botarms_nude_botarms_up" just to see if it works, but it doesn't seem to. From my understanding, the prefix just means I need to call that item using the existing botarms instead of just the attribute name. So instead of "...
by kivik
Tue Jun 26, 2018 5:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Developer Console
Replies: 11
Views: 1447

Re: Developer Console

Can you start a new project and see if you have the same problem? Basically to reiterate - Developer's Console should just work by default, unless you've done something that stops it from working, and I was trying to find out whether you've got either of the scenarios I know of that could stop the S...
by kivik
Tue Jun 26, 2018 12:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Developer Console
Replies: 11
Views: 1447

Re: Developer Console

No you shouldn't have to - but if you've overwritten that variable, then you need to fix it. The other possibility is that you have a screen that grabs the 'd' key and so you can't trigger the console with Shift-D. If that's the case you need to change it to another key. That's why I avoid keysym li...
by kivik
Tue Jun 26, 2018 7:38 am
Forum: Ren'Py Questions and Announcements
Topic: Developer Console
Replies: 11
Views: 1447

Re: Developer Console

It should still work - do you have a screen that takes the letter D key as keysym? That would interfere with the console. Also check whether you've overwritten the config.developer variable:

https://www.renpy.org/doc/html/config.h ... .developer
by kivik
Tue Jun 26, 2018 4:35 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 7 Layered Image Attributes Problem (solved)
Replies: 25
Views: 7774

Re: Ren'Py 7 Layered Image Attributes Problem

I'm working on converting a pretty complicated LiveComposite into a Layered Image at the moment and I've been learning a lot about the process. At the moment I'm a bit hung up on...what is best described as sub variants...or nested groups. And Layered Image doesn't have nested groups. So I'm trying...
by kivik
Tue Jun 26, 2018 4:10 am
Forum: Ren'Py Questions and Announcements
Topic: Is there any way I can expand or rid of the image limit?
Replies: 3
Views: 796

Re: Is there any way I can expand or rid of the image limit?

Are you talking about just normal Ren'py images or are you using python functions to display images? If you're just doing normal Ren'py images, then it sounds like you're not defining your images correctly: you should be using image tags, e.g.: image eileen = "eileen.png" image eileen happ...
by kivik
Tue Jun 26, 2018 4:01 am
Forum: Ren'Py Questions and Announcements
Topic: Spacing/Positioning Problem (Solved)
Replies: 4
Views: 1233

Re: Spacing/Positioning Problem

In the example code in the docs, PyTom uses side to set the area size before putting the viewport inside - so I've always stuck to using that and it seems to work for me: https://www.renpy.org/doc/html/screens.html#viewport screen viewport_example(): side "c b r": area (100, 100, 600, 400)...
by kivik
Mon Jun 25, 2018 6:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Choosing images according to current resolution
Replies: 5
Views: 1846

Re: Choosing images according to current resolution

Yes, downscaling should in theory look better as you have more information: hence zoom 0.67 which is 1080p down to 720p. However there are instances when it just looks a bit off, especially when you downscale images with high contrasting edges - e.g. graphics. I'm get the impression OpenGL doesn't r...
by kivik
Mon Jun 25, 2018 4:44 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 7 Layered Image Attributes Problem (solved)
Replies: 25
Views: 7774

Re: Ren'Py 7 Layered Image Attributes Problem

Wow, you've actually helped me understand the groups and attributes when trying to figure out what's going on! Alas I don't know if I have a solution to your problem. Do you have a list of your image filenames and paths? Upon rereading the documentations I can only assume that the problem lies in th...
by kivik
Mon Jun 25, 2018 1:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Drag Mobile Phone to take Photo
Replies: 10
Views: 1025

Re: Drag Mobile Phone to take Photo

Can you clarify what you mean? What you described is very vague - when you say drag your phone screen, are you saying a phone screen inside your game? When you say take a photo do you mean it switches to camera mode or it takes a photo immediately? When you say zoom, do you mean zooming in camera mo...
by kivik
Mon Jun 25, 2018 1:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Choosing images according to current resolution
Replies: 5
Views: 1846

Re: Choosing images according to current resolution

If I understand correctly, the scaling is done by OpenGL so Ren'py is agnostic to it, so you wouldn't need to rescale anything if player resizes the window. Just want to be clarify this - if you're concerned about player resizing the game window - don't > it's all handled for you and you absolutely ...