prop layers for full screen position control

This commit is contained in:
2022-01-06 20:30:14 -07:00
parent 92e8566bb5
commit 0ae9cca871
4 changed files with 34 additions and 5 deletions

View File

@@ -22,6 +22,7 @@ enum FlxStageFacing {
}
enum FlxScreenPosition {
// Shortcuts
UpperLeft;
UpperRight;
LowerLeft;
@@ -29,6 +30,9 @@ enum FlxScreenPosition {
LowerCenter;
UpperCenter;
Center;
// Specify the layer and position relative to screen size, or in absolute coordinates, etc.
FullControl(layer:Int, pos:RelativePosition);
}
/**