mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 18:02:57 +00:00
* :) * that * move those there * refactor that too * wew * stuff * almost. * sigh * just need speed * stuf * pain * hm * tweaks * that * eh * wack * a * done * that's important * wacky * all that * fixes * typo * that * a * funny * that * that * woo * help im losing my fucking mind * okay * fix
22 lines
429 B
Plaintext
22 lines
429 B
Plaintext
/**
|
|
* initializes screen rendering. call on mob new
|
|
*/
|
|
/mob/proc/init_rendering()
|
|
|
|
/**
|
|
* loads screen rendering. call on mob login
|
|
*/
|
|
/mob/proc/reload_rendering()
|
|
if(!client.parallax_holder)
|
|
client.CreateParallax()
|
|
else
|
|
client.parallax_holder.Reset(force = TRUE)
|
|
client.update_clickcatcher()
|
|
reload_fullscreen()
|
|
|
|
/**
|
|
* destroys screen rendering. call on mob del
|
|
*/
|
|
/mob/proc/dispose_rendering()
|
|
wipe_fullscreens()
|