diff --git a/Content.Server/_Sunrise/FootPrints/Components/FootPrintsComponent.cs b/Content.Server/_Sunrise/FootPrints/Components/FootPrintsComponent.cs deleted file mode 100644 index 82c0e71fa0d..00000000000 --- a/Content.Server/_Sunrise/FootPrints/Components/FootPrintsComponent.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System.Numerics; - -namespace Content.Server.FootPrints.Components; - -[RegisterComponent] -public sealed partial class FootPrintsComponent : Component -{ - [DataField] - public string LeftBarePrint = "footprint-left-bare-human"; - - [DataField] - public string RightBarePrint = "footprint-right-bare-human"; - - [DataField] - public string ShoesPrint = "footprint-shoes"; - - [DataField] - public string SuitPrint = "footprint-suit"; - - [DataField] - public string[] DraggingPrint = - { - "dragging-1", - "dragging-2", - "dragging-3", - "dragging-4", - "dragging-5" - }; - - [DataField] - public Vector2 OffsetCenter = new(-0.5f, -1f); - - [DataField] - public Vector2 OffsetPrint = new(0.1f, 0f); - - [DataField] - public Color PrintsColor = Color.FromHex("#00000000"); - - [DataField] - public float StepSize = 0.7f; - - [DataField] - public float DragSize = 0.5f; - - [DataField] - public float ColorQuantity; - - public Vector2 StepPos = Vector2.Zero; - - public bool RightStep = true; -} diff --git a/Content.Server/_Sunrise/FootPrints/Components/PuddleFootPrintsComponent.cs b/Content.Server/_Sunrise/FootPrints/Components/PuddleFootPrintsComponent.cs deleted file mode 100644 index 257e9a7432c..00000000000 --- a/Content.Server/_Sunrise/FootPrints/Components/PuddleFootPrintsComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Content.Server.FootPrints.Components; - -[RegisterComponent] -public sealed partial class PuddleFootPrintsComponent : Component -{ - public float SizeRatio = 0.3f; - public float OffPercent = 80f; -} diff --git a/Content.Server/_Sunrise/FootPrints/FootPrintsSystem.cs b/Content.Server/_Sunrise/FootPrints/FootPrintsSystem.cs deleted file mode 100644 index e4016af1843..00000000000 --- a/Content.Server/_Sunrise/FootPrints/FootPrintsSystem.cs +++ /dev/null @@ -1,124 +0,0 @@ -using System.Linq; -using Content.Server.Atmos.Components; -using Content.Server.Decals; -using Content.Server.FootPrints.Components; -using Content.Shared.Inventory; -using Content.Shared.Standing; -using Robust.Shared.Map; -using Robust.Shared.Random; - -namespace Content.Server.FootPrints; - -public sealed class FootPrintsSystem : EntitySystem -{ - [Dependency] private readonly DecalSystem _decals = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly InventorySystem _inventorySystem = default!; - [Dependency] private readonly StandingStateSystem _standing = default!; - - private const float AlphaReduce = 0.15f; - - private List> _storedDecals = new(); - private const int MaxStoredDecals = 750; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnMove); - } - - private void OnMove(EntityUid uid, FootPrintsComponent component, ref MoveEvent args) - { - if (component.PrintsColor.A <= 0f) - return; - - if (!TryComp(uid, out var transform)) - return; - - var dragging = _standing.IsDown(uid); - var distance = (transform.LocalPosition - component.StepPos).Length(); - var stepSize = dragging ? component.DragSize : component.StepSize; - - if (!(distance > stepSize)) - return; - - - if (!PrintDecal((uid, component, transform), dragging)) - return; - - var newAlpha = Math.Max(component.PrintsColor.A - AlphaReduce, 0f); - - component.PrintsColor = component.PrintsColor.WithAlpha(newAlpha); - component.StepPos = transform.LocalPosition; - component.RightStep = !component.RightStep; - } - - private bool PrintDecal(Entity prints, bool dragging) - { - if (prints.Comp2.GridUid is not { } gridUid) - return false; - - if (_storedDecals.Count > MaxStoredDecals) - { - var excessDecals = _storedDecals.Count - MaxStoredDecals; - RemoveExcessDecals(excessDecals); - } - - var print = PickPrint(prints, dragging); - var coords = CalculateEntityCoordinates(prints, dragging); - var colors = prints.Comp1.PrintsColor; - var rotation = dragging - ? (prints.Comp2.LocalPosition - prints.Comp1.StepPos).ToAngle() + Angle.FromDegrees(-90f) - : prints.Comp2.LocalRotation + Angle.FromDegrees(180f); - - - if (!_decals.TryAddDecal(print, coords, out var decalId, colors, rotation, 0, true)) - return false; - - _storedDecals.Add(new KeyValuePair(gridUid, decalId)); - return true; - } - - private EntityCoordinates CalculateEntityCoordinates(Entity entity, - bool isDragging) - { - var printComp = entity.Comp1; - var transform = entity.Comp2; - - if (isDragging) - return new EntityCoordinates(entity, transform.LocalPosition + printComp.OffsetCenter); - - var offset = printComp.OffsetCenter + (printComp.RightStep - ? new Angle(Angle.FromDegrees(180f) + transform.LocalRotation).RotateVec(printComp.OffsetPrint) - : new Angle(transform.LocalRotation).RotateVec(printComp.OffsetPrint)); - - return new EntityCoordinates(entity, transform.LocalPosition + offset); - } - - - private string PickPrint(Entity prints, bool dragging) - { - if (dragging) - return _random.Pick(prints.Comp.DraggingPrint); - - if (_inventorySystem.TryGetSlotEntity(prints, "shoes", out _)) - return prints.Comp.ShoesPrint; - - if (_inventorySystem.TryGetSlotEntity(prints, "outerClothing", out var suit) && - TryComp(suit, out _)) - return prints.Comp.SuitPrint; - - return prints.Comp.RightStep ? prints.Comp.RightBarePrint : prints.Comp.LeftBarePrint; - } - - private void RemoveExcessDecals(int excessDecals) - { - for (var i = 0; i < excessDecals; i++) - { - var decalToRemove = _storedDecals[i]; - _decals.RemoveDecal(decalToRemove.Key, decalToRemove.Value); - } - - _storedDecals = _storedDecals.Skip(excessDecals).ToList(); - } -} diff --git a/Content.Server/_Sunrise/FootPrints/PuddleFootPrintsSystem.cs b/Content.Server/_Sunrise/FootPrints/PuddleFootPrintsSystem.cs deleted file mode 100644 index 52cd0012bdd..00000000000 --- a/Content.Server/_Sunrise/FootPrints/PuddleFootPrintsSystem.cs +++ /dev/null @@ -1,37 +0,0 @@ -using Content.Server.FootPrints.Components; -using Content.Shared.Fluids.Components; -using Robust.Shared.Physics.Events; -using Robust.Shared.Prototypes; - -namespace Content.Server.FootPrints; - -public sealed class PuddleFootPrintsSystem : EntitySystem -{ - [Dependency] private readonly IPrototypeManager _prototype = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnStepTrigger); - } - - private void OnStepTrigger(EntityUid uid, PuddleFootPrintsComponent comp, ref EndCollideEvent args) - { - if (!TryComp(args.OtherEntity, out var footPrints)) - return; - - if (!TryComp(uid, out var puddle) || puddle.Solution is not { } entSolution) - return; - - - var solution = entSolution.Comp.Solution; - var quantity = solution.Volume; - var color = solution.GetColor(_prototype); - - footPrints.PrintsColor = footPrints.ColorQuantity == 0f - ? color - : Color.InterpolateBetween(footPrints.PrintsColor, color, 0.3f); - footPrints.ColorQuantity += quantity.Float() * 1.2f; - } - -} diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 9175fc049cf..fecf9f19a47 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -163,4 +163,3 @@ solution: puddle - type: BadDrink - type: IgnoresFingerprints - - type: PuddleFootPrints # Sunrise-edit diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 182e071fa09..feca2afaad3 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -128,9 +128,6 @@ state: "creampie_arachnid" visible: false # Sunrise-start - - type: FootPrints - leftBarePrint: "footprint-left-bare-spider" - rightBarePrint: "footprint-right-bare-spider" - type: FootstepModifier footstepSoundCollection: collection: FootstepSpiderLegs diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index e41e612ccb7..610376b36c5 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -245,7 +245,6 @@ components: - type: Carriable # Sunrise-edit - type: CanEscapeInventory # Sunrise-edit - - type: FootPrints # Sunrise-edit - type: Barotrauma damage: types: diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index cde7d17235b..7edb3a19dba 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -101,11 +101,6 @@ actionPrototype: DionaGibAction allowedStates: - Dead - # Sunrise-start - - type: FootPrints - leftBarePrint: "footprint-left-bare-diona" - rightBarePrint: "footprint-right-bare-diona" - # Sunrise-end - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index a99c39d36c5..5a54b56c48e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -56,11 +56,6 @@ hideLayersOnEquip: - Hair - Snout - # Sunrise-start - - type: FootPrints - leftBarePrint: "footprint-left-bare-dwarf" - rightBarePrint: "footprint-right-bare-dwarf" - # Sunrise-end - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index b2ca1efd218..ad543620cf8 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -62,11 +62,6 @@ types: Heat : 1.5 #per second, scales with temperature & other constants - type: Wagging - # Sunrise-start - - type: FootPrints - leftBarePrint: "footprint-left-bare-lizard" - rightBarePrint: "footprint-right-bare-lizard" - # Sunrise-end - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 761701fef2c..caa3690e5d2 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -110,11 +110,6 @@ types: Asphyxiation: -1.0 maxSaturation: 15 - # Sunrise-start - - type: FootPrints - leftBarePrint: "footprint-left-bare-slime" - rightBarePrint: "footprint-right-bare-slime" - # Sunrise-end - type: entity parent: MobHumanDummy diff --git a/Resources/Prototypes/_Sunrise/Decals/footprints.yml b/Resources/Prototypes/_Sunrise/Decals/footprints.yml deleted file mode 100644 index 83fcbec2831..00000000000 --- a/Resources/Prototypes/_Sunrise/Decals/footprints.yml +++ /dev/null @@ -1,178 +0,0 @@ -#swine -- type: decal - id: footprint-left-bare-swine - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-swine - -- type: decal - id: footprint-right-bare-swine - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-swine - -#vulp -- type: decal - id: footprint-left-bare-vulp - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-vulp - -- type: decal - id: footprint-right-bare-vulp - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-vulp - -#diona -- type: decal - id: footprint-left-bare-diona - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-diona - -- type: decal - id: footprint-right-bare-diona - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-diona - -#dwarf -- type: decal - id: footprint-left-bare-dwarf - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-dwarf - -- type: decal - id: footprint-right-bare-dwarf - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-dwarf - -#human -- type: decal - id: footprint-left-bare-human - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-human - -- type: decal - id: footprint-right-bare-human - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-human - -#lizard -- type: decal - id: footprint-left-bare-lizard - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-lizard - -- type: decal - id: footprint-right-bare-lizard - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-lizard - -#slime -- type: decal - id: footprint-left-bare-slime - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-slime - -- type: decal - id: footprint-right-bare-slime - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-slime - -#spider -- type: decal - id: footprint-left-bare-spider - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-left-bare-spider - -- type: decal - id: footprint-right-bare-spider - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-right-bare-spider - -#shoes -- type: decal - id: footprint-shoes - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-shoes - -#space suit -- type: decal - id: footprint-suit - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: footprint-suit - -#dragging -- type: decal - id: dragging-1 - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: dragging-1 - -- type: decal - id: dragging-2 - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: dragging-2 - -- type: decal - id: dragging-3 - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: dragging-3 - -- type: decal - id: dragging-4 - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: dragging-4 - -- type: decal - id: dragging-5 - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: dragging-5 - -- type: decal - id: dragging-test - tags: ["footprint"] - sprite: - sprite: Effects/footprints.rsi - state: dragging-test diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml index 6aeaefe906d..b475ea99c2c 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml @@ -83,9 +83,6 @@ - !type:Emote emote: Hisses showInChat: true - - type: FootPrints - leftBarePrint: "footprint-left-bare-dwarf" - rightBarePrint: "footprint-right-bare-dwarf" - type: entity save: false diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/swine.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/swine.yml index 5750cfddc3c..43e9fa5e00b 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/swine.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/swine.yml @@ -45,9 +45,6 @@ amount: 10 - type: Stamina critThreshold: 200 - - type: FootPrints - leftBarePrint: "footprint-left-bare-swine" - rightBarePrint: "footprint-right-bare-swine" - type: entity save: false diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/synth.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/synth.yml index f0d04c6a997..28f4c5e4376 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/synth.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/synth.yml @@ -312,7 +312,6 @@ Slash: -5 Piercing: -5 - type: EyeProtection - - type: entity name: Urist McSynth diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/vulpkanin.yml index bf4b5e53ce0..c3dbc6b743d 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/vulpkanin.yml @@ -16,10 +16,7 @@ - type: Inventory speciesId: reptilian - type: VulpaAccent - - type: FootPrints - leftBarePrint: "footprint-left-bare-vulp" - rightBarePrint: "footprint-right-bare-vulp" - # Sunrise-end + - type: entity save: false diff --git a/Resources/Textures/Effects/footprints.rsi/dragging-1.png b/Resources/Textures/Effects/footprints.rsi/dragging-1.png deleted file mode 100644 index 5d631e8cbfc..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/dragging-1.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/dragging-2.png b/Resources/Textures/Effects/footprints.rsi/dragging-2.png deleted file mode 100644 index ade8ff2e5e4..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/dragging-2.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/dragging-3.png b/Resources/Textures/Effects/footprints.rsi/dragging-3.png deleted file mode 100644 index 393aa3ddc16..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/dragging-3.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/dragging-4.png b/Resources/Textures/Effects/footprints.rsi/dragging-4.png deleted file mode 100644 index 94d6d7f8bce..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/dragging-4.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/dragging-5.png b/Resources/Textures/Effects/footprints.rsi/dragging-5.png deleted file mode 100644 index 18aed3607ed..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/dragging-5.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/dragging-test.png b/Resources/Textures/Effects/footprints.rsi/dragging-test.png deleted file mode 100644 index b8c9ba50a7d..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/dragging-test.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-diona.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-diona.png deleted file mode 100644 index fa40e0f2977..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-diona.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-dwarf.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-dwarf.png deleted file mode 100644 index 43b88aa1646..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-dwarf.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-human.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-human.png deleted file mode 100644 index f7ab3257c58..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-human.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-lizard.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-lizard.png deleted file mode 100644 index e53ba99227e..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-lizard.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-slime.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-slime.png deleted file mode 100644 index 87561cb1619..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-slime.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-spider.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-spider.png deleted file mode 100644 index 4939e72c4b5..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-spider.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-swine.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-swine.png deleted file mode 100644 index 2584e258192..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-swine.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-vulp.png b/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-vulp.png deleted file mode 100644 index 32d624812e8..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-left-bare-vulp.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-diona.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-diona.png deleted file mode 100644 index 21f3a117741..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-diona.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-dwarf.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-dwarf.png deleted file mode 100644 index e493ddbdf6a..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-dwarf.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-human.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-human.png deleted file mode 100644 index 4de70b5c1ea..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-human.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-lizard.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-lizard.png deleted file mode 100644 index e53ba99227e..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-lizard.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-slime.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-slime.png deleted file mode 100644 index c10fe24f0b0..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-slime.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-spider.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-spider.png deleted file mode 100644 index e9f3a88776c..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-spider.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-swine.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-swine.png deleted file mode 100644 index 74e678e7bb1..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-swine.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-vulp.png b/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-vulp.png deleted file mode 100644 index c63793299cb..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-right-bare-vulp.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-shoes.png b/Resources/Textures/Effects/footprints.rsi/footprint-shoes.png deleted file mode 100644 index 6cf329a9b6f..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-shoes.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/footprint-suit.png b/Resources/Textures/Effects/footprints.rsi/footprint-suit.png deleted file mode 100644 index 6bc32d343c7..00000000000 Binary files a/Resources/Textures/Effects/footprints.rsi/footprint-suit.png and /dev/null differ diff --git a/Resources/Textures/Effects/footprints.rsi/meta.json b/Resources/Textures/Effects/footprints.rsi/meta.json deleted file mode 100644 index 7e9a1652dea..00000000000 --- a/Resources/Textures/Effects/footprints.rsi/meta.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CLA", - "copyright": "SUNRISE", - "states": [ - { - "name": "footprint-left-bare-diona" - }, - { - "name": "footprint-left-bare-dwarf" - }, - { - "name": "footprint-left-bare-swine" - }, - { - "name": "footprint-left-bare-vulp" - }, - { - "name": "footprint-left-bare-human" - }, - { - "name": "footprint-left-bare-lizard" - }, - { - "name": "footprint-left-bare-slime" - }, - { - "name": "footprint-left-bare-spider" - }, - { - "name": "footprint-right-bare-diona" - }, - { - "name": "footprint-right-bare-dwarf" - }, - { - "name": "footprint-right-bare-swine" - }, - { - "name": "footprint-right-bare-vulp" - }, - { - "name": "footprint-right-bare-human" - }, - { - "name": "footprint-right-bare-lizard" - }, - { - "name": "footprint-right-bare-slime" - }, - { - "name": "footprint-right-bare-spider" - }, - { - "name": "footprint-shoes" - }, - { - "name": "footprint-suit" - }, - { - "name": "dragging-1" - }, - { - "name": "dragging-2" - }, - { - "name": "dragging-3" - }, - { - "name": "dragging-4" - }, - { - "name": "dragging-5" - }, - { - "name": "dragging-test" - } - ] -}