mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Updated function headers
This commit is contained in:
parent
df884dc4bc
commit
8b45d0aa17
@ -1,7 +1,7 @@
|
|||||||
#include "..\script_component.hpp"
|
#include "..\script_component.hpp"
|
||||||
/*
|
/*
|
||||||
* Author: Lambda.Tiger
|
* Author: Lambda.Tiger
|
||||||
* Clears all dev spheres and traces
|
* Clears all dev spheres and traces.
|
||||||
*
|
*
|
||||||
* Arguments:
|
* Arguments:
|
||||||
* None
|
* None
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
* use hit-point locations.
|
* use hit-point locations.
|
||||||
*
|
*
|
||||||
* Arguments:
|
* Arguments:
|
||||||
* 0: Object to draw the hit box of <OBJECT>
|
* 0: Object that should have it's hit box drawn. <OBJECT>
|
||||||
* 1: Add sphere at object origin <BOOL>
|
* 1: Add sphere at object origin. <BOOL> (Default: true)
|
||||||
*
|
*
|
||||||
* Return Value:
|
* Return Value:
|
||||||
* None
|
* None
|
||||||
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* Public: No
|
* Public: No
|
||||||
*/
|
*/
|
||||||
|
|
||||||
params [
|
params [
|
||||||
["_object", objNull, [objNull]],
|
["_object", objNull, [objNull]],
|
||||||
["_addSphere", true, [true]]
|
["_addSphere", true, [true]]
|
||||||
|
@ -5,15 +5,14 @@
|
|||||||
* ammo type.
|
* ammo type.
|
||||||
*
|
*
|
||||||
* Arguments:
|
* Arguments:
|
||||||
* 0: _ammo <STRING> - cfgAmmo type of ammo to check
|
* 0: _ammo <STRING> - CfgAmmo type of ammo to check.
|
||||||
*
|
*
|
||||||
* Return Value:
|
* Return Value:
|
||||||
* _ammoInfo <ARRAY>
|
* _ammoInfo <ARRAY>
|
||||||
* 0: _fragRange - search range for fragments <SCALAR>
|
* 0: _fragRange - search range for fragments. <NUMBER>
|
||||||
* 1: _fragVel - gurney equation calculated velocity <SCALAR>
|
* 1: _fragVel - gurney equation calculated velocity. <NUMBER>
|
||||||
* 2: _fragTypes - array of fragment types <ARRAY>
|
* 2: _fragTypes - array of fragment types. <ARRAY>
|
||||||
* 3: _fragCount - modified frag count used under assumptions
|
* 3: _fragCount - modified frag count used under assumptions of spherical fragmentation. <NUMBER>
|
||||||
* of spherical fragmentation <SCALAR>
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* ["B_556x45_Ball"] call ace_frag_fnc_getFragInfo;
|
* ["B_556x45_Ball"] call ace_frag_fnc_getFragInfo;
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
* ammo type.
|
* ammo type.
|
||||||
*
|
*
|
||||||
* Arguments:
|
* Arguments:
|
||||||
* 0: _ammo <STRING> - cfgAmmo type of ammo to check
|
* 0: _ammo <STRING> - CfgAmmo type of ammo to check
|
||||||
*
|
*
|
||||||
* Return Value:
|
* Return Value:
|
||||||
* _ammoInfo <ARRAY>
|
* _ammoInfo <ARRAY>
|
||||||
* 0: _caliber - search range for fragments <SCALAR>
|
* 0: _caliber - search range for fragments <NUMBER>
|
||||||
* 1: _explosive - whether the round is explosive or not <SCALAR>
|
* 1: _explosive - whether the round is explosive or not <NUMBER>
|
||||||
* 2: _indirectHitRange - Indirect hit damage <SCALAR>
|
* 2: _indirectHitRange - Indirect hit damage <NUMBER>
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* ["B_556x45_Ball"] call ace_frag_fnc_getSpallInfo;
|
* ["B_556x45_Ball"] call ace_frag_fnc_getSpallInfo;
|
||||||
|
Loading…
Reference in New Issue
Block a user