From 3f53502a5907ed1982d28a392c54331f0c1c2c42 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 25 Sep 2025 12:09:50 -0400 Subject: Move the client into the apworld Only works on source right now, not as an apworld. --- apworld/client/rainbowText.gd | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 apworld/client/rainbowText.gd (limited to 'apworld/client/rainbowText.gd') diff --git a/apworld/client/rainbowText.gd b/apworld/client/rainbowText.gd new file mode 100644 index 0000000..9a4c1d0 --- /dev/null +++ b/apworld/client/rainbowText.gd @@ -0,0 +1,10 @@ +extends RichTextEffect + +var bbcode = "rainbow" + + +func _process_custom_fx(char_fx: CharFXTransform): + char_fx.color = Color.from_hsv( + char_fx.elapsed_time - floor(char_fx.elapsed_time), 1.0, 1.0, 1.0 + ) + return true -- cgit 1.4.1