mirror of
https://github.com/Ghostrider-DbD-/GMS_RC.git
synced 2024-08-30 16:02:11 +00:00
27 lines
704 B
Plaintext
27 lines
704 B
Plaintext
/*
|
|
GMS_fnc_restoreHiddenObjects
|
|
|
|
By Ghostrider [GRG]
|
|
Copyright 2016
|
|
--------------------------
|
|
License
|
|
--------------------------
|
|
All the code and information provided here is provided under an Attribution Non-Commercial ShareAlike 4.0 Commons License.
|
|
|
|
http://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
*/
|
|
#include "\GMS\Compiles\Init\GMS_defines.hpp"
|
|
|
|
|
|
for "_i" from 1 to (count GMS_hiddenTerrainObjects) do
|
|
{
|
|
if (_i > (count GMS_hiddenTerrainObjects)) exitWith {};
|
|
private _el = GMS_hiddenTerrainObjects deleteAt 0;
|
|
_el params["_obj","_timeout"];
|
|
if (diag_tickTime > _timeOut) then
|
|
{
|
|
{_x hideObjectGlobal false} forEach _obj;
|
|
} else {
|
|
GMS_hiddenTerrainObjects pushBack _el;
|
|
};
|
|
}; |