38f1ddb...178a853: v0.8.9.1, removed content folder
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
using Microsoft.Xna.Framework;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Barotrauma
|
||||
{
|
||||
class ParamsEditor
|
||||
{
|
||||
private static ParamsEditor _instance;
|
||||
public static ParamsEditor Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_instance == null)
|
||||
{
|
||||
_instance = new ParamsEditor();
|
||||
}
|
||||
return _instance;
|
||||
}
|
||||
}
|
||||
|
||||
public GUIListBox EditorBox { get; private set; }
|
||||
/// <summary>
|
||||
/// Uses Linq queries. Don't use too frequently or reimplement.
|
||||
/// </summary>
|
||||
public IEnumerable<SerializableEntityEditor> FindEntityEditors() => EditorBox.Content.RectTransform.Children
|
||||
.Select(c => c.GUIComponent as SerializableEntityEditor)
|
||||
.Where(c => c != null);
|
||||
|
||||
public GUIListBox CreateEditorBox(RectTransform rectT = null)
|
||||
{
|
||||
rectT = rectT ?? new RectTransform(new Vector2(0.25f, 0.95f), GUI.Canvas) { MinSize = new Point(340, GameMain.GraphicsHeight) };
|
||||
rectT.SetPosition(Anchor.TopRight);
|
||||
rectT.RelativeOffset = new Vector2(0.16f, 0);
|
||||
EditorBox = new GUIListBox(rectT)
|
||||
{
|
||||
Spacing = 10,
|
||||
Color = Color.Black
|
||||
};
|
||||
return EditorBox;
|
||||
}
|
||||
|
||||
public void Clear()
|
||||
{
|
||||
EditorBox.ClearChildren();
|
||||
}
|
||||
|
||||
public ParamsEditor(RectTransform rectT = null)
|
||||
{
|
||||
EditorBox = CreateEditorBox();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user