8 Textbox Sets [public domain]

This section is for people to post assets that people can use in their games. Everything here should have a creative commons or other open license, or be in the public domain.
Message
Author
User avatar
trooper6
Lemma-Class Veteran
Posts: 3712
Joined: Sat Jul 09, 2011 10:33 pm
Projects: A Close Shave
Location: Medford, MA
Contact:

Re: 5 Textbox Sets [public domain]

#61 Post by trooper6 »

Hi! This stuff is great!

I was wondering if I could ask you two questions:
1) In your notes for suggested text, you often have something like this: "Use dark red text with white outline." I note that all of your suggested texts include outlines. I'm working on my first "learn ren'py" VN...and I never thought about outlines. Why do you recommend text outlines? What do they bring to the VN? Also, how do you decide what colors are optimal? For example, I'm using for my text frame black intertitle card. For the text, I'm using a slightly off white (direction yellow) for speakers and a slightly off white (direction blue) for the narration. Should I be having an outline? And if so, what colors should I be thinking about?

2) I notice your text boxes have a slot for the quick menu. I've read aleema's great tutorial on customizing text boxes, but she doesn't mention the quick menu. How do you place the quick menu in your special quick menu slot?

Thanks! By the way, I'm planning on downloading your VNs now becuase you graphic design is so great!
A Close Shave:
*Last Thing Done (Aug 17): Finished coding emotions and camera for 4/10 main labels.
*Currently Doing: Coding of emotions and camera for the labels--On 5/10
*First Next thing to do: Code in all CG and special animation stuff
*Next Next thing to do: Set up film animation
*Other Thing to Do: Do SFX and Score (maybe think about eye blinks?)
Check out My Clock Cookbook Recipe: http://lemmasoft.renai.us/forums/viewto ... 51&t=21978

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 5 Textbox Sets [public domain]

#62 Post by OokamiKasumi »

trooper6 wrote:Hi! This stuff is great!
Thank you! I'm glad you like them.
trooper6 wrote:1) I note that all of your suggested texts include outlines. I'm working on my first "learn ren'py" VN...and I never thought about outlines... Why do you recommend text outlines?
I recommend them with my textboxes because the boxes aren't a single color tone. In some, both light colored text and dark colored text would blend in to the point of illegibility. A dark outline around light text, or a light outline around dark text, will prevent the text from blending into the textbox.
trooper6 wrote:Also, how do you decide what colors are optimal? For example, I'm using for my text frame black intertitle card. For the text, I'm using a slightly off white (direction yellow) for speakers and a slightly off white (direction blue) for the narration. Should I be having an outline? And if so, what colors should I be thinking about?
As long as you can see your text clearly, no, you don't need an outline. As for choosing colors, I usually pick from among the game's theme colors, if black or white won't work.
trooper6 wrote:2) I notice your text boxes have a slot for the quick menu. I've read aleema's great tutorial on customizing text boxes, but she doesn't mention the quick menu. How do you place the quick menu in your special quick menu slot?
The code for the Quick Links is at the end of screens.rpy.

Code: Select all

##############################################################################
# Quick Menu
#
# A screen that's included by the default say screen, and adds quick access to
# several useful functions.
screen quick_menu:

    # Add an in-game quick menu.
    hbox:
        style_group "quick"
    
        xalign 0.90
        yalign 1.0

        textbutton _("Main Menu") action MainMenu() 
        textbutton _("Save") action ShowMenu('save') 
        textbutton _("Load") action ShowMenu('load') 
        textbutton _("Skip") action Skip() 
        textbutton _("Auto") action Preference("auto-forward", "toggle") 
        textbutton _("Settings") action ShowMenu('preferences') 
        textbutton _("Stats") action ShowMenu('stats_giselle') 
        textbutton _("Journal") action ShowMenu('journal_1') 

################################
init -2 python:
    style.quick_button.set_parent('default')
    style.quick_button.background = None

    # To move whole set, use xalign, above.
    style.quick_button.right_padding = 15
    style.quick_button.bottom_padding = 20

    ## --------------------------------------
    style.quick_button_text.set_parent('default')

    style.quick_button_text.font = "ALMAGRO_.TTF"
    style.quick_button_text.size = 16

    style.quick_button_text.idle_color = "#8888"
    style.quick_button_text.hover_color = "#ccc"
    style.quick_button_text.selected_idle_color = "#cc08"
    style.quick_button_text.selected_hover_color = "#cc0"
    style.quick_button_text.insensitive_color = "#4448"

    style.quick_button_text.drop_shadow = [(2, 2)] 
    style.quick_button_text.drop_shadow_color = "#000"
The text always appears on the bottom right. It can be moved left or right by adjusting this:

Code: Select all

        xalign 0.90
You adjust the spacing between the links with this:

Code: Select all

    style.quick_button.right_padding = 15
    style.quick_button.bottom_padding = 20
trooper6 wrote:Thanks! By the way, I'm planning on downloading your VNs now because your graphic design is so great!
My pleasure.
-- I'm glad you like my designs. :)
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

User avatar
Kaht
Newbie
Posts: 19
Joined: Wed Aug 15, 2012 6:24 am
Projects: Perchance to Dream
Contact:

Re: 5 Textbox Sets [public domain]

#63 Post by Kaht »

Would it be alright if I edited the blue one slightly? I was thinking I would just make it a bit darker and more vibrant to fit in better with my game, and make the middle a little longer in comparison to the sides so I can get a touch more text in there??

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 5 Textbox Sets [public domain]

#64 Post by OokamiKasumi »

Kaht wrote:Would it be alright if I edited the blue one slightly? I was thinking I would just make it a bit darker and more vibrant to fit in better with my game, and make the middle a little longer in comparison to the sides so I can get a touch more text in there??
Darlin', you may edit these however you like to suit your needs, up to, and including gutting them completely.
Last edited by OokamiKasumi on Sat Jul 06, 2013 12:22 pm, edited 2 times in total.
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

User avatar
Kaht
Newbie
Posts: 19
Joined: Wed Aug 15, 2012 6:24 am
Projects: Perchance to Dream
Contact:

Re: 5 Textbox Sets [public domain]

#65 Post by Kaht »

Awesome! Thank you!!!

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 5 Textbox Sets [public domain]

#66 Post by OokamiKasumi »

Kaht wrote:Awesome! Thank you!!!
You can even ask me to adjust them for you. :)
-- However, I have no clue what you mean by "the middle a little longer in comparison to the sides".
Last edited by OokamiKasumi on Tue Jul 16, 2013 5:45 pm, edited 1 time in total.
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

User avatar
Kokoro Hane
Eileen-Class Veteran
Posts: 1237
Joined: Thu Oct 27, 2011 6:51 pm
Completed: 30 Kilowatt Hours Left, The Only One Girl { First Quarter }, An Encounter ~In The Rain~, A Piece of Sweetness, Since When Did I Have a Combat Butler?!, Piece by Piece, +many more
Projects: Fateful Encounter, Operation: Magic Hero
Organization: Tofu Sheets Visual
Deviantart: kokoro-hane
itch: tofu-sheets-visual
Contact:

Re: 5 Textbox Sets [public domain]

#67 Post by Kokoro Hane »

Are we allowed to resize the textboxes?
PROJECTS:
Operation: Magic Hero [WiP]
Piece By Piece [COMPLETE][Spooktober VN '20]
RE/COUNT RE:VERSE [COMPLETE][RPG]
Since When Did I Have a Combat Butler?! [COMPLETE][NaNoRenO2020+]
Crystal Captor: Memory Chronicle Finale [COMPLETE][RPG][#1 in So Bad It's Good jam '17]

But dear God, You're the only North Star I would follow this far
Owl City "Galaxies"

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 5 Textbox Sets [public domain]

#68 Post by OokamiKasumi »

Kokoro Hane wrote:Are we allowed to resize the textboxes?
In addition resizing, you can re-color, fold, spindle, and mutilate as needed.
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

User avatar
Kokoro Hane
Eileen-Class Veteran
Posts: 1237
Joined: Thu Oct 27, 2011 6:51 pm
Completed: 30 Kilowatt Hours Left, The Only One Girl { First Quarter }, An Encounter ~In The Rain~, A Piece of Sweetness, Since When Did I Have a Combat Butler?!, Piece by Piece, +many more
Projects: Fateful Encounter, Operation: Magic Hero
Organization: Tofu Sheets Visual
Deviantart: kokoro-hane
itch: tofu-sheets-visual
Contact:

Re: 5 Textbox Sets [public domain]

#69 Post by Kokoro Hane »

OokamiKasumi wrote:
Kokoro Hane wrote:Are we allowed to resize the textboxes?
In addition resizing, you can re-color, fold, spindle, and mutilate as needed.
Oh, cool! Thank you ^.^
PROJECTS:
Operation: Magic Hero [WiP]
Piece By Piece [COMPLETE][Spooktober VN '20]
RE/COUNT RE:VERSE [COMPLETE][RPG]
Since When Did I Have a Combat Butler?! [COMPLETE][NaNoRenO2020+]
Crystal Captor: Memory Chronicle Finale [COMPLETE][RPG][#1 in So Bad It's Good jam '17]

But dear God, You're the only North Star I would follow this far
Owl City "Galaxies"

Giovedi
Regular
Posts: 147
Joined: Sun Sep 09, 2012 6:20 am
Contact:

Re: 6 Textbox Sets [public domain]

#70 Post by Giovedi »

NEW TEXTBOX.

(SHRIEKS WITH GLEE)

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 6 Textbox Sets [public domain]

#71 Post by OokamiKasumi »

Giovedi wrote:NEW TEXTBOX. (SHRIEKS WITH GLEE)
Yep, I do that every now and again. :)
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

User avatar
RavenBelmont
Regular
Posts: 36
Joined: Tue Jul 16, 2013 10:47 am
Contact:

Re: 6 Textbox Sets [public domain]

#72 Post by RavenBelmont »

Thank you very much for this, it really helps me a lot.

Have a great day.

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 6 Textbox Sets [public domain]

#73 Post by OokamiKasumi »

RavenBelmont wrote:Thank you very much for this, it really helps me a lot.
Have a great day.
My pleasure.
-- I like helping where I can.
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

User avatar
8oni
Regular
Posts: 39
Joined: Sun May 19, 2013 3:30 am
Completed: Midnight Encounter, White World
Tumblr: 8oni
Deviantart: 8oni
Contact:

Re: 6 Textbox Sets [public domain]

#74 Post by 8oni »

Thank you very much for this awesome text box! I made them into Novelty template, I hope you don't mind. :D

User avatar
OokamiKasumi
Eileen-Class Veteran
Posts: 1779
Joined: Thu Oct 14, 2010 3:53 am
Completed: 14 games released -- and Counting.
Organization: DarkErotica Games
Deviantart: OokamiKasumi
Location: NC, USA
Contact:

Re: 6 Textbox Sets [public domain]

#75 Post by OokamiKasumi »

8oni wrote:Thank you very much for this awesome text box! I made them into Novelty template, I hope you don't mind. :D
You're very welcome, and I don't mind my work being used for Novelty. I hope they work well for you!
Ookami Kasumi ~ Purveyor of fine Smut.
Most recent Games Completed: For ALL my completed games visit: DarkErotica Games

"No amount of great animation will save a bad story." -- John Lasseter of Pixar

Post Reply

Who is online

Users browsing this forum: No registered users