BIS fnc initInspectable: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *arma3 * * *\| *([0-2]\.[0-9]{2}) * " to "|game1= arma3 |version1= $1 ") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 8: | Line 8: | ||
|descr= Initialize inspectable object: add "Inspect" action to the object. When a player activates it, full-screen detail of the objects is shown. | |descr= Initialize inspectable object: add "Inspect" action to the object. When a player activates it, full-screen detail of the objects is shown. | ||
|s1=[inspectable, textureInfos, fullScreenText, soundName] call [[BIS_fnc_initInspectable]] | |s1= [inspectable, textureInfos, fullScreenText, soundName] call [[BIS_fnc_initInspectable]] | ||
|p1= inspectable: [[Object]] - object on which the action is added | |p1= inspectable: [[Object]] - object on which the action is added | ||
Line 26: | Line 26: | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= < | |x1= <sqf>[myLeaflet, "#(argb,8,8,3)color(1,0,1,1)", "This is some Magic Pink"] call BIS_fnc_initInspectable; // initialize</sqf> | ||
|x2= < | |x2= <sqf>[myLeaflet, true] call BIS_fnc_initLeaflet; // Show preview instantly</sqf> | ||
|seealso= [[BIS_fnc_holdActionAdd]] | |seealso= [[BIS_fnc_holdActionAdd]] [[BIS_fnc_holdActionRemove]] | ||
}} | }} |
Latest revision as of 11:46, 6 May 2022
Description
- Description:
- Initialize inspectable object: add "Inspect" action to the object. When a player activates it, full-screen detail of the objects is shown.
- Execution:
- call
- Groups:
- Interaction
Syntax
- Syntax:
- [inspectable, textureInfos, fullScreenText, soundName] call BIS_fnc_initInspectable
- Parameters:
- inspectable: Object - object on which the action is added
- textureInfos: can be one of the following:
- String - texture path
- Array - [texture, index, aspectRatio]:
- texture: String - texture path
- index: Number - (Optional, default 0) index on which the texture will be mapped on the object using setObjectTexture. Use -1 to ignore.
- aspectRatio: Number - (Optional, default -1) texture aspect ratio. 0.5 means width will be 0.5 of the height. -1 means texture default.
- Boolean - true to instantly show the inspectable full-screen preview (following params are then ignored)
- fullScreenText: String - text to be shown after clicking on READ button. Ideally localized.
- soundName: String - sound played when entering full-screen preview. Sould be defined in CfgSounds.
- Return Value:
- Nothing
Examples
- Example 1:
- [myLeaflet, "#(argb,8,8,3)color(1,0,1,1)", "This is some Magic Pink"] call BIS_fnc_initInspectable; // initialize
- Example 2:
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