Epoch/Sources/epoch_config/scripts/Door_open.sqf

10 lines
355 B
Plaintext
Raw Normal View History

2015-09-14 20:45:27 +00:00
// Open 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), 1];
(_this select 0) animate [(_this select 2), 1];
(_this select 0) animate [(_this select 3), 1];