Re-organize all projects (#4166)
This commit is contained in:
34
Content.Server/Movement/StressTestMovementSystem.cs
Normal file
34
Content.Server/Movement/StressTestMovementSystem.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using Content.Server.Movement.Components;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Maths;
|
||||
|
||||
namespace Content.Server.Movement
|
||||
{
|
||||
[UsedImplicitly]
|
||||
internal sealed class StressTestMovementSystem : EntitySystem
|
||||
{
|
||||
public override void Update(float frameTime)
|
||||
{
|
||||
base.Update(frameTime);
|
||||
|
||||
foreach (var stressTest in ComponentManager.EntityQuery<StressTestMovementComponent>(true))
|
||||
{
|
||||
var transform = stressTest.Owner.Transform;
|
||||
|
||||
stressTest.Progress += frameTime;
|
||||
|
||||
if (stressTest.Progress > 1)
|
||||
{
|
||||
stressTest.Progress -= 1;
|
||||
}
|
||||
|
||||
var x = MathF.Sin(stressTest.Progress * MathHelper.TwoPi);
|
||||
var y = MathF.Cos(stressTest.Progress * MathHelper.TwoPi);
|
||||
|
||||
transform.WorldPosition = stressTest.Origin + (new Vector2(x, y) * 5);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user