BIS fnc exportMapToBiTXT: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.00|Game version=
|1.00


|gr1 = Diagnostic |GROUP1=
|gr1 = Diagnostic


| Returns terrain height map to BiTXT (Universal Bistudio TXT) format, which can be imported to [[Object Builder]]. Output is also [[copyToClipboard|copied to clipboard]].
| Returns terrain height map to BiTXT (Universal Bistudio TXT) format, which can be imported to [[Object Builder]]. Output is also [[copyToClipboard|copied to clipboard]].
{{Important|
{{Important|
Be wary that '''this function is CPU-demanding''' and may lock your computer for minutes!}} |DESCRIPTION=
Be wary that '''this function is CPU-demanding''' and may lock your computer for minutes!}}


| [resolution, size, zCoeff] call [[BIS_fnc_exportMapToBiTXT]] |SYNTAX=
| [resolution, size, zCoeff] call [[BIS_fnc_exportMapToBiTXT]]


|p1= resolution: [[Number]] - (Optional, default 64) object resolution, i.e, number of points per side |PARAMETER1=
|p1= resolution: [[Number]] - (Optional, default 64) object resolution, i.e, number of points per side


|p2= size: [[Number]] - (Optional, default 10) object size in metres |PARAMETER2=
|p2= size: [[Number]] - (Optional, default 10) object size in metres


|p3= zCoeff: [[Number]] - (Optional, default 2) vertical coefficient. All Z coordinates will be multiplied by this number to highlight hills and mountains |PARAMETER3=
|p3= zCoeff: [[Number]] - (Optional, default 2) vertical coefficient. All Z coordinates will be multiplied by this number to highlight hills and mountains


| [[String]] - height map, same data as in the clipboard |RETURNVALUE=
| [[String]] - height map, same data as in the clipboard


|x1= <code>[10, 10, 1] [[call]] [[BIS_fnc_exportMapToBiTXT]];</code> |EXAMPLE1=
|x1= <code>[10, 10, 1] [[call]] [[BIS_fnc_exportMapToBiTXT]];</code>


|x2= <code>[[call]] [[BIS_fnc_exportMapToBiTXT]];</code> |EXAMPLE2=
|x2= <code>[[call]] [[BIS_fnc_exportMapToBiTXT]];</code>


| |SEEALSO=
|
}}
}}



Revision as of 00:03, 18 January 2021

Hover & click on the images for description

Description

Description:
Returns terrain height map to BiTXT (Universal Bistudio TXT) format, which can be imported to Object Builder. Output is also copied to clipboard.
Be wary that this function is CPU-demanding and may lock your computer for minutes!
Execution:
call
Groups:
Diagnostic

Syntax

Syntax:
[resolution, size, zCoeff] call BIS_fnc_exportMapToBiTXT
Parameters:
resolution: Number - (Optional, default 64) object resolution, i.e, number of points per side
size: Number - (Optional, default 10) object size in metres
zCoeff: Number - (Optional, default 2) vertical coefficient. All Z coordinates will be multiplied by this number to highlight hills and mountains
Return Value:
String - height map, same data as in the clipboard

Examples

Example 1:
[10, 10, 1] call BIS_fnc_exportMapToBiTXT;
Example 2:
call BIS_fnc_exportMapToBiTXT;

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note


Bottom Section