mirror of
https://github.com/Ghostrider-DbD-/GMS_RC.git
synced 2024-08-30 16:02:11 +00:00
25 lines
718 B
Plaintext
25 lines
718 B
Plaintext
/*
|
|
GMS_fnc_spawnSimpleObjects
|
|
|
|
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"
|
|
|
|
params["_center","_objects","_relative"];
|
|
private _spawnedObjects = [];
|
|
{
|
|
_x params["_className","_relPos","_dir","_booleans"];
|
|
private _objPos = _center vectorAdd _relPos;
|
|
private _obj = createSimpleObject [_className,ATLToASL _objPos];
|
|
_obj setDir _dir;
|
|
_obj setVectorUp [0,0,1];
|
|
_spawnedObjects pushBack _obj;
|
|
} forEach _objects;
|
|
_spawnedObjects |