restoreFoW: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{MacroFunction |name=restoreFoW |proposed=false |trusted=true |version=1.4.1.3 |description=resets all FoW for the map, duplicates the FoW reset when you import a new map san...") |
No edit summary |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 4: | Line 4: | ||
|trusted=true | |trusted=true | ||
|version=1.4.1.3 | |version=1.4.1.3 | ||
|description= | |description= | ||
Resets all fog of war (FoW) for the map. | |||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
restoreFoW() | restoreFoW() | ||
</ | restoreFoW(mapname) | ||
</syntaxhighlight> | |||
This function resets all FoW for the current map. Duplicates the FoW reset available through Map Menu -> Restore Fog-of-War or when you import a new map sans dialog. | This function resets all FoW for the current map or the indicated map if the optional map name is supplied. Duplicates the FoW reset available through '''Map Menu''' -> '''Restore Fog-of-War''' or when you import a new map sans dialog. | ||
'''Parameters''' | '''Parameters''' | ||
{{param| | {{param|mapname|Optional map name.}} | ||
|example= | |||
<syntaxhighlight lang="mtmacro"> | |||
<!-- Restore all Fog of War on current map --> | |||
[h:restoreFoW()] | [h: restoreFoW()] | ||
< | <!-- Restore all Fog of War on named map --> | ||
[h: restoreFoW("Skull Mountain")] | |||
</syntaxhighlight> | |||
|also= | |also= | ||
[[Introduction_to_Lights_and_Sights#Fog_of_War ]], {{func|toggleFoW | [[Introduction_to_Lights_and_Sights#Fog_of_War]], {{func|toggleFoW}} | ||
}} | }} | ||
[[Category:Miscellaneous Function]] | [[Category:Miscellaneous Function]] | ||
[[Category:FoW | [[Category:FoW]] |
Latest revision as of 22:06, 14 March 2023
restoreFoW() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.4.1.3
Resets all fog of war (FoW) for the map.
Usage
restoreFoW()
restoreFoW(mapname)
This function resets all FoW for the current map or the indicated map if the optional map name is supplied. Duplicates the FoW reset available through Map Menu -> Restore Fog-of-War or when you import a new map sans dialog.
Parameters
mapname
- Optional map name.
Example
<!-- Restore all Fog of War on current map -->
[h: restoreFoW()]
<!-- Restore all Fog of War on named map -->
[h: restoreFoW("Skull Mountain")]