mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 06:06:33 +01:00
9 lines
451 B
Plaintext
9 lines
451 B
Plaintext
/client/verb/toggle_verticality_visibility()
|
|
set name = "Toggle Verticality Plane"
|
|
set desc = "Toggle if you see ceiling overlays and similar."
|
|
set category = VERB_CATEGORY_OOC
|
|
|
|
var/atom/movable/screen/plane_master/plane = global_planes.by_plane_type(/atom/movable/screen/plane_master/verticality)
|
|
plane.alpha = plane.alpha == 255? 0 : 255
|
|
to_chat(src, SPAN_NOTICE("You now [plane.alpha == 255? "see" : "no longer see"] verticality overlays."))
|