mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed allowed data types
This commit is contained in:
parent
4a5d6cade1
commit
b787286837
@ -21,11 +21,11 @@
|
||||
|
||||
private ["_currentSlideshow", "_slidesAction", "_varString"];
|
||||
params [
|
||||
["_objects", [], []],
|
||||
["_controllers", [], []],
|
||||
["_images", [], []],
|
||||
["_names", [], []],
|
||||
["_duration", 0, 0]
|
||||
["_objects", [], [[]] ],
|
||||
["_controllers", [], [[]] ],
|
||||
["_images", [], [[]] ],
|
||||
["_names", [], [[]] ],
|
||||
["_duration", 0, [0]]
|
||||
];
|
||||
|
||||
// Verify data
|
||||
|
@ -39,4 +39,4 @@ _duration = _logic getVariable ["Duration", 0];
|
||||
// Prepare with actions
|
||||
[_objects, _controllers, _images, _names, _duration] call FUNC(createSlideshow);
|
||||
|
||||
ACE_LOGINFO_2("Slideshow Module Initialized for: %1 with Duration: %2", _objects, _duration);
|
||||
ACE_LOGINFO_1("Slideshow Module Initialized on %1 Objects", count _objects);
|
||||
|
Loading…
Reference in New Issue
Block a user