Search found 100 matches
- Tue Mar 13, 2018 6:49 pm
- Forum: Ren'Py Questions and Announcements
- Topic: A way to make custom cursor preference persistent data?
- Replies: 3
- Views: 614
Re: A way to make custom cursor preference persistent data?
I do not know if this served you but I would do the following: hotspot (265, 297, 37, 34) action [SetVariable("persistent.cursor1", "True"), SetField(config, "mouse", {"default": [("gui/cursor.png", 1, 1)]]}) ## This is the first game cursor option for the player hotspot (265, 297, 37, 34) action [S...
- Tue Mar 13, 2018 5:44 pm
- Forum: I am an Artist
- Topic: [Open] Sprite Designer
- Replies: 0
- Views: 585
[Open] Sprite Designer
Hi, I offer my services as a sprite designer. Each sprite, (clothes and facial expressions included) I charge them for $10. Here are some examples of sprites: https://imgur.com/ictatAK https://imgur.com/CuZMy0n https://imgur.com/QJtuEhN https://imgur.com/xtJohSq https://imgur.com/MSZjeBR If you are ...
- Tue Mar 13, 2018 6:33 am
- Forum: Ren'Py Questions and Announcements
- Topic: AlphaBlend issue
- Replies: 1
- Views: 256
AlphaBlend issue
Hi guys,I have been reading about the use of this function, and looking for the forums, I found this: transform alphatransform: alpha .0 linear 1.0 alpha 1.0 init python: def shade(d): return AlphaBlend(alphatransform(d), d, Solid("#000", xysize=(x, y)), True) label start: show soldier at shade In t...
- Tue Mar 13, 2018 4:02 am
- Forum: We are a Free Project looking for Partners
- Topic: I'm looking for a CG designer to my project "Shinka"
- Replies: 0
- Views: 439
I'm looking for a CG designer to my project "Shinka"
Greetings guys, I'm looking for a CG designer, everything else (sprites, scenes, music, etc), I have done it or I can do it with a minimum of quality. With regard to history, it is an ambitious theme, dealing with themes of fantasy, gore, horror, love of adventure. But basically, the initial argumen...
- Mon Mar 12, 2018 10:26 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Doubt about character customization
- Replies: 10
- Views: 839
Re: Doubt about character customization
I do not know what I'm doing wrong, but by using it the sprite is not shown transform alphatransform: alpha .0 linear 1.0 alpha 1.0 init python: def shade_transform(d): return AlphaBlend(alphatransform(d), d, Solid("#000", xysize=(x, y)), True) label start: show soldier at shade_transform
- Mon Mar 12, 2018 10:06 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Doubt about character customization
- Replies: 10
- Views: 839
Re: Doubt about character customization
Even if I did that, and the character remained with the transparent gray I want, I think it would probably be that the expression (made apart), would not have transparent gray, unless I also defined it for expressions, so I'm in a crossroads.
- Mon Mar 12, 2018 10:00 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Doubt about character customization
- Replies: 10
- Views: 839
Re: Doubt about character customization
259,
Counting on the facial expressions of each one
Counting on the facial expressions of each one
- Mon Mar 12, 2018 4:30 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Doubt about character customization
- Replies: 10
- Views: 839
Re: Doubt about character customization
I have tried that function, but I have three inconveniences: The first one, would have to define it for all the characters, (and there are too much) The second, when returning to use the original image, (without the function) It moves in a different position than the image with the function The thir...
- Mon Mar 12, 2018 4:05 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Doubt about character customization
- Replies: 10
- Views: 839
Re: Doubt about character customization
I mean the sprite.
- Mon Mar 12, 2018 3:59 am
- Forum: Ren'Py Questions and Announcements
- Topic: Doubt about character customization
- Replies: 10
- Views: 839
Doubt about character customization
Hi guys, I would like to know if it is possible to change the color of a character at any given time (for example, in a transparent gray), thanks in advance.
- Sun Mar 11, 2018 7:37 am
- Forum: Ren'Py Questions and Announcements
- Topic: (Solved)Problem defining characters
- Replies: 2
- Views: 494
Re: Problem defining characters
Thank you very much for the help, it worked.
- Fri Mar 09, 2018 11:29 pm
- Forum: Ren'Py Questions and Announcements
- Topic: (Solved)Problem defining characters
- Replies: 2
- Views: 494
(Solved)Problem defining characters
Hi guys, I have a problem when defining two characters, I tell you the situation, at the beginning of the game I give the player the possibility to choose between being a man or a woman, depending on the choice a variable will activate and make a jump towards the part of the code in which the gender...
- Sat Mar 03, 2018 2:20 pm
- Forum: Ren'Py Questions and Announcements
- Topic: (Solved)Visual error with the screen
- Replies: 5
- Views: 582
Re: Visual error with the screen
It worked, thank you very much.try change in all SetVariable() actions:
CODE: SELECT ALL
SetVariable("disolveractive", "True")
to
CODE: SELECT ALL
SetVariable("disolveractive", True)
Value True/False must be without quotes.
- Sat Mar 03, 2018 2:33 am
- Forum: Ren'Py Questions and Announcements
- Topic: uncaught exception occurred. How to fix it?
- Replies: 1
- Views: 763
Re: uncaught exception occurred. How to fix it?
I do not know if this is the error you say; Couldn't find file 'images/sys/logo.png'
but without a doubt this is a failure,basically you can not find the image in the directory that you said.
but without a doubt this is a failure,basically you can not find the image in the directory that you said.
- Sat Mar 03, 2018 12:36 am
- Forum: Ren'Py Questions and Announcements
- Topic: (Solved)Visual error with the screen
- Replies: 5
- Views: 582
Re: Visual error with the screen
It has not worked, although I'm not sure that the expression has been used well: if disolveractive: imagebutton auto "gui/ghost/disolver_%s.png" xpos 200 ypos 300 focus_mask True imagebutton auto "gui/ghost/dissolveracti_%s.png" xpos 220 ypos 400 focus_mask True elif dissolver: imagebutton auto "gui...