# make_hitbox
make_hitbox(_attack_name, _index, (value_name, value)... )
Source (opens new window)
Configure a hitbox from a series of keys and values.
// Without Assistant
set_hitbox_value(AT_BAIR, 1, HG_PARENT_HITBOX, 1)
set_hitbox_value(AT_BAIR, 1, HG_HITBOX_TYPE, 1)
// With Assistant
make_hitbox(AT_BAIR, 1,
HG_PARENT_HITBOX, 1,
HG_HITBOX_TYPE, 1
)
Parameters:
_attack_name
: The attack index (opens new window) to be configured._index
: (int) The index of the hitbox to configure.- Any number of pairs of:
value_name
: An hitbox grid index (opens new window) to set.value
: The value to set to the paired hitbox grid index.
See Also
- make_attack: Configure an attack.
- make_window: Configure a window.