1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-26 14:41:41 +02:00
MLEM/MLEM.Ui/Elements/Group.cs

19 lines
753 B
C#
Raw Normal View History

2019-08-10 13:44:48 +02:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
2019-08-10 13:44:48 +02:00
namespace MLEM.Ui.Elements {
public class Group : Element {
public Group(Anchor anchor, Vector2 size, bool setHeightBasedOnChildren = true) : base(anchor, size) {
this.SetHeightBasedOnChildren = setHeightBasedOnChildren;
2019-08-28 18:27:17 +02:00
this.CanBeSelected = false;
2019-08-10 13:44:48 +02:00
}
public override void Draw(GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, Matrix matrix) {
2020-05-17 00:59:15 +02:00
// since the group never accesses its own area when drawing, we have to update it manually
this.UpdateAreaIfDirty();
base.Draw(time, batch, alpha, blendState, samplerState, matrix);
}
2019-08-10 13:44:48 +02:00
}
}