* Per-map parallax support * Comments for future sloth * c * bet * Fix exception * VV support * Fix parallax * mem * weightless sounds * Gravity stuff * placeholder coz im too lazy to stash don't @ me son * decent clouds * sky * Fast parallax * Imagine spelling * Loicense * perish * Fix weightless status Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
38 lines
829 B
C#
38 lines
829 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Content.Client.Parallax.Managers;
|
|
using Content.Client.Parallax;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Content.IntegrationTests
|
|
{
|
|
public sealed class DummyParallaxManager : IParallaxManager
|
|
{
|
|
public Vector2 ParallaxAnchor { get; set; }
|
|
public bool IsLoaded(string name)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public ParallaxLayerPrepared[] GetParallaxLayers(string name)
|
|
{
|
|
return Array.Empty<ParallaxLayerPrepared>();
|
|
}
|
|
|
|
public void LoadDefaultParallax()
|
|
{
|
|
return;
|
|
}
|
|
|
|
public Task LoadParallaxByName(string name)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public void UnloadParallax(string name)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
}
|