Compare commits

..

No commits in common. "b7a0d19559a74c54b1c1f7657993ce989dd7c0c5" and "b53bfdfa56889414d4ed04bd15309ebc8e115b36" have entirely different histories.

View File

@ -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), pulse_text)
d = At(Text(text, style="what", color=argument, xsize=32), 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), shudder_text)
d = At(Text(text, style="what", color=argument, xsize=32), shudder_text)
return [(renpy.TEXT_DISPLAYABLE, d)]
def random_timer(t, pause, rotation):