mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-29 15:11:56 +00:00
5eb438e3ba
Added map scripting capabilities to UDB (#656). Documentation at https://biwa.github.io/udbscript-docs/
27 lines
No EOL
668 B
JavaScript
27 lines
No EOL
668 B
JavaScript
`#name Randomize Selection Order`;
|
|
|
|
`#description Randomize the selection order of the selected map elements.`;
|
|
|
|
// Put all selected map elements into an array
|
|
let elements = [
|
|
...Map.getSelectedThings(),
|
|
...Map.getSelectedVertices(),
|
|
...Map.getSelectedLinedefs(),
|
|
...Map.getSelectedSectors()
|
|
];
|
|
|
|
// Clear current selection
|
|
Map.clearAllSelected();
|
|
|
|
// Keep going as long as there are elements in the array
|
|
while(elements.length > 0)
|
|
{
|
|
// Randomly choose one element
|
|
let index = Math.floor(Math.random() * elements.length);
|
|
|
|
// Select it!
|
|
elements[index].selected = true;
|
|
|
|
// Remove it from the array
|
|
elements.splice(index, 1);
|
|
} |