surfaceTexture: Difference between revisions
Jump to navigation
Jump to search
(Add example) |
Lou Montana (talk | contribs) m (Text replacement - "↵↵</sqf>" to " </sqf>") |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 15: | Line 15: | ||
|p3since=arma3 2.18 | |p3since=arma3 2.18 | ||
|p3= z or useLayerMask: [[Number]] or [[Boolean]] - When a number is provided (Z in 3D positions), it is ignored. When a boolean is provided, it defines whether the layer mask should be used. Using the layer mask is more accurate but slightly slower. | |p3= z or useLayerMask: [[Number]] or [[Boolean]] - When a number is provided (Z in 3D positions), it is ignored. When a boolean is provided, it defines whether the layer mask should be used. Using the layer mask is more accurate but slightly slower. | ||
[[File:Capture.png|thumb|256px|The "dirt" | [[File:Capture.png|thumb|256px|The patches of "dirt" are defined using a layer mask. The "concrete" is the primary surface texture.]] | ||
|r1= [[String]] - Surface texture | |r1= [[String]] - Surface texture | ||
|x1= <sqf>private _groundTexture = surfaceTexture getPosATL player;</sqf> | |x1= <sqf>private _groundTexture = surfaceTexture getPosATL player;</sqf> | ||
| | |x2= <sqf> | ||
private _pos = getPosATL player; | |||
_pos set [2, true]; // use layer mask | _pos set [2, true]; // use layer mask | ||
private _groundTexture = surfaceTexture _pos; | private _groundTexture = surfaceTexture _pos; |
Latest revision as of 19:48, 3 September 2024
Description
- Description:
- Same as surfaceType, but returns texture path to ground texture as string.
- Groups:
- Positions
Syntax
- Syntax:
- surfaceTexture [x, y, z or useLayerMask]
- Parameters:
- x: Number - world x coordinate of the position
- y: Number - world y coordinate of the position
- since 2.18
- z or useLayerMask: Number or Boolean - When a number is provided (Z in 3D positions), it is ignored. When a boolean is provided, it defines whether the layer mask should be used. Using the layer mask is more accurate but slightly slower.
- Return Value:
- String - Surface texture
Examples
- Example 1:
- Example 2:
Additional Information
- See also:
- surfaceType getRoadInfo
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