File size: 659 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 |
-- ========== GENERATED BY ExtrasGen Editor (Ctrl-Alt-G) DO NOT EDIT MANUALLY! ==========
rawset(_G, 'ExtrasGenPrgs', rawget(_G, 'ExtrasGenPrgs') or {})
ExtrasGenPrgs.TopOutwards = function(seed, initial_selection)
local li = { id = "TopOutwards" }
initial_selection = initial_selection or editor.GetSel()
local rand = BraidRandomCreate(seed or AsyncRand())
local _, guides
prgdbg(li, 1, 1) _, guides = sprocall(PlaceRoomGuides.Exec, PlaceRoomGuides, initial_selection, guides, "Wall exterior", true, true, true, true, true, true, "Top", 1, 0, 0, "Outwards (room)")
prgdbg(li, 1, 2) sprocall(SelectInEditor.Exec, SelectInEditor, guides, true, true)
end |