Skip to content

Commit

Permalink
testing new decals
Browse files Browse the repository at this point in the history
  • Loading branch information
SirNightKnight committed Dec 15, 2024
1 parent 0eba7d6 commit f1206bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions code/game/objects/items/airlock_painter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,16 @@
var/decal_list = list(
list("Warning Line", "warningline"),
list("Warning Line Corner", "warninglinecorner"),
list("Warning Line End", "warn_end"),
list("Warning Line Box", "warn_box"),
list("Caution Label", "caution"),
list("Directional Arrows", "arrows"),
list("Stand Clear Label", "stand_clear"),
list("Loading Area", "loadingarea"),
list("Bot", "bot"),
list("Box", "box"),
list("Bot Left", "bot_left"),
list("Bot Left", "bot_right"),
list("Box Corner", "box_corners"),
list("Delivery Marker", "delivery"),
list("Warning Box", "warn_full"),
Expand All @@ -205,6 +210,9 @@
"box",
"delivery",
"warn_full",
"warn_box",
"bot_left",
"bot_right",
)

/obj/item/airlock_painter/decal/Initialize(mapload)
Expand Down
2 changes: 1 addition & 1 deletion tgui/packages/tgui/interfaces/DecalPainter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const DecalPainter = (props) => {
const preview_color = custom_color_selected ? 'custom' : data.current_color;

return (
<Window width={550} height={400}>
<Window width={750} height={400}>
<Window.Content>
<Section title="Decal Color">
{data.color_list.map((color) => {
Expand Down

0 comments on commit f1206bf

Please sign in to comment.