04-27-2019, 08:37 PM
(This post was last modified: 04-28-2019, 02:27 PM by twoski. Edited 6 times in total.)
alright so i ended up doing 16x16 icons. this is perfect, takes up very small amount of room and i have an icon for each department (aside from like, bar and kitchen)
![[Image: sMxrajK.png]](https://i.imgur.com/sMxrajK.png)
and even colorblind people can figure out what they mean.
DMI: https://cdn.discordapp.com/attachments/4...guides.dmi
Code (goes in decals.dm):
![[Image: sMxrajK.png]](https://i.imgur.com/sMxrajK.png)
and even colorblind people can figure out what they mean.
DMI: https://cdn.discordapp.com/attachments/4...guides.dmi
Code (goes in decals.dm):
Code:
/obj/decal/tile_edge/floorguide
name = "navigation guide"
desc = "A navigation guide to help people find the department they're looking for."
icon = 'icons/obj/floorguides.dmi'
icon_state = "endpiece_s"
/obj/decal/tile_edge/floorguide/security
name = "Security Navigation Guide"
desc = "The security department is in this direction."
icon_state = "guide_sec"
/obj/decal/tile_edge/floorguide/science
name = "R&D Navigation Guide"
desc = "The science department is in this direction."
icon_state = "guide_sci"
/obj/decal/tile_edge/floorguide/mining
name = "Mining Navigation Guide"
desc = "The mining department is in this direction."
icon_state = "guide_mining"
/obj/decal/tile_edge/floorguide/medbay
name = "Medbay Navigation Guide"
desc = "The medical department is in this direction."
icon_state = "guide_medbay"
/obj/decal/tile_edge/floorguide/evac
name = "Evac Shuttle Navigation Guide"
desc = "The evac shuttle bay is in this direction."
icon_state = "guide_evac"
/obj/decal/tile_edge/floorguide/engineering
name = "Engineering Navigation Guide"
desc = "The engineering department is in this direction."
icon_state = "guide_engi"
/obj/decal/tile_edge/floorguide/command
name = "Bridge Navigation Guide"
desc = "The station bridge is in this direction."
icon_state = "guide_command"
/obj/decal/tile_edge/floorguide/botany
name = "Botany Navigation Guide"
desc = "The botany department is in this direction."
icon_state = "guide_botany"
/obj/decal/tile_edge/floorguide/qm
name = "QM Navigation Guide"
desc = "The quartermaster is in this direction."
icon_state = "guide_qm"
/obj/decal/tile_edge/floorguide/arrow_e
name = "Directional Navigation Guide"
icon_state = "endpiece_e"
/obj/decal/tile_edge/floorguide/arrow_w
name = "Directional Navigation Guide"
icon_state = "endpiece_w"
/obj/decal/tile_edge/floorguide/arrow_n
name = "Directional Navigation Guide"
icon_state = "endpiece_n"
/obj/decal/tile_edge/floorguide/arrow_s
name = "Directional Navigation Guide"
icon_state = "endpiece_s"