mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
10 lines
356 B
Plaintext
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]; |