mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 13:37:25 +08:00
Merge pull request #17279 from peppy/skin-editor-borrowed-dependencies
Only show components in skin editor which are usable on the current screen
This commit is contained in:
commit
af6d53ad64
@ -18,9 +18,11 @@ using osu.Game.Rulesets;
|
|||||||
using osu.Game.Rulesets.Osu;
|
using osu.Game.Rulesets.Osu;
|
||||||
using osu.Game.Rulesets.Osu.Skinning.Legacy;
|
using osu.Game.Rulesets.Osu.Skinning.Legacy;
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
|
using osu.Game.Screens.Play;
|
||||||
using osu.Game.Screens.Play.HUD;
|
using osu.Game.Screens.Play.HUD;
|
||||||
using osu.Game.Skinning;
|
using osu.Game.Skinning;
|
||||||
using osu.Game.Storyboards;
|
using osu.Game.Storyboards;
|
||||||
|
using osu.Game.Tests.Beatmaps;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Gameplay
|
namespace osu.Game.Tests.Visual.Gameplay
|
||||||
{
|
{
|
||||||
@ -37,6 +39,12 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
[Cached(typeof(HealthProcessor))]
|
[Cached(typeof(HealthProcessor))]
|
||||||
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private GameplayState gameplayState = new GameplayState(new TestBeatmap(new OsuRuleset().RulesetInfo), new OsuRuleset());
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private readonly GameplayClock gameplayClock = new GameplayClock(new FramedClock());
|
||||||
|
|
||||||
protected override bool HasCustomSteps => true;
|
protected override bool HasCustomSteps => true;
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
@ -8,12 +8,14 @@ using osu.Framework.Allocation;
|
|||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
|
using osu.Framework.Timing;
|
||||||
using osu.Game.Configuration;
|
using osu.Game.Configuration;
|
||||||
using osu.Game.Rulesets.Mods;
|
using osu.Game.Rulesets.Mods;
|
||||||
using osu.Game.Rulesets.Osu;
|
using osu.Game.Rulesets.Osu;
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Screens.Play;
|
using osu.Game.Screens.Play;
|
||||||
using osu.Game.Skinning;
|
using osu.Game.Skinning;
|
||||||
|
using osu.Game.Tests.Beatmaps;
|
||||||
using osuTK.Input;
|
using osuTK.Input;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Gameplay
|
namespace osu.Game.Tests.Visual.Gameplay
|
||||||
@ -30,6 +32,12 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
[Cached(typeof(HealthProcessor))]
|
[Cached(typeof(HealthProcessor))]
|
||||||
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private GameplayState gameplayState = new GameplayState(new TestBeatmap(new OsuRuleset().RulesetInfo), new OsuRuleset());
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private readonly GameplayClock gameplayClock = new GameplayClock(new FramedClock());
|
||||||
|
|
||||||
// best way to check without exposing.
|
// best way to check without exposing.
|
||||||
private Drawable hideTarget => hudOverlay.KeyCounter;
|
private Drawable hideTarget => hudOverlay.KeyCounter;
|
||||||
private FillFlowContainer<KeyCounter> keyCounterFlow => hudOverlay.KeyCounter.ChildrenOfType<FillFlowContainer<KeyCounter>>().First();
|
private FillFlowContainer<KeyCounter> keyCounterFlow => hudOverlay.KeyCounter.ChildrenOfType<FillFlowContainer<KeyCounter>>().First();
|
||||||
|
@ -5,11 +5,13 @@ using osu.Framework.Allocation;
|
|||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
|
using osu.Framework.Timing;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Rulesets;
|
||||||
using osu.Game.Rulesets.Osu;
|
using osu.Game.Rulesets.Osu;
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Screens.Play;
|
using osu.Game.Screens.Play;
|
||||||
using osu.Game.Skinning.Editor;
|
using osu.Game.Skinning.Editor;
|
||||||
|
using osu.Game.Tests.Beatmaps;
|
||||||
using osuTK.Input;
|
using osuTK.Input;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Gameplay
|
namespace osu.Game.Tests.Visual.Gameplay
|
||||||
@ -22,6 +24,12 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
[Cached(typeof(HealthProcessor))]
|
[Cached(typeof(HealthProcessor))]
|
||||||
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private GameplayState gameplayState = new GameplayState(new TestBeatmap(new OsuRuleset().RulesetInfo), new OsuRuleset());
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private readonly GameplayClock gameplayClock = new GameplayClock(new FramedClock());
|
||||||
|
|
||||||
[SetUpSteps]
|
[SetUpSteps]
|
||||||
public void SetUpSteps()
|
public void SetUpSteps()
|
||||||
{
|
{
|
||||||
|
@ -10,11 +10,13 @@ using osu.Framework.Extensions.IEnumerableExtensions;
|
|||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
|
using osu.Framework.Timing;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Rulesets;
|
||||||
using osu.Game.Rulesets.Mods;
|
using osu.Game.Rulesets.Mods;
|
||||||
using osu.Game.Rulesets.Osu;
|
using osu.Game.Rulesets.Osu;
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Screens.Play;
|
using osu.Game.Screens.Play;
|
||||||
|
using osu.Game.Tests.Beatmaps;
|
||||||
using osuTK.Input;
|
using osuTK.Input;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Gameplay
|
namespace osu.Game.Tests.Visual.Gameplay
|
||||||
@ -29,6 +31,12 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
[Cached(typeof(HealthProcessor))]
|
[Cached(typeof(HealthProcessor))]
|
||||||
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private GameplayState gameplayState = new GameplayState(new TestBeatmap(new OsuRuleset().RulesetInfo), new OsuRuleset());
|
||||||
|
|
||||||
|
[Cached]
|
||||||
|
private readonly GameplayClock gameplayClock = new GameplayClock(new FramedClock());
|
||||||
|
|
||||||
private IEnumerable<HUDOverlay> hudOverlays => CreatedDrawables.OfType<HUDOverlay>();
|
private IEnumerable<HUDOverlay> hudOverlays => CreatedDrawables.OfType<HUDOverlay>();
|
||||||
|
|
||||||
// best way to check without exposing.
|
// best way to check without exposing.
|
||||||
|
@ -42,12 +42,10 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
|
|
||||||
private const float alpha_when_invalid = 0.3f;
|
private const float alpha_when_invalid = 0.3f;
|
||||||
|
|
||||||
[CanBeNull]
|
[Resolved]
|
||||||
[Resolved(CanBeNull = true)]
|
|
||||||
private ScoreProcessor scoreProcessor { get; set; }
|
private ScoreProcessor scoreProcessor { get; set; }
|
||||||
|
|
||||||
[Resolved(CanBeNull = true)]
|
[Resolved]
|
||||||
[CanBeNull]
|
|
||||||
private GameplayState gameplayState { get; set; }
|
private GameplayState gameplayState { get; set; }
|
||||||
|
|
||||||
[CanBeNull]
|
[CanBeNull]
|
||||||
|
@ -73,9 +73,12 @@ namespace osu.Game.Screens.Play
|
|||||||
[Resolved(canBeNull: true)]
|
[Resolved(canBeNull: true)]
|
||||||
private Player player { get; set; }
|
private Player player { get; set; }
|
||||||
|
|
||||||
[Resolved(canBeNull: true)]
|
[Resolved]
|
||||||
private GameplayClock gameplayClock { get; set; }
|
private GameplayClock gameplayClock { get; set; }
|
||||||
|
|
||||||
|
[Resolved(canBeNull: true)]
|
||||||
|
private DrawableRuleset drawableRuleset { get; set; }
|
||||||
|
|
||||||
private IClock referenceClock;
|
private IClock referenceClock;
|
||||||
|
|
||||||
public bool UsesFixedAnchor { get; set; }
|
public bool UsesFixedAnchor { get; set; }
|
||||||
@ -113,7 +116,7 @@ namespace osu.Game.Screens.Play
|
|||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader(true)]
|
[BackgroundDependencyLoader(true)]
|
||||||
private void load(OsuColour colours, OsuConfigManager config, DrawableRuleset drawableRuleset)
|
private void load(OsuColour colours, OsuConfigManager config)
|
||||||
{
|
{
|
||||||
base.LoadComplete();
|
base.LoadComplete();
|
||||||
|
|
||||||
|
@ -2,24 +2,17 @@
|
|||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Input.Events;
|
using osu.Framework.Input.Events;
|
||||||
using osu.Framework.Utils;
|
using osu.Framework.Logging;
|
||||||
using osu.Game.Beatmaps;
|
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
using osu.Game.Overlays;
|
using osu.Game.Overlays;
|
||||||
using osu.Game.Rulesets;
|
|
||||||
using osu.Game.Rulesets.Difficulty;
|
|
||||||
using osu.Game.Rulesets.Mods;
|
|
||||||
using osu.Game.Rulesets.Scoring;
|
|
||||||
using osu.Game.Rulesets.UI;
|
|
||||||
using osu.Game.Screens.Edit.Components;
|
using osu.Game.Screens.Edit.Components;
|
||||||
using osuTK;
|
using osuTK;
|
||||||
|
|
||||||
@ -29,26 +22,19 @@ namespace osu.Game.Skinning.Editor
|
|||||||
{
|
{
|
||||||
public Action<Type> RequestPlacement;
|
public Action<Type> RequestPlacement;
|
||||||
|
|
||||||
[Cached]
|
private readonly CompositeDrawable target;
|
||||||
private ScoreProcessor scoreProcessor = new ScoreProcessor(new DummyRuleset())
|
|
||||||
{
|
|
||||||
Combo = { Value = RNG.Next(1, 1000) },
|
|
||||||
TotalScore = { Value = RNG.Next(1000, 10000000) }
|
|
||||||
};
|
|
||||||
|
|
||||||
[Cached(typeof(HealthProcessor))]
|
public SkinComponentToolbox(CompositeDrawable target = null)
|
||||||
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
|
||||||
|
|
||||||
public SkinComponentToolbox()
|
|
||||||
: base("Components")
|
: base("Components")
|
||||||
{
|
{
|
||||||
|
this.target = target;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private FillFlowContainer fill;
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load()
|
private void load()
|
||||||
{
|
{
|
||||||
FillFlowContainer fill;
|
|
||||||
|
|
||||||
Child = fill = new FillFlowContainer
|
Child = fill = new FillFlowContainer
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
@ -57,6 +43,13 @@ namespace osu.Game.Skinning.Editor
|
|||||||
Spacing = new Vector2(2)
|
Spacing = new Vector2(2)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
reloadComponents();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void reloadComponents()
|
||||||
|
{
|
||||||
|
fill.Clear();
|
||||||
|
|
||||||
var skinnableTypes = typeof(OsuGame).Assembly.GetTypes()
|
var skinnableTypes = typeof(OsuGame).Assembly.GetTypes()
|
||||||
.Where(t => !t.IsInterface)
|
.Where(t => !t.IsInterface)
|
||||||
.Where(t => typeof(ISkinnableDrawable).IsAssignableFrom(t))
|
.Where(t => typeof(ISkinnableDrawable).IsAssignableFrom(t))
|
||||||
@ -64,18 +57,10 @@ namespace osu.Game.Skinning.Editor
|
|||||||
.ToArray();
|
.ToArray();
|
||||||
|
|
||||||
foreach (var type in skinnableTypes)
|
foreach (var type in skinnableTypes)
|
||||||
{
|
attemptAddComponent(type);
|
||||||
var component = attemptAddComponent(type);
|
|
||||||
|
|
||||||
if (component != null)
|
|
||||||
{
|
|
||||||
component.RequestPlacement = t => RequestPlacement?.Invoke(t);
|
|
||||||
fill.Add(component);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static ToolboxComponentButton attemptAddComponent(Type type)
|
private void attemptAddComponent(Type type)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -83,14 +68,21 @@ namespace osu.Game.Skinning.Editor
|
|||||||
|
|
||||||
Debug.Assert(instance != null);
|
Debug.Assert(instance != null);
|
||||||
|
|
||||||
if (!((ISkinnableDrawable)instance).IsEditable)
|
if (!((ISkinnableDrawable)instance).IsEditable) return;
|
||||||
return null;
|
|
||||||
|
|
||||||
return new ToolboxComponentButton(instance);
|
fill.Add(new ToolboxComponentButton(instance, target)
|
||||||
|
{
|
||||||
|
RequestPlacement = t => RequestPlacement?.Invoke(t)
|
||||||
|
});
|
||||||
}
|
}
|
||||||
catch
|
catch (DependencyNotRegisteredException)
|
||||||
{
|
{
|
||||||
return null;
|
// This loading code relies on try-catching any dependency injection errors to know which components are valid for the current target screen.
|
||||||
|
// If a screen can't provide the required dependencies, a skinnable component should not be displayed in the list.
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Logger.Error(e, $"Skin component {type} could not be loaded in the editor component list due to an error");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -101,6 +93,7 @@ namespace osu.Game.Skinning.Editor
|
|||||||
public override bool PropagateNonPositionalInputSubTree => false;
|
public override bool PropagateNonPositionalInputSubTree => false;
|
||||||
|
|
||||||
private readonly Drawable component;
|
private readonly Drawable component;
|
||||||
|
private readonly CompositeDrawable dependencySource;
|
||||||
|
|
||||||
public Action<Type> RequestPlacement;
|
public Action<Type> RequestPlacement;
|
||||||
|
|
||||||
@ -109,9 +102,10 @@ namespace osu.Game.Skinning.Editor
|
|||||||
private const float contracted_size = 60;
|
private const float contracted_size = 60;
|
||||||
private const float expanded_size = 120;
|
private const float expanded_size = 120;
|
||||||
|
|
||||||
public ToolboxComponentButton(Drawable component)
|
public ToolboxComponentButton(Drawable component, CompositeDrawable dependencySource)
|
||||||
{
|
{
|
||||||
this.component = component;
|
this.component = component;
|
||||||
|
this.dependencySource = dependencySource;
|
||||||
|
|
||||||
Enabled.Value = true;
|
Enabled.Value = true;
|
||||||
|
|
||||||
@ -143,7 +137,7 @@ namespace osu.Game.Skinning.Editor
|
|||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Padding = new MarginPadding(10) { Bottom = 20 },
|
Padding = new MarginPadding(10) { Bottom = 20 },
|
||||||
Masking = true,
|
Masking = true,
|
||||||
Child = innerContainer = new Container
|
Child = innerContainer = new DependencyBorrowingContainer(dependencySource)
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
@ -186,14 +180,17 @@ namespace osu.Game.Skinning.Editor
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class DummyRuleset : Ruleset
|
public class DependencyBorrowingContainer : Container
|
||||||
{
|
{
|
||||||
public override IEnumerable<Mod> GetModsFor(ModType type) => throw new NotImplementedException();
|
private readonly CompositeDrawable donor;
|
||||||
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null) => throw new NotImplementedException();
|
|
||||||
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => throw new NotImplementedException();
|
public DependencyBorrowingContainer(CompositeDrawable donor)
|
||||||
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => throw new NotImplementedException();
|
{
|
||||||
public override string Description => string.Empty;
|
this.donor = donor;
|
||||||
public override string ShortName => string.Empty;
|
}
|
||||||
|
|
||||||
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) =>
|
||||||
|
new DependencyContainer(donor?.Dependencies ?? base.CreateChildDependencies(parent));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,6 +49,7 @@ namespace osu.Game.Skinning.Editor
|
|||||||
|
|
||||||
private Container content;
|
private Container content;
|
||||||
|
|
||||||
|
private EditorSidebar componentsSidebar;
|
||||||
private EditorSidebar settingsSidebar;
|
private EditorSidebar settingsSidebar;
|
||||||
|
|
||||||
public SkinEditor()
|
public SkinEditor()
|
||||||
@ -145,16 +146,7 @@ namespace osu.Game.Skinning.Editor
|
|||||||
{
|
{
|
||||||
new Drawable[]
|
new Drawable[]
|
||||||
{
|
{
|
||||||
new EditorSidebar
|
componentsSidebar = new EditorSidebar(),
|
||||||
{
|
|
||||||
Children = new[]
|
|
||||||
{
|
|
||||||
new SkinComponentToolbox
|
|
||||||
{
|
|
||||||
RequestPlacement = placeComponent
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
content = new Container
|
content = new Container
|
||||||
{
|
{
|
||||||
Depth = float.MaxValue,
|
Depth = float.MaxValue,
|
||||||
@ -200,7 +192,15 @@ namespace osu.Game.Skinning.Editor
|
|||||||
Scheduler.AddOnce(loadBlueprintContainer);
|
Scheduler.AddOnce(loadBlueprintContainer);
|
||||||
Scheduler.AddOnce(populateSettings);
|
Scheduler.AddOnce(populateSettings);
|
||||||
|
|
||||||
void loadBlueprintContainer() => content.Child = new SkinBlueprintContainer(targetScreen);
|
void loadBlueprintContainer()
|
||||||
|
{
|
||||||
|
content.Child = new SkinBlueprintContainer(targetScreen);
|
||||||
|
|
||||||
|
componentsSidebar.Child = new SkinComponentToolbox(getFirstTarget() as CompositeDrawable)
|
||||||
|
{
|
||||||
|
RequestPlacement = placeComponent
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void skinChanged()
|
private void skinChanged()
|
||||||
@ -227,12 +227,7 @@ namespace osu.Game.Skinning.Editor
|
|||||||
|
|
||||||
private void placeComponent(Type type)
|
private void placeComponent(Type type)
|
||||||
{
|
{
|
||||||
var target = availableTargets.FirstOrDefault()?.Target;
|
var targetContainer = getFirstTarget();
|
||||||
|
|
||||||
if (target == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
var targetContainer = getTarget(target.Value);
|
|
||||||
|
|
||||||
if (targetContainer == null)
|
if (targetContainer == null)
|
||||||
return;
|
return;
|
||||||
@ -263,6 +258,8 @@ namespace osu.Game.Skinning.Editor
|
|||||||
|
|
||||||
private IEnumerable<ISkinnableTarget> availableTargets => targetScreen.ChildrenOfType<ISkinnableTarget>();
|
private IEnumerable<ISkinnableTarget> availableTargets => targetScreen.ChildrenOfType<ISkinnableTarget>();
|
||||||
|
|
||||||
|
private ISkinnableTarget getFirstTarget() => availableTargets.FirstOrDefault();
|
||||||
|
|
||||||
private ISkinnableTarget getTarget(SkinnableTarget target)
|
private ISkinnableTarget getTarget(SkinnableTarget target)
|
||||||
{
|
{
|
||||||
return availableTargets.FirstOrDefault(c => c.Target == target);
|
return availableTargets.FirstOrDefault(c => c.Target == target);
|
||||||
|
Loading…
Reference in New Issue
Block a user