From f915157b9638bede47ee814c96e218c6b675225f Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 10 Jul 2025 16:25:36 +1200 Subject: [PATCH] Fix yaml linter and misc errors (#37444) * Fix yaml linter * Revert "fix cluwne pda pen slot (#35611)" This reverts commit 66e926843f7a8633f0a9389e2449a5b476157423. * More fixes * Try again with the engine requirement removed * Decrease number of brass sheets dropped by clockwork windoors --------- Co-authored-by: Tayrtahn --- .../Components/LightBehaviourComponent.cs | 3 +++ .../StationAi/SharedStationAiSystem.cs | 2 ++ Content.YAMLLinter/Program.cs | 22 +++++++++++-------- .../Catalog/Fills/Boxes/medical.yml | 1 + .../Entities/Clothing/Back/duffel.yml | 1 + .../Clothing/Head/base_clothinghead.yml | 8 +++---- .../Entities/Clothing/Head/hardhats.yml | 4 ++-- .../Entities/Clothing/OuterClothing/armor.yml | 4 ++-- .../Prototypes/Entities/Markers/pointing.yml | 2 +- .../Mobs/Cyborgs/base_borg_chassis.yml | 4 ++-- .../Entities/Mobs/NPCs/elemental.yml | 1 - .../Entities/Mobs/NPCs/regalrat.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/xeno.yml | 2 -- .../Prototypes/Entities/Objects/Fun/toys.yml | 8 +++---- .../Entities/Objects/Misc/fluff_lights.yml | 4 ++-- .../Objects/Specific/Kitchen/foodcarts.yml | 2 -- .../Entities/Objects/Tools/flashlights.yml | 4 ++-- .../Entities/Objects/Tools/glowstick.yml | 18 +++++++-------- .../Entities/Objects/Tools/lantern.yml | 4 ++-- .../Ammunition/Magazines/caseless_rifle.yml | 2 +- .../Structures/Doors/Windoors/clockwork.yml | 5 +++-- .../Generation/Singularity/singularity.yml | 2 +- .../Power/Generation/Tesla/energyball.yml | 4 ++-- .../Entities/Structures/Power/cables.yml | 1 - .../Storage/Closets/base_structureclosets.yml | 2 +- .../Entities/Structures/Wallmounts/timer.yml | 2 +- .../Entities/Structures/Walls/asteroid.yml | 2 +- Resources/Prototypes/Parallaxes/amber.yml | 2 +- Resources/Prototypes/Parallaxes/aspid.yml | 2 +- Resources/Prototypes/Parallaxes/bagel.yml | 2 +- Resources/Prototypes/Parallaxes/core.yml | 2 +- Resources/Prototypes/Parallaxes/default.yml | 4 ++-- Resources/Prototypes/Parallaxes/exo.yml | 2 +- Resources/Prototypes/Parallaxes/kettle.yml | 2 +- Resources/Prototypes/Parallaxes/origin.yml | 2 +- Resources/Prototypes/Parallaxes/plasma.yml | 2 +- Resources/Prototypes/Parallaxes/train.yml | 2 +- 37 files changed, 71 insertions(+), 66 deletions(-) diff --git a/Content.Client/Light/Components/LightBehaviourComponent.cs b/Content.Client/Light/Components/LightBehaviourComponent.cs index 246863ba60..03452c6112 100644 --- a/Content.Client/Light/Components/LightBehaviourComponent.cs +++ b/Content.Client/Light/Components/LightBehaviourComponent.cs @@ -238,6 +238,9 @@ namespace Content.Client.Light.Components public override void OnInitialize() { + // This is very janky. This could easily result in no visible animation at all if the random values happen + // to all be close to each other. + // TODO ANIMATIONS _randomValue1 = (float)InterpolateLinear(StartValue, EndValue, (float)_random.NextDouble()); _randomValue2 = (float)InterpolateLinear(StartValue, EndValue, (float)_random.NextDouble()); _randomValue3 = (float)InterpolateLinear(StartValue, EndValue, (float)_random.NextDouble()); diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index 72374a8a30..328dc58d85 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -121,6 +121,8 @@ public abstract partial class SharedStationAiSystem : EntitySystem Category = VerbCategory.Debug, Act = () => { + if (_net.IsClient) + return; var brain = SpawnInContainerOrDrop(DefaultAi, ent.Owner, StationAiCoreComponent.Container); _mind.ControlMob(user, brain); }, diff --git a/Content.YAMLLinter/Program.cs b/Content.YAMLLinter/Program.cs index 32078faeef..d37acff8e0 100644 --- a/Content.YAMLLinter/Program.cs +++ b/Content.YAMLLinter/Program.cs @@ -36,7 +36,9 @@ namespace Content.YAMLLinter { foreach (var errorNode in errorHashset) { - Console.WriteLine($"::error file={file},line={errorNode.Node.Start.Line},col={errorNode.Node.Start.Column}::{file}({errorNode.Node.Start.Line},{errorNode.Node.Start.Column}) {errorNode.ErrorReason}"); + // TODO YAML LINTER Fix inheritance + // If a parent/abstract prototype has na error, this will misreport the file name (but with the correct line/column). + Console.WriteLine($"::error in {file}({errorNode.Node.Start.Line},{errorNode.Node.Start.Column}) {errorNode.ErrorReason}"); } } @@ -143,22 +145,24 @@ namespace Content.YAMLLinter foreach (var (key, val) in clientErrors.YamlErrors) { var newErrors = val.Where(n => n.AlwaysRelevant).ToHashSet(); - if (newErrors.Count == 0) - continue; - - if (yamlErrors.TryGetValue(key, out var errors)) - errors.UnionWith(val.Where(n => n.AlwaysRelevant)); - else - yamlErrors[key] = newErrors; // Include any errors that relate to client-only types foreach (var errorNode in val) { - if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !serverTypes.Contains(fieldNotFoundNode.FieldType.Name)) + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode + && !serverTypes.Contains(fieldNotFoundNode.FieldType.Name)) { newErrors.Add(errorNode); } } + + if (newErrors.Count == 0) + continue; + + if (yamlErrors.TryGetValue(key, out var errors)) + errors.UnionWith(newErrors); + else + yamlErrors[key] = newErrors; } // Finally, combine the prototype ID field errors. diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml index d9beb72435..7f3a16c33a 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml @@ -102,6 +102,7 @@ layers: - state: box - state: bodybags + - type: Storage whitelist: tags: - BodyBag diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index d3e43653e0..52277a5d85 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -116,6 +116,7 @@ components: - type: Sprite sprite: Clothing/Back/Duffels/mime.rsi + - type: Storage storageOpenSound: collection: null storageInsertSound: diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index dac5a8946e..e4afec873c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -91,8 +91,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: PowerCellSlot cellSlotId: cell_slot @@ -238,8 +238,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: Battery maxCharge: 600 #lights drain 3/s but recharge of 2 makes this 1/s. Therefore 600 is 10 minutes of light. diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml index e0c6557c97..ca8f7d4d06 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml @@ -37,8 +37,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: ToggleableVisuals spriteLayer: light diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 218e5b283c..5efd60eae7 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -293,8 +293,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: Battery maxCharge: 600 diff --git a/Resources/Prototypes/Entities/Markers/pointing.yml b/Resources/Prototypes/Entities/Markers/pointing.yml index e347809a47..7c07405c7d 100644 --- a/Resources/Prototypes/Entities/Markers/pointing.yml +++ b/Resources/Prototypes/Entities/Markers/pointing.yml @@ -9,7 +9,7 @@ - type: Sprite sprite: Interface/Misc/pointing.rsi state: pointing - drawDepth: Overlays + drawdepth: Overlays noRot: true - type: PointingArrow duration: 4 diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 007117f993..ea24542e5a 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -217,8 +217,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: ToggleableVisuals spriteLayer: light diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index 7b435a2625..c3fc1ec959 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -399,7 +399,6 @@ solution: bloodstream transferAmount: 5 - type: DamageStateVisuals - rotate: true states: Alive: Base: alive diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index e27911880f..711a638ec8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -79,7 +79,6 @@ Dead: 0 baseDecayRate: 0.1 - type: DamageStateVisuals - rotate: true states: Alive: Base: regalrat diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 8c3b0521be..58c4e9c22b 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -79,7 +79,6 @@ groups: Brute: 6 - type: DamageStateVisuals - rotate: true states: Alive: Base: running @@ -504,7 +503,6 @@ groups: Brute: 5 - type: DamageStateVisuals - rotate: true states: Alive: Base: running diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 8bb9e987a0..6ed36af773 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -571,9 +571,9 @@ components: - type: Sprite sprite: Structures/Power/Generation/Tesla/energy_miniball.rsi - shader: unshaded layers: - state: tesla_projectile + shader: unshaded - type: Item inhandVisuals: left: @@ -605,8 +605,9 @@ components: - type: Sprite sprite: Objects/Fun/pondering_orb.rsi - state: icon - shader: unshaded + layers: + - state: icon + shader: unshaded - type: PointLight radius: 2 color: "#00CCFF" @@ -845,7 +846,6 @@ - type: Sprite sprite: Objects/Fun/whoopie.rsi state: icon - quickEquip: false - type: Tag tags: - Payload diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index eaae4d410a..db3fc4961e 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -21,8 +21,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: PowerCellSlot cellSlotId: cell_slot diff --git a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml index 1b9f32009a..5fc9883306 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml @@ -73,7 +73,6 @@ description: Get out there and slang some dogs. components: - type: Sprite - netSync: false noRot: true sprite: Objects/Specific/Kitchen/food_carts.rsi layers: @@ -154,7 +153,6 @@ description: It's the Ice Cream Man! It's the Ice Cream Man! components: - type: Sprite - netSync: false noRot: true sprite: Objects/Specific/Kitchen/food_carts.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml index c63265ef7d..6fd27c4302 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml @@ -24,8 +24,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: ToggleableVisuals spriteLayer: light diff --git a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml index c577cd8e58..e000b99638 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml @@ -134,8 +134,8 @@ - !type:PulseBehaviour interpolate: Cubic maxDuration: 10.0 - minValue: 1.0 - maxValue: 7.0 + startValue: 1.0 + endValue: 7.0 isLooped: true property: Energy enabled: true @@ -198,7 +198,7 @@ interpolate: Nearest minDuration: 0.2 maxDuration: 1.0 - maxValue: 0.2 + endValue: 0.2 property: AnimatedEnable isLooped: true enabled: true @@ -237,8 +237,8 @@ - !type:FadeBehaviour interpolate: Cubic maxDuration: 5.0 - minValue: 0.0 - maxValue: 10.0 + startValue: 0.0 + endValue: 10.0 isLooped: true property: Energy enabled: true @@ -269,8 +269,8 @@ interpolate: Cubic minDuration: 1.0 maxDuration: 5.0 - minValue: 2.0 - maxValue: 10.0 + startValue: 2.0 + endValue: 10.0 isLooped: true enabled: true @@ -300,7 +300,7 @@ - !type:RandomizeBehaviour interpolate: Nearest maxDuration: 0.5 - minValue: 10.0 - maxValue: 25.0 + startValue: 10.0 + endValue: 25.0 isLooped: true enabled: true diff --git a/Resources/Prototypes/Entities/Objects/Tools/lantern.yml b/Resources/Prototypes/Entities/Objects/Tools/lantern.yml index 24fdb88ed5..93a0f927e1 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lantern.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lantern.yml @@ -21,8 +21,8 @@ id: blinking interpolate: Nearest maxDuration: 1.0 - minValue: 0.1 - maxValue: 2.0 + startValue: 0.1 + endValue: 2.0 isLooped: true - type: Sprite sprite: Objects/Tools/lantern.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml index 148a64ec92..f51b21e1b4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml @@ -106,7 +106,7 @@ proto: CartridgeCaselessRifle capacity: 10 - type: Sprite - slayers: + layers: - state: base map: ["enum.GunVisualLayers.Base"] - state: mag-1 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/clockwork.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/clockwork.yml index 4aa959455a..cc8fd35f32 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/clockwork.yml @@ -6,6 +6,7 @@ components: - type: Sprite sprite: Structures/Doors/Windoors/clockwork_windoor.rsi + - type: Destructible thresholds: - trigger: !type:DamageTrigger @@ -23,8 +24,8 @@ min: 1 max: 2 SheetBrass1: - min: 2 - max: 4 + min: 0 + max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml index 1e439ddae4..d57af0a41c 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml @@ -77,10 +77,10 @@ - GhostOnlyWarp - type: Sprite sprite: Structures/Power/Generation/Singularity/singularity_1.rsi - shader: unshaded layers: - map: [ "VisualLevel" ] state: singularity_1 + shader: unshaded - type: GenericVisualizer visuals: enum.SingularityAppearanceKeys.Singularity: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml index d31f7526ab..52e82847cb 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml @@ -101,9 +101,9 @@ - type: Sprite drawdepth: Effects sprite: Structures/Power/Generation/Tesla/energy_ball.rsi - shader: unshaded layers: - state: energy_ball + shader: unshaded - type: EmitSoundOnSpawn sound: path: /Audio/Effects/tesla_collapse.ogg @@ -149,8 +149,8 @@ - type: Sprite drawdepth: Effects sprite: Structures/Power/Generation/Tesla/energy_miniball.rsi - shader: unshaded layers: - state: tesla_projectile + shader: unshaded - type: Electrified requirePower: false diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index 53e2c4a91f..2a4f1c7f1c 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -173,7 +173,6 @@ sprite: Structures/Power/Cables/lv_cable.rsi state: lvcable_0 - type: Icon - color: Green sprite: Structures/Power/Cables/lv_cable.rsi state: lvcable_4 - type: NodeContainer diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 211eee609a..b47106acb8 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -316,7 +316,7 @@ max: 1 - type: Appearance - type: EntityStorageVisuals - stateBase: base + # stateBase: base // This field does not exist. this is probably a bug. TODO stateDoorOpen: base stateDoorClosed: door - type: LockVisuals diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index 1f2a5ebeb0..278d93df68 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -66,7 +66,7 @@ color: FloralWhite textOffset: 0,6 timerOffset: 0,6 - textLength: 5 + # textLength: 5 This field does not exist. Bug? rows: 1 - type: Sprite drawdepth: WallMountedItems diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 1b04ea885c..2070635676 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -2003,7 +2003,7 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_chromite_west - state: rock_coal - map: [ "enum.MiningScannerVisualLayers.Overlay" ] + map: [ "enum.MiningScannerVisualLayers.Overlay" ] - type: entity id: WallRockChromiteGold diff --git a/Resources/Prototypes/Parallaxes/amber.yml b/Resources/Prototypes/Parallaxes/amber.yml index 83bf8cb0a5..7cd60a83a4 100644 --- a/Resources/Prototypes/Parallaxes/amber.yml +++ b/Resources/Prototypes/Parallaxes/amber.yml @@ -48,5 +48,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/aspid.yml b/Resources/Prototypes/Parallaxes/aspid.yml index efcce1500d..85f3443782 100644 --- a/Resources/Prototypes/Parallaxes/aspid.yml +++ b/Resources/Prototypes/Parallaxes/aspid.yml @@ -36,5 +36,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/bagel.yml b/Resources/Prototypes/Parallaxes/bagel.yml index abf51b9bdf..2939a3919c 100644 --- a/Resources/Prototypes/Parallaxes/bagel.yml +++ b/Resources/Prototypes/Parallaxes/bagel.yml @@ -37,5 +37,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/core.yml b/Resources/Prototypes/Parallaxes/core.yml index 773104c33f..a56f230a1c 100644 --- a/Resources/Prototypes/Parallaxes/core.yml +++ b/Resources/Prototypes/Parallaxes/core.yml @@ -37,5 +37,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/default.yml b/Resources/Prototypes/Parallaxes/default.yml index 4a84b4618b..02fe72c05d 100644 --- a/Resources/Prototypes/Parallaxes/default.yml +++ b/Resources/Prototypes/Parallaxes/default.yml @@ -34,7 +34,7 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false # Because hyperspace and the menu need their own. @@ -71,6 +71,6 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.5 + slowness: 0.5 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/exo.yml b/Resources/Prototypes/Parallaxes/exo.yml index 0fcc7361b0..26b3b6d075 100644 --- a/Resources/Prototypes/Parallaxes/exo.yml +++ b/Resources/Prototypes/Parallaxes/exo.yml @@ -36,5 +36,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/kettle.yml b/Resources/Prototypes/Parallaxes/kettle.yml index 8f2972e178..c99306ae80 100644 --- a/Resources/Prototypes/Parallaxes/kettle.yml +++ b/Resources/Prototypes/Parallaxes/kettle.yml @@ -36,5 +36,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/origin.yml b/Resources/Prototypes/Parallaxes/origin.yml index 174f21a3ca..550057ed47 100644 --- a/Resources/Prototypes/Parallaxes/origin.yml +++ b/Resources/Prototypes/Parallaxes/origin.yml @@ -37,5 +37,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/plasma.yml b/Resources/Prototypes/Parallaxes/plasma.yml index 6110248539..5964ea0edc 100644 --- a/Resources/Prototypes/Parallaxes/plasma.yml +++ b/Resources/Prototypes/Parallaxes/plasma.yml @@ -49,5 +49,5 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 layersLQUseHQ: false diff --git a/Resources/Prototypes/Parallaxes/train.yml b/Resources/Prototypes/Parallaxes/train.yml index e506043c85..e47cedfc2a 100644 --- a/Resources/Prototypes/Parallaxes/train.yml +++ b/Resources/Prototypes/Parallaxes/train.yml @@ -63,6 +63,6 @@ !type:GeneratedParallaxTextureSource id: "" configPath: "/Prototypes/Parallaxes/parallax_config.toml" - slowness: 0.875 + slowness: 0.875 scrolling: "0, -0.475" layersLQUseHQ: false