Add new capture area preset

"3 Worlds" does contain the base layout of a "New Game", but 9 times (3x3).
This commit is contained in:
David Vogel 2024-02-20 18:02:21 +01:00
parent 05e6b18745
commit 20d7c330a6
3 changed files with 20 additions and 1 deletions

View File

@ -64,3 +64,16 @@ Bottom = 41984
The end result will have a size of `51200 x 73728 pixels ~= 3775 megapixels`.
![Base layout](images/scale32_extended.png)
## `3 Worlds`
This area consists of `Main world` plus a full left and right parallel world.
``` lua
Left = -53760
Top = -31744
Right = 53760
Bottom = 41984
```
The end result will have a size of `107520 x 73728 pixels ~= 7927 megapixels`.

View File

@ -45,4 +45,10 @@ Config.CaptureArea = {
TopLeft = Vec2(-25600, -31744), -- in world coordinates.
BottomRight = Vec2(25600, 41984), -- in world coordinates. This pixel is not included in the rectangle.
},
-- Extended: Main world + each parallel world to the left and right.
["3x3"] = {
TopLeft = Vec2(-53760, -31744), -- in world coordinates.
BottomRight = Vec2(53760, 41984), -- in world coordinates. This pixel is not included in the rectangle.
},
}

View File

@ -95,7 +95,7 @@ modSettings = {
ui_name = " Rectangle",
ui_description = "The area to be captured.\nSee documentation for more information.",
value_default = "1x1",
values = { { "1x1", "Base layout" }, { "1x3", "Main World" }, { "1.5x3", "Extended" }, { "custom", "Custom" } },
values = { { "1x1", "Base layout" }, { "1x3", "Main World" }, { "1.5x3", "Extended" }, { "3x3", "3 Worlds" }, { "custom", "Custom" } },
scope = MOD_SETTING_SCOPE_RUNTIME,
show_fn = function() return modSettings:GetNextValue("capture-mode") == "area" end,
},