Search found 6 matches
- Fri Sep 23, 2016 7:23 am
- Forum: Ren'Py Questions and Announcements
- Topic: Saving of Intro+Loop music
- Replies: 2
- Views: 279
Re: Saving of Intro+Loop music
The intro and the loop part are unfortunately two different pieces right now. I could try editing them together, but that might cause problems with the composer in the long run. I'll keep it in mind as a solution if nothing else works though, thanks ^^
- Thu Sep 22, 2016 8:27 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Saving of Intro+Loop music
- Replies: 2
- Views: 279
Saving of Intro+Loop music
Hello, my project uses this approach to have an intro and loop version of a song: https://lemmasoft.renai.us/forums/viewtopic.php?f=48&t=34441 Code is therefor really similar: play music classroom_intro fadein 2.0 queue music classroom_loop loop However, when I make a save in a scene with such an ap...
- Sat Jul 02, 2016 3:30 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Changing color per dialogue ? [SOLVED]
- Replies: 2
- Views: 366
Re: Changing color per dialogue ?
I think you're looking for the tag "what_color"
Code: Select all
define e = Character('Eko', color="#33aaee", who_color="#33aaee", what_font="font/sansani.otf", what_color="#33aaee")- Fri Jul 01, 2016 3:21 am
- Forum: Ren'Py Questions and Announcements
- Topic: Blurring regular text
- Replies: 4
- Views: 876
Re: Blurring regular text
Yes, I know he was only talking about blurred fonts, but that wouldn't get the desired effect (because of no overlapping). Kerning solves that partially, but it is either too easily readable, or not at all. I'll check back with my lead but I don't think blurred fonts are my solution. Thanks for that...
- Thu Jun 30, 2016 5:32 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Blurring regular text
- Replies: 4
- Views: 876
Re: Blurring regular text
If I wanted my text just to look blurry that'd certainly work, but since font letters don't overlap each other, I think the effect would be too minimal to actually make text hard/impossible to read. Furthermore, it'd look more like outlines than blur. Since my project lead wants it to be "barely rea...
- Thu Jun 30, 2016 4:58 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Blurring regular text
- Replies: 4
- Views: 876
Blurring regular text
Hello, I'd like to blur certain displayed text. For example, this utilizes a gaussian blur with a radius of 10 to achieve the effect I'd like to have in my textboxes (this image was made with gimp): http://i.imgur.com/gXRD69u.png Since I plan to use this blur effect rather often and in different pos...