I've some issues when i try to customize my textbox.
(Sorry, english is not my native...)
I need to use 3 differents textboxes :
1) Without any name
2) With name
3) With name + image side
EDIT : It works now... Don't know why i just reboot the game so many times...
Code: Select all
# Déclarez les personnages utilisés dans le jeu.
define shiki1 = Character('Shiki', window_yminimum = 236)
define shiki2 = Character('Shiki', window_yminimum = 236, window_left_padding=160, window_background="data/box3.png", image="shiki2")
image side shiki2 sad = "cg/n_shiki1.jpg"
image side shiki2 happy = "cg/n_shiki2.jpg"
## narrateur
define n = Character(None, window_background="data/box1.png")
# Le jeu commence ici
label start:
n "Vous venez de créer un nouveau jeu Ren'Py."
shiki2 sad "Test de l'image Shiki Un"
shiki1 "Test Shiki"
shiki2 happy "Test de l'image Shiki Deux"
shiki1 "Test Shiki"
n "Vous venez de créer un nouveau jeu Ren'Py."
return
When i had a padding left on my textbox the name of the character has padding too...
I read : http://lemmasoft.renai.us/forums/viewto ... =51&t=9233
But it's not a different textbox it's the same... I just need to move it and center it :/
Any idea ?
Thank you in advance