Epoch/Sources/epoch_config/scripts/Door_close.sqf
2015-09-14 15:45:27 -05:00

10 lines
356 B
Plaintext

// Close a door with an animated doorhandle.
// _this select 0 object pointer
// _this select 1 door animation
// _this select 2 doorhandle up->down animation
// _this select 3 doorhandle down->up animation
(_this select 0) animate [(_this select 1), 0];
(_this select 0) animate [(_this select 2), 0];
(_this select 0) animate [(_this select 3), 0];