mirror of
https://github.com/Dadido3/noita-mapcap.git
synced 2024-11-18 17:17:31 +00:00
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:
parent
05e6b18745
commit
20d7c330a6
13
AREAS.md
13
AREAS.md
@ -64,3 +64,16 @@ Bottom = 41984
|
|||||||
The end result will have a size of `51200 x 73728 pixels ~= 3775 megapixels`.
|
The end result will have a size of `51200 x 73728 pixels ~= 3775 megapixels`.
|
||||||
|
|
||||||
![Base layout](images/scale32_extended.png)
|
![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`.
|
||||||
|
@ -45,4 +45,10 @@ Config.CaptureArea = {
|
|||||||
TopLeft = Vec2(-25600, -31744), -- in world coordinates.
|
TopLeft = Vec2(-25600, -31744), -- in world coordinates.
|
||||||
BottomRight = Vec2(25600, 41984), -- in world coordinates. This pixel is not included in the rectangle.
|
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.
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
@ -95,7 +95,7 @@ modSettings = {
|
|||||||
ui_name = " Rectangle",
|
ui_name = " Rectangle",
|
||||||
ui_description = "The area to be captured.\nSee documentation for more information.",
|
ui_description = "The area to be captured.\nSee documentation for more information.",
|
||||||
value_default = "1x1",
|
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,
|
scope = MOD_SETTING_SCOPE_RUNTIME,
|
||||||
show_fn = function() return modSettings:GetNextValue("capture-mode") == "area" end,
|
show_fn = function() return modSettings:GetNextValue("capture-mode") == "area" end,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user