Fix variable name and header examples

This commit is contained in:
jonpas 2016-04-14 18:58:01 +02:00
parent 3abb3d321c
commit d90fc3dd06
2 changed files with 5 additions and 5 deletions

View File

@ -13,15 +13,15 @@
* Tag created <BOOL>
*
* Example:
* [positionASL, vectorDirAndUp, "black", object] call ace_tagging_fnc_createTag
* [positionASL, vectorDirAndUp, "z\ace\addons\tagging\UI\tags\black\0.paa", object] call ace_tagging_fnc_createTag
*
* Public: No
*/
#include "script_component.hpp"
params ["_tagPosASL", "_vectorDirAndUp", "_color", "_object", "_unit"];
TRACE_5("createTag:",_tagPosASL,_vectorDirAndUp,_color,_object,_unit);
params ["_tagPosASL", "_vectorDirAndUp", "_texture", "_object", "_unit"];
TRACE_5("createTag:",_tagPosASL,_vectorDirAndUp,_texture,_object,_unit);
if (_texture == "") exitWith {
ACE_LOGERROR_1("%1 is not a valid tag texture.",_texture);
@ -34,7 +34,7 @@ _tag setPosASL _tagPosASL;
_tag setVectorDirAndUp _vectorDirAndUp;
// Throw a global event for mision makers
["tagCreated", [_tag, _color, _object, _unit]] call EFUNC(common,globalEvent);
["tagCreated", [_tag, _texture, _object, _unit]] call EFUNC(common,globalEvent);
if (isNull _object) exitWith {true};

View File

@ -10,7 +10,7 @@
* Sucess <BOOL>
*
* Example:
* success = [player, "blue"] call ace_tagging_fnc_tag
* success = [player, "z\ace\addons\tagging\UI\tags\black\0.paa"] call ace_tagging_fnc_tag
*
* Public: Yes
*/