mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
/**
|
|
* Internal atom that copies an appearance on to the blocker plane
|
|
*
|
|
* Copies an appearance vis render_target and render_source on to the emissive blocking plane.
|
|
* This means that the atom in question will block any emissive sprites.
|
|
* This should only be used internally. If you are directly creating more of these, you're
|
|
* almost guaranteed to be doing something wrong.
|
|
*/
|
|
/atom/movable/emissive_blocker
|
|
name = "emissive blocker"
|
|
plane = PLANE_EMISSIVE
|
|
layer = FLOAT_LAYER
|
|
mouse_opacity = MOUSE_OPACITY_TRANSPARENT
|
|
//Why?
|
|
//render_targets copy the transform of the target as well, but vis_contents also applies the transform
|
|
//to what's in it. Applying RESET_TRANSFORM here makes vis_contents not apply the transform.
|
|
//Since only render_target handles transform we don't get any applied transform "stacking"
|
|
appearance_flags = RESET_TRANSFORM
|
|
|
|
/atom/movable/emissive_blocker/Initialize(mapload, source)
|
|
. = ..()
|
|
verbs.Cut() //Cargo culting from lighting object, this maybe affects memory usage?
|
|
|
|
render_source = source
|
|
color = GLOB.em_block_color
|
|
|
|
|
|
/atom/movable/emissive_blocker/ex_act(severity)
|
|
return FALSE
|
|
|
|
/atom/movable/emissive_blocker/singularity_act()
|
|
return
|
|
|
|
/atom/movable/emissive_blocker/singularity_pull()
|
|
return
|
|
|
|
/atom/movable/emissive_blocker/blob_act()
|
|
return
|
|
|
|
/atom/movable/emissive_blocker/onTransitZ()
|
|
return
|
|
|
|
//Prevents people from moving these after creation, because they shouldn't be.
|
|
/atom/movable/emissive_blocker/forceMove(atom/destination, no_tp=FALSE, harderforce = FALSE)
|
|
if(harderforce)
|
|
return ..()
|