mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-08 23:29:52 +00:00
* Make action button target datum * Initial working action palette * Action related refactors * tgstation/tgstation/pull/71339
18 lines
542 B
Plaintext
18 lines
542 B
Plaintext
#define AB_CHECK_RESTRAINED 1
|
|
#define AB_CHECK_STUNNED 2
|
|
#define AB_CHECK_LYING 4
|
|
#define AB_CHECK_CONSCIOUS 8
|
|
|
|
///Action button triggered with right click
|
|
#define TRIGGER_SECONDARY_ACTION (1<<0)
|
|
///Action triggered to ignore any availability checks
|
|
#define TRIGGER_FORCE_AVAILABLE (1<<1)
|
|
|
|
#define ACTION_BUTTON_DEFAULT_BACKGROUND "_use_ui_default_background"
|
|
|
|
#define UPDATE_BUTTON_NAME (1<<0)
|
|
#define UPDATE_BUTTON_ICON (1<<1)
|
|
#define UPDATE_BUTTON_BACKGROUND (1<<2)
|
|
#define UPDATE_BUTTON_OVERLAY (1<<3)
|
|
#define UPDATE_BUTTON_STATUS (1<<4)
|