From 71ef1cd6fed0da16ef82fdbaf38cda65339fe3d1 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 15 Mar 2021 20:45:43 +1100 Subject: [PATCH] Disable collisions on a lot of stuff (#3641) * Disable collisions on floor entities * Disable sign collision * Disable walllight collisions Co-authored-by: Metal Gear Sloth --- .../Prototypes/Entities/Constructible/Furniture/carpets.yml | 1 + Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml | 3 ++- Resources/Prototypes/Entities/Constructible/Walls/lighting.yml | 3 ++- Resources/Prototypes/Entities/Constructible/Walls/signs.yml | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Constructible/Furniture/carpets.yml b/Resources/Prototypes/Entities/Constructible/Furniture/carpets.yml index 0a1921b789..aee0e16b69 100644 --- a/Resources/Prototypes/Entities/Constructible/Furniture/carpets.yml +++ b/Resources/Prototypes/Entities/Constructible/Furniture/carpets.yml @@ -16,6 +16,7 @@ key: full base: carpet_ - type: Physics + canCollide: false fixtures: - shape: !type:PhysShapeAabb diff --git a/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml b/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml index ee28c18787..91184af423 100644 --- a/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml +++ b/Resources/Prototypes/Entities/Constructible/Ground/catwalk.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: Catwalk name: catwalk description: A catwalk for easier EVA maneuvering and cable placement. @@ -8,6 +8,7 @@ - type: Clickable - type: InteractionOutline - type: Physics + canCollide: false fixtures: - shape: !type:PhysShapeAabb diff --git a/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml b/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml index 92ee1b8072..c424da0781 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: WallLight name: unpowered light description: "An unpowered light." @@ -9,6 +9,7 @@ graph: lightFixture node: tubeLight - type: Physics + canCollide: false fixtures: - shape: !type:PhysShapeAabb diff --git a/Resources/Prototypes/Entities/Constructible/Walls/signs.yml b/Resources/Prototypes/Entities/Constructible/Walls/signs.yml index 280ad330bb..35e6bdee0a 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/signs.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/signs.yml @@ -6,6 +6,7 @@ - type: Clickable - type: InteractionOutline - type: Physics + canCollide: false fixtures: - shape: !type:PhysShapeAabb {}