Updates the content components to be compatible with the changes in 55a50ff7ba.

Updates engine submodule.
This commit is contained in:
Acruid
2019-09-18 11:29:12 -07:00
parent 364279e0f7
commit dd06c71735
13 changed files with 41 additions and 25 deletions

View File

@@ -75,7 +75,8 @@ namespace Content.Client.GameObjects.Components.IconSmoothing
serializer.DataFieldCached(ref _mode, "mode", IconSmoothingMode.Corners);
}
public override void Startup()
/// <inheritdoc />
protected override void Startup()
{
base.Startup();
@@ -196,7 +197,8 @@ namespace Content.Client.GameObjects.Components.IconSmoothing
Sprite.LayerSetState(CornerLayers.NW, $"{StateBase}{(int) cornerNW}");
}
public override void Shutdown()
/// <inheritdoc />
protected override void Shutdown()
{
SnapGrid.OnPositionChanged -= SnapGridOnPositionChanged;
Owner.EntityManager.RaiseEvent(Owner, new IconSmoothDirtyEvent(_lastPosition, SnapGrid.Offset, Mode));

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Content.Client.GameObjects.Components.IconSmoothing;
using Robust.Shared.GameObjects;
@@ -26,7 +26,8 @@ namespace Content.Client.GameObjects.Components
public CornerFill LastCornerSW { get; private set; }
public CornerFill LastCornerNW { get; private set; }
public override void Startup()
/// <inheritdoc />
protected override void Startup()
{
base.Startup();

View File

@@ -1,4 +1,4 @@
using Content.Shared.Maps;
using Content.Shared.Maps;
using Robust.Client.Interfaces.GameObjects.Components;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components.Transform;
@@ -24,7 +24,8 @@ namespace Content.Client.GameObjects.Components
_snapGridComponent = Owner.GetComponent<SnapGridComponent>();
}
public override void Startup()
/// <inheritdoc />
protected override void Startup()
{
base.Startup();
@@ -32,7 +33,8 @@ namespace Content.Client.GameObjects.Components
Owner.EntityManager.RaiseEvent(Owner, new SubFloorHideDirtyEvent());
}
public override void Shutdown()
/// <inheritdoc />
protected override void Shutdown()
{
base.Shutdown();

View File

@@ -1,4 +1,4 @@
using Content.Client.GameObjects.EntitySystems;
using Content.Client.GameObjects.EntitySystems;
using Robust.Client.GameObjects;
using Robust.Client.Interfaces.GameObjects.Components;
using Robust.Shared.GameObjects;
@@ -25,7 +25,8 @@ namespace Content.Client.GameObjects.Components
_snapGrid = Owner.GetComponent<SnapGridComponent>();
}
public override void Startup()
/// <inheritdoc />
protected override void Startup()
{
base.Startup();
@@ -43,7 +44,8 @@ namespace Content.Client.GameObjects.Components
_sprite.LayerSetDirOffset(CornerLayers.SW, SpriteComponent.DirectionOffset.Clockwise);
}
public override void Shutdown()
/// <inheritdoc />
protected override void Shutdown()
{
_snapGrid.OnPositionChanged -= SnapGridOnPositionChanged;