Search found 93 matches

by 017Bluefield
Thu Mar 12, 2020 2:23 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble with Bold Font Replacement Mapping? Japanese fonts
Replies: 2
Views: 448

Re: Trouble with Bold Font Replacement Mapping? Japanese fonts

screenshot0006.jpg
Here's a visual example. The topmost character is rendered from the {b}{/b} tags. The following and characters use the {font=___}{/font} tags.
by 017Bluefield
Wed Mar 11, 2020 1:44 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble with Bold Font Replacement Mapping? Japanese fonts
Replies: 2
Views: 448

Trouble with Bold Font Replacement Mapping? Japanese fonts

I'm using config.font_replacement_map to replace pseudo-Bolded fonts (regular fonts made bold by Ren'Py) with separate Bold font variants. The code below is set up to do so. In a recurring screen I have set up, however, it still seems to use the pseudo-Bolded fonts when I use b tags. To get the righ...
by 017Bluefield
Sun Jun 30, 2019 1:40 am
Forum: Ren'Py Questions and Announcements
Topic: How tf do I uninstall renpy?
Replies: 4
Views: 5090

Re: How tf do I uninstall renpy?

Periwinkle wrote: Sun Aug 21, 2016 7:37 pm
Periwinkle wrote:
philat wrote:You don't. Just delete the folder where you unzipped it.
omg thank you so much bae <3
jesus christ i made this post a year ago and already the regret is so strong what the hell was wrong with me
Don't feel bad, I needed this thread too.
by 017Bluefield
Sat May 11, 2019 11:34 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Tooltips on the quick menu (transform/ATL)
Replies: 2
Views: 578

Re: Tooltips on the quick menu (transform/ATL)

Final version of the code. Kudos again goes to AdamJ1664 for his invaluable help. Using hovered Show() and unhovered Hide() instead of simply tooltip . Using a separate tooltip_text(t) screen, and setting its zorder to be above 100 in order for it to display over the reused notify.png on the quick m...
by 017Bluefield
Wed May 08, 2019 11:31 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Tooltips on the quick menu (transform/ATL)
Replies: 2
Views: 578

Re: Tooltips on the quick menu (transform/ATL)

This is an updated version of the quick_tooltip_text transform, which uses the hover and idle states. It doesn't produce quite the effect I'm looking for, but it's definitely closer. Thanks to AdamJ1664 on the Ren'Py Discord server for pointing me in the right direction. transform quick_tooltip_text...
by 017Bluefield
Sun Apr 21, 2019 1:15 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Tooltips on the quick menu (transform/ATL)
Replies: 2
Views: 578

[Solved] Tooltips on the quick menu (transform/ATL)

So I'm working on putting a tooltip element on one side of the quick_menu , with ATL that makes the text appear/disappear with alpha and xoffset . However, only the on show: part of the transform is visibly working, which means that the tooltip slides/fades into view, but doesn't do the reverse on h...
by 017Bluefield
Thu Nov 08, 2018 12:48 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Can't call a label/screen? (TypeError: 'float' object...)
Replies: 1
Views: 405

Re: Can't call a label/screen? (TypeError: 'float' object...)

Nevermind, I think I've solved it. It might've been the manually-added text_align property in the label element. Here's the new version without that part: screen warnings_screen(): zorder 10 vbox: align (0.5,0.5) xsize 900 label _("{b}WARNING{/b}:") style "warnings_screen_label":...
by 017Bluefield
Wed Nov 07, 2018 3:24 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Can't call a label/screen? (TypeError: 'float' object...)
Replies: 1
Views: 405

[Solved] Can't call a label/screen? (TypeError: 'float' object...)

So I have a warnings_screen() and an engine_logo() screen, both of which appear when call ed. Thing is, the engine_logo() is working just fine, while warnings_screen() gives me this: I'm sorry, but an uncaught exception occurred. While processing the align property of anonymous style: File "re...
by 017Bluefield
Mon Oct 29, 2018 12:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Wrapped textbutton cut off at the top?
Replies: 2
Views: 494

[Solved] Wrapped textbutton cut off at the top?

textbutton _("Unseen Text") ... textbutton _("After Choices") ... In customizing my Preferences screens, I changed the containers for the options from vbox es to hbox es. In doing so, I've found that these two textbutton s wrap the text down to a given size (which I've tried to ...
by 017Bluefield
Sun Oct 28, 2018 2:05 am
Forum: Ren'Py Questions and Announcements
Topic: How to add an option to preferences?
Replies: 15
Views: 5067

Re: How to add an option to preferences?

So, is there a way to make custom Preference()s with Ren'Py now that it's in version 7? Or has this gone by the wayside for now?
by 017Bluefield
Sat Oct 13, 2018 12:42 am
Forum: Ren'Py Questions and Announcements
Topic: Showing Cropped characters with Transforms; hit-and-miss results?
Replies: 2
Views: 576

Re: Showing Cropped characters with Transforms; hit-and-miss results?

Remix wrote: Sat Sep 29, 2018 8:24 am Is it a size/anchor issue? I mean, does it seem the anchor might be interpreting the uncropped size rather than cropped?

Suggest:

Code: Select all

image wakana = Composite( (257,640), (0,0), Crop((190,251,257,640), "Wakana.png") )
I'll see if that's the problem...
by 017Bluefield
Mon Oct 08, 2018 1:18 am
Forum: Ren'Py Questions and Announcements
Topic: Custom Preference in Screen Language [Solved]
Replies: 8
Views: 5489

Re: Custom Preference in Screen Language [Solved]

octacon100 wrote: Wed Feb 04, 2015 9:27 pm I know I'm necro'ing the heck out of this topic, but it's extremely useful for anyone wanting to add their own preferences. I'd volunteer to write a page about this in the Ren'py online documentation from this post if people wanted it.
I'd really appreciate it...
by 017Bluefield
Sat Sep 29, 2018 1:21 am
Forum: Ren'Py Questions and Announcements
Topic: Showing Cropped characters with Transforms; hit-and-miss results?
Replies: 2
Views: 576

Showing Cropped characters with Transforms; hit-and-miss results?

I'm trying to use Crop() -ed images when displaying characters (the character-maker software I'm using currently doesn't allow cropped exports). Now I've tried making Crop() -ed character images appear at different transform s, and I noticed that they don't appear at the transform s I made myself. #...
by 017Bluefield
Sun Sep 23, 2018 4:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Putting existing transitions into an ATL block?
Replies: 6
Views: 925

Re: Putting existing transitions into an ATL block?

So to be clear: ImageDissolve() works with scenes and character sprites, but not within screens/elements in a screen?