drawIcon3D: Difference between revisions
Jump to navigation
Jump to search
m (Eff Local) |
BrettMayson (talk | contribs) mNo edit summary |
||
Line 37: | Line 37: | ||
|p6= angle: [[Number]] - icon rotation angle | |p6= angle: [[Number]] - icon rotation angle | ||
|p7= text: [[String]] - (Optional, default | |p7= text: [[String]] - (Optional, default "") text label to display next to the icon | ||
|p8= shadow: (Optional, default | |p8= shadow: (Optional, default 0) | ||
* [[Number]]: | * [[Number]]: | ||
** '''0:''' no shadow | ** '''0:''' no shadow | ||
Line 48: | Line 48: | ||
** [[false]] - no shadow | ** [[false]] - no shadow | ||
|p9= textSize: [[Number]] - (Optional, default | |p9= textSize: [[Number]] - (Optional, default size of system) text size | ||
|p10= font: [[String]] - (Optional, default | |p10= font: [[String]] - (Optional, default "RobotoCondensedBold") font class name from {{hl|CfgFontFamilies}} (see {{Link|FXY File Format#Available Fonts}}) | ||
|p11= textAlign: [[String]] - (Optional, default | |p11= textAlign: [[String]] - (Optional, default "center") text alignment, can be one of: | ||
* "left" | * "left" | ||
* "center" | * "center" | ||
* "right" | * "right" | ||
|p12= drawSideArrows: [[Boolean]] - (Optional, default | |p12= drawSideArrows: [[Boolean]] - (Optional, default [[false]]) [[true]] to draw arrows and the text label at edge of screen when the icon moves off the screen | ||
|p13= offsetX: [[Number]] - (Optional, default | |p13= offsetX: [[Number]] - (Optional, default 0) X offset for the icon text | ||
|p13since= arma3 2.04 | |p13since= arma3 2.04 | ||
|p14= offsetY: [[Number]] - (Optional, default | |p14= offsetY: [[Number]] - (Optional, default 0) Y offset for the icon text | ||
|p14since= arma3 2.04 | |p14since= arma3 2.04 | ||
Revision as of 21:04, 28 September 2023
Description
- Description:
- Draws an icon at the given position in the game world. This command has to be executed every frame. Use the Draw3D Mission Event Handler (which is executed every frame if the user can see the icon).
In order for the results of this command to be visible through a custom camera, enable HUD with cameraEffectEnableHUD.
showHUD false will hide the icon drawn by this command.
In order for arrows to appear, the icon texture should exist. The arrow size is proportionate to the icon size. - Groups:
- Interaction
Syntax
- Syntax:
- drawIcon3D [texture, color, position, width, height, angle, text, shadow, textSize, font, textAlign, drawSideArrows, offsetX, offsetY]
- Parameters:
- texture: String - Icon texture
- color:
- Array format Color (RGBA) - icon color
- 2.04 Array of two Arrays format Color (RGBA) - Icon and text color
- position: Array format PositionAGL - Icon position
- width: Number - icon width
- height: Number - icon height
- angle: Number - icon rotation angle
- text: String - (Optional, default "") text label to display next to the icon
- shadow: (Optional, default 0)
- textSize: Number - (Optional, default size of system) text size
- font: String - (Optional, default "RobotoCondensedBold") font class name from CfgFontFamilies (see FXY File Format - Available Fonts)
- textAlign: String - (Optional, default "center") text alignment, can be one of:
- "left"
- "center"
- "right"
- drawSideArrows: Boolean - (Optional, default false) true to draw arrows and the text label at edge of screen when the icon moves off the screen
- since 2.04
- offsetX: Number - (Optional, default 0) X offset for the icon text
- since 2.04
- offsetY: Number - (Optional, default 0) Y offset for the icon text
- Return Value:
- Nothing
Examples
- Example 1:
- Icon and text:
addMissionEventHandler ["Draw3D", { drawIcon3D ["targetIcon.paa", [1,1,1,1], ASLToAGL getPosASLVisual cursorTarget, 1, 1, 45, "Target", 1, 0.05, "TahomaB"]; }];
- Example 2:
- Just text:
addMissionEventHandler ["Draw3D", { drawIcon3D ["", [1,0,0,1], ASLToAGL getPosASLVisual cursorTarget, 0, 0, 0, "Target", 1, 0.05, "PuristaMedium"]; }];
- Example 3:
- iconPos = player getPos [10, 0] vectorAdd [0,0,2]; addMissionEventHandler ["draw3D", { drawIcon3D [ "\a3\ui_f\data\IGUI\Cfg\Radar\radar_ca.paa", [0,0,1,1], iconPos, 5, 5, getDirVisual player, "COMPASS", 0, 0.3, "PuristaMedium", "center", true ]; }];
- Example 4:
- Since 2.04
pos = player getPos [10, 0] vectorAdd [0,0,2]; addMissionEventHandler ["draw3D", { _k = 10 / (player distance pos); drawIcon3D [ "\a3\ui_f\data\IGUI\Cfg\Radar\radar_ca.paa", [1,0,0,1], pos, 1 * _k, 1 * _k, 0, name player, 0, 0.04 * _k, "RobotoCondensed", "right", true, 0.005 * _k, -0.035 * _k ]; }];
Additional Information
- See also:
- drawLine3D getMissionPath showHUD cameraEffectEnableHUD
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
- Posted on Aug 31, 2013 - 09:51 (UTC)
-
As command syntax indicates, this command expects icon position in format PositionAGL meaning that over the land it expects PositionATL and over the sea PositionASLW.
This command works well with addon textures, however getting it to display mission textures is a bit tricky. Follow this guide.
- Posted on Apr 19, 2014 - 22:35 (UTC)
-
You should rely exclusively on modelToWorldVisual for a moving object's icon position if you want it to accurately stay at the correct height over the sea. It computes faster than ASLToAGL.
Width, height, and textSize are proportional to the user's interface size, which can optionally be compensated against via size / (getResolution select 5)
Additionally, width and height are inversely proportional to the fovLeft and fovTop parameters from the user's ArmaProfile, and AFAIK those parameters are not retrievable via scripting. For example, a fovTop higher than the default value of 0.75 will make all 3D icons smaller vertically. I'm not sure if this is a bug or by design, however it is definitely annoying to take into account.
- Posted on Oct 23, 2014 - 02:42 (UTC)
-
drawIcon3D and BIS_fnc_addStackedEventHandler work well together.
Using formatting commands with drawIcon3D will not work, instead, they will be added to the string.
Shown text will be Dreaded\nEntity. (A3 1.32.127785)["uniqueID", "onEachFrame", { drawIcon3D ["myIcon.jpg", [1,1,1,0.5], getPos player, 1, 1, 0, format ["%1\n%2", "Dreaded", "Entity"]]; }] call BIS_fnc_addStackedEventHandler;
The "text" parameter must be a string. You cannot use Structured_Text.
(A3 1.32.127785)
- Posted on Mar 22, 2016 - 20:38 (UTC)
-
If you want to use this command, on each frame, with plenty of objects or entities to mark, you can manage conditions in order to reduce the number of CPU operations.
One of the most demanding CPU resource is probably a DrawIcon3D treatment for these objects/entities because even if not displayed (like for objects behind player), the CPU calculates the icons in the defined radius of your nearEntities / nearestObjects command.
Don't stay with a simple radius condition (disk selecting entities or nearestObjects) which calculates all, then useless (not displayed), icons!
Here is a way to restrict this command to your screen display:
in a onEachFramed context:
Tested with +100 units, equally spread on a disk. (Note: FPS depend also on environment in map. Choose a "desert" for that).unitsToDisplay = allUnits; addMissionEventHandler ["EachFrame", { private _offset = [0,0,0]; { private _screenPosition = worldToScreen (_x modelToWorldVisual _offset); if (_screenPosition isEqualTo []) then { continue }; // < your drawIcon3D treatment here > } foreach unitsToDisplay }];