ACE3/addons/ballistics/scripts/initTargetWall.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

14 lines
317 B
Plaintext

// by commy2
#include "..\script_component.hpp"
params ["_wall"];
if (local _wall) then {
private _paper = "UserTexture_1x2_F" createVehicle position _wall;
_paper attachTo [_wall, [0,-0.02,0.6]];
_paper setDir getDir _wall;
_paper setObjectTextureGlobal [0, QPATHTOF(textures\target_ca.paa)];
};