From a672aa724dc822c0d416062a0fcb3e08d3620136 Mon Sep 17 00:00:00 2001 From: Charlie <69320440+hal9000PR@users.noreply.github.com> Date: Fri, 21 Oct 2022 20:42:33 +0100 Subject: [PATCH] rotatium now rotates space (#19380) --- code/_onclick/hud/plane_master.dm | 12 ++++++++++++ code/_onclick/hud/plane_master_controller.dm | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/code/_onclick/hud/plane_master.dm b/code/_onclick/hud/plane_master.dm index cd719507cd2..2d650fb2e72 100644 --- a/code/_onclick/hud/plane_master.dm +++ b/code/_onclick/hud/plane_master.dm @@ -74,3 +74,15 @@ /obj/screen/plane_master/emissive/Initialize() . = ..() add_filter("em_block_masking", 1, color_matrix_filter(GLOB.em_mask_matrix)) + +/obj/screen/plane_master/space + name = "space plane master" + plane = PLANE_SPACE + appearance_flags = PLANE_MASTER + blend_mode = BLEND_OVERLAY + +/obj/screen/plane_master/parallax + name = "parallax plane master" + plane = PLANE_SPACE_PARALLAX + appearance_flags = PLANE_MASTER + blend_mode = BLEND_OVERLAY diff --git a/code/_onclick/hud/plane_master_controller.dm b/code/_onclick/hud/plane_master_controller.dm index b525dfc0ef3..aa67ed35172 100644 --- a/code/_onclick/hud/plane_master_controller.dm +++ b/code/_onclick/hud/plane_master_controller.dm @@ -74,4 +74,4 @@ /atom/movable/plane_master_controller/game name = PLANE_MASTERS_GAME - controlled_planes = list(FLOOR_PLANE, GAME_PLANE, LIGHTING_PLANE) + controlled_planes = list(FLOOR_PLANE, GAME_PLANE, LIGHTING_PLANE, PLANE_SPACE_PARALLAX, PLANE_SPACE)