Fix any remaining bugs with anchor positioning system, use LocalPosition for UIElement, and make containers use that for arrangement.

This commit is contained in:
2025-06-24 19:45:18 +02:00
parent b228f04670
commit 03668849bc
13 changed files with 74 additions and 72 deletions

View File

@@ -22,7 +22,7 @@ public abstract class Widget : UIElement, IInputElement
public Widget(Vector2 position)
{
Position = position;
LocalPosition = position;
MarkDirty();
}