BIS_fnc_setUnitInsignia
Jump to navigation
Jump to search
Description
- Description:
- Set a config defined insignia to be displayed on a unit's uniform. See Arma 3 Unit Insignia for more details.
- Execution:
- call
- Groups:
- Uncategorised
Syntax
- Syntax:
- [ object , className ] call BIS_fnc_setUnitInsignia;
- Parameters:
- Target: Object - Target object insignia is going to be attached to.
- Class: String - CfgUnitInsignia class name to use. Use an empty string to remove the current insignia.
- Return Value:
- Boolean - Returns true if successful.
Examples
- Example 1:
Additional Information
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
Notes
- Posted on July 28, 2014 - 12:58 (UTC)
- Sxp2hiiigh
- Multiplayer locality (As of Arma 3 v1.24):
Effect of this function is global, it should be executed consistently for JIP otherwise insignias are gone after respawn, so they have to be reapplied afterwards (On all machines again).
This would apply insignia "111thID" to player unit on all machines (incl. Join In Progress):[[ player, "111thID"], "BIS_fnc_setUnitInsignia", nil, true, true] call BIS_fnc_MP;
- Posted on July 29, 2014 1500
- ffur2007slx2_5
- (A3 1.24)Predefined textures that can be used directly in game.
Img Code Note [this,"111thID"] call BIS_fnc_setUnitInsignia;
NATO division which dispatched one brigade to liberate Altis in Episode 3 - Win. [this,"BI"] call BIS_fnc_setUnitInsignia;
Bohemia Interactive glyph [this,"Curator"] call BIS_fnc_setUnitInsignia;
Zeus eye [this,"GryffinRegiment"] call BIS_fnc_setUnitInsignia;
CSAT regiment that occupied Altis in episodes 2 and 3 of the Arma 3 campaign. [this,"MANW"] call BIS_fnc_setUnitInsignia;
Make Arma Not War competition logo [this,"TFAegis"] call BIS_fnc_setUnitInsignia;
Combined force of NATO and AAF which operated on Stratis and Altis at the beginning of Episode 1 and in the Bootcamp campaign.
- Posted on September 29, 2014 1500
- BrotherhoodOfHam
- There are two ways of removing an insignia when placed.
The first way would be to run this function on the unit:
fnc_removeUnitInsignia = { _unit = _this select 0; _index = -1; { if (_x == "insignia") exitwith {_index = _foreachindex;}; } foreach getarray (configfile >> "CfgVehicles" >> gettext ( configfile >> "CfgWeapons" >> uniform _unit >> "ItemInfo" >> "uniformClass") >> "hiddenSelections"); _unit setObjectTextureGlobal [_index, ""]; };
[player] call fnc_removeUnitInsignia
The second way would be to create an empty cfgUnitInsignia class in the description.ext:
class CfgUnitInsignia { class empty { author = ""; displayName = ""; texture = ""; }; };
And then run it the normal way:[player, "empty"] call BIS_fnc_setUnitInsignia
Bottom Section