Typing indicators

This commit is contained in:
kevinz000
2020-02-27 23:58:49 -07:00
parent 879032c52f
commit 54a6c5a6fe
10 changed files with 118 additions and 3 deletions
+10
View File
@@ -128,3 +128,13 @@
var/flavor_text = ""
var/flavor_text_2 = "" //version of the above that only lasts for the current round.
///////TYPING INDICATORS///////
/// Set to true if we want to show typing indicators.
var/typing_indicator_enabled = FALSE
/// Default icon_state of our typing indicator. Currently only supports paths (because anything else is, as of time of typing this, unnecesary.
var/typing_indicator_state = /obj/effect/overlay/typing_indicator
/// The timer that will remove our indicator for early aborts (like when an user finishes their message)
var/typing_indicator_timerid
/// Default typing indicator timeout
var/typing_indicator_timeout = 30 SECONDS