Bug fix
* Fixed wrongly assigned xsize for the text displayable in kinetic text
This commit is contained in:
parent
2bdd5138ce
commit
d0f3a550b7
@ -61,7 +61,7 @@ init python:
|
||||
@renpy.pure
|
||||
def text_tag_pulse(tag, argument, contents):
|
||||
text = contents[0][1]
|
||||
d = At(Text(text, style="what", color=argument, xsize=32), pulse_text)
|
||||
d = At(Text(text, style="what", color=argument), pulse_text)
|
||||
return [(renpy.TEXT_DISPLAYABLE, d)]
|
||||
|
||||
@renpy.pure
|
||||
@ -74,7 +74,7 @@ init python:
|
||||
@renpy.pure
|
||||
def text_tag_shudder(tag, argument, contents):
|
||||
text = contents[0][1]
|
||||
d = At(Text(text, style="what", color=argument, xsize=32), shudder_text)
|
||||
d = At(Text(text, style="what", color=argument), shudder_text)
|
||||
return [(renpy.TEXT_DISPLAYABLE, d)]
|
||||
|
||||
def random_timer(t, pause, rotation):
|
||||
|
Loading…
Reference in New Issue
Block a user