mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Added support for image color
This commit is contained in:
parent
9d44ec18b8
commit
dd51037c5e
@ -6,6 +6,7 @@
|
||||
* Argument:
|
||||
* 0: Text <ANY>
|
||||
* 1: Image <STRING>
|
||||
* 2: Image color <ARRAY> <OPTIONAL>
|
||||
*
|
||||
* Return value:
|
||||
* Nothing
|
||||
@ -13,9 +14,11 @@
|
||||
|
||||
#include "script_component.hpp"
|
||||
|
||||
private ["_text", "_image"];
|
||||
private ["_text", "_image", "_imageColor"];
|
||||
_text = _this select 0;
|
||||
_image = _this select 1;
|
||||
_imageColor = if (count _this > 2) then {_this select 2} else {[1,1,1]};
|
||||
_imageColor resize 3;
|
||||
|
||||
if (typeName _text != "TEXT") then {
|
||||
if (typeName _text == "STRING" && {isLocalized _text}) then {
|
||||
@ -23,5 +26,5 @@ if (typeName _text != "TEXT") then {
|
||||
};
|
||||
_text = parseText format ["<t align='center'>%1</t>", _text];
|
||||
};
|
||||
_text = composeText [parseText format ["<img size='2' align='center' color='#ffffff' image='%1'/>", _image], lineBreak, _text];
|
||||
_text = composeText [parseText format ["<img size='2' align='center' color='%2' image='%1'/>", _image, _imageColor call BIS_fnc_colorRGBtoHTML], lineBreak, _text];
|
||||
[_text, 2] call FUNC(displayTextStructured);
|
||||
|
Loading…
Reference in New Issue
Block a user