- Implemented shift tab support for Container Controls

This commit is contained in:
Nils Hausfeld
2023-09-23 11:56:45 +02:00
parent 248304a78f
commit 963300c2cb
5 changed files with 35 additions and 8 deletions

View File

@@ -634,6 +634,7 @@ namespace FlaxEngine.GUI
case NavDirection.Left: return new Float2(0, size.Y * 0.5f);
case NavDirection.Right: return new Float2(size.X, size.Y * 0.5f);
case NavDirection.Next: return Float2.Zero;
case NavDirection.Previous: return new Float2(Size.X, Size.Y);
default: return size * 0.5f;
}
}