ScenEdit_TransformZone ( SideNameOrID, ZoneNameOrID, TargetType )
The function purpose is to convert a 'zone' from one type to another.
The types of 'zone' as non-navigation, exclusion and standard.
Once converted, some update may be required for any specifics related to the converted zone
Parameters
- SideNameOrID string The side name/GUID containg the zone. Custom environment zones are always owned by the Nature side.
- ZoneNameOrID string The name/GUID of the zone
-
TargetType
string
exclusion
nonav
standard
customenvironment The type of zone to convert it to
Returns
- An empty string "" on success else an error message.
Example
Convert a non-navigation zone to an exclusion zone.
Note the zone under 'nonavzones' has been removed and a new one created under 'exclusionzones'.
local a = VP_GetSide({side='sidea'})
print(a.nonavzones)
print(a.exclusionzones)
print(a.standardzones)
ScenEdit_TransformZone ( 'sidea', 'no-go zone', 'exclusion' )
print(a.nonavzones)
print(a.exclusionzones)
print(a.standardzones)