Merge branch 'refs/heads/interface2' into kinetic_text

This commit is contained in:
LoafyLemon 2024-05-28 15:42:10 +01:00
commit b7a0d19559

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, 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):