mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
da28aa3c64
* You can now carry sandbags * Different sandbag model during deployment (no geometry) * Deploying sandbags now requires an appropriate surface * Proper PhysX activation chain when you deploy/pickup sandbags * Sandbags are now destructible * Some stringtable fixes
15 lines
200 B
Plaintext
15 lines
200 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(canDeploy);
|
|
PREP(carry);
|
|
PREP(deploy);
|
|
PREP(deployCancel);
|
|
PREP(deployConfirm);
|
|
PREP(drop);
|
|
PREP(handleScrollWheel);
|
|
PREP(pickup);
|
|
|
|
ADDON = true;
|