mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
50578a2463
* Fix Multiple Issues With Timestamps * simplify * improve parsing of timestamps Co-authored-by: PabstMirror <pabstmirror@gmail.com>
21 lines
390 B
Plaintext
21 lines
390 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Freddo, commy2
|
|
* When the timestamp checkbox is toggled.
|
|
*
|
|
* Arguments:
|
|
* 0: Checkbox <CONTROL>
|
|
* 1: Value <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [controlNull, 1] call ACE_markers_fnc_onCheckedChangedTimestamp;
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["", "_checked"];
|
|
|
|
uiNamespace setVariable [QGVAR(timestampChecked), _checked == 1]
|