Skip to content

Commit

Permalink
map fixes, billboard sprites tweaks, & platform tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zenith00000 committed Jun 28, 2024
1 parent 333cf3c commit 219d5f3
Show file tree
Hide file tree
Showing 3 changed files with 355 additions and 203 deletions.
18 changes: 11 additions & 7 deletions code/game/objects/structures/platforms.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
var/image/I = image(icon, src, "platform_overlay", LADDER_LAYER, dir)//ladder layer puts us just above weeds.
switch(dir)
if(SOUTH)
layer = ABOVE_MOB_LAYER+0.1
layer = ABOVE_MOB_LAYER
I.pixel_y = -16
if(NORTH)
I.pixel_y = 16
if(EAST)
I.pixel_x = 16
layer = ABOVE_MOB_LAYER+0.1
layer = MOB_LAYER
if(WEST)
I.pixel_x = -16
layer = ABOVE_MOB_LAYER+0.1
layer = MOB_LAYER
overlays += I

/obj/structure/platform/initialize_pass_flags(datum/pass_flags_container/PF)
Expand Down Expand Up @@ -96,13 +96,17 @@
. = ..()
switch(dir)
if (NORTH)
layer = ABOVE_MOB_LAYER+0.2
layer = OBJ_LAYER+0.1
if (SOUTH)
layer = ABOVE_MOB_LAYER+0.2
layer = ABOVE_MOB_LAYER+0.1
if (SOUTHEAST)
layer = ABOVE_MOB_LAYER+0.2
layer = ABOVE_MOB_LAYER+0.1
if (SOUTHWEST)
layer = ABOVE_MOB_LAYER+0.2
layer = ABOVE_MOB_LAYER+0.1
if (EAST)
layer = MOB_LAYER+0.1
if (WEST)
layer = MOB_LAYER+0.1

/obj/structure/platform_decoration/initialize_pass_flags(datum/pass_flags_container/PF)
..()
Expand Down
Binary file modified icons/obj/structures/props/32x64_hybrisabillboards.dmi
Binary file not shown.
Loading

0 comments on commit 219d5f3

Please sign in to comment.