diff --git a/game/scripts/utility/common_functions.rpy b/game/scripts/utility/common_functions.rpy index b6f8d03a..9c4b4d15 100644 --- a/game/scripts/utility/common_functions.rpy +++ b/game/scripts/utility/common_functions.rpy @@ -67,22 +67,19 @@ init python early: def clamp(n, smallest, largest): return max(smallest, min(n, largest)) - def white_tint(image): - return Transform( image, matrixcolor=TintMatrix((1.1, 1.1, 1.1)) ) + white_tint = Transform(image, matrixcolor=TintMatrix((1.1, 1.1, 1.1))) - def gray_tint(image): - return Transform( image, matrixcolor=SaturationMatrix(0.0) ) + gray_tint = Transform(image, matrixcolor=SaturationMatrix(0.0)) - def yellow_tint(image): - return Transform( image, matrixcolor=TintMatrix((1.2, 1.1, 0.7)) ) + yellow_tint = Transform(image, matrixcolor=TintMatrix((1.2, 1.1, 0.7))) def image_hover(image, brightness=0.12): """Returns slightly brighter image used during hover events""" - return Transform( image, matrixcolor=BrightnessMatrix(brightness) ) + return Transform(image, matrixcolor=BrightnessMatrix(brightness)) def image_alpha(image, alpha=0.5): """Returns an image with changed alpha 0 - fully transparent 1 - fully visible""" - return Transform( image, matrixcolor=OpacityMatrix(alpha) ) + return Transform(image, matrixcolor=OpacityMatrix(alpha)) def set_clipboard(txt): txt = str(txt)