about summary refs log tree commit diff stats
path: root/client/Archipelago/rainbowText.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/Archipelago/rainbowText.gd')
-rw-r--r--client/Archipelago/rainbowText.gd10
1 files changed, 0 insertions, 10 deletions
diff --git a/client/Archipelago/rainbowText.gd b/client/Archipelago/rainbowText.gd deleted file mode 100644 index 9a4c1d0..0000000 --- a/client/Archipelago/rainbowText.gd +++ /dev/null
@@ -1,10 +0,0 @@
1extends RichTextEffect
2
3var bbcode = "rainbow"
4
5
6func _process_custom_fx(char_fx: CharFXTransform):
7 char_fx.color = Color.from_hsv(
8 char_fx.elapsed_time - floor(char_fx.elapsed_time), 1.0, 1.0, 1.0
9 )
10 return true