Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Is it possible you post a screenshot of what you mean, or the code snippet? Sorry for the late reply^^

(+1)

Hi sorr for the delay. The spots i circled in yellow are visually what I mean, in my project without your code snippet the name box is more in the middle? Vs being very left centered. With your code addition the nameplate doesnt fit properly anymore. But i maybe just did something wrong. Again sorry if it's a dumb question. 

But here is the code 

```python

screen say(who, what):

    style_prefix "say"


    window:

        id "window"


        background (None if phone_mode else Image("gui/textbox.png", xalign=0.5, yalign=1.0))

        xalign 0.5

        xfill True

        yalign gui.textbox_yalign

        ysize gui.textbox_height


        if who is not None:

            text who id "who"


        text what id "what"


    if not renpy.variant("small"):

        add SideImage() xalign 0.0 yalign