Edit

AimAssistCategory Class

Handle to an aim-assist category that exists in the world.aimAssist registry.

Properties

defaultBlockPriority

read-only defaultBlockPriority: number;

Default targeting priority used for block types not found in getBlockPriorities.

Type: number

Notes:

  • This property can throw errors when used.

defaultEntityPriority

read-only defaultEntityPriority: number;

Default targeting priority used for entity types not found in getEntityPriorities.

Type: number

Notes:

  • This property can throw errors when used.

identifier

read-only identifier: string;

The unique Id associated with the category.

Type: string

Methods

getBlockPriorities

getBlockPriorities(): Record<string, number>

Gets the priority settings used for block targeting.

Returns Record<string, number> - The record mapping block Ids to their priority settings. Larger numbers have greater priority.

Notes:

  • This function can throw errors.

getBlockTagPriorities

getBlockTagPriorities(): Record<string, number>

Gets the priority settings used for block targeting.

Returns Record<string, number> - The record mapping block tags to their priority settings. Larger numbers have greater priority.

Notes:

getEntityPriorities

getEntityPriorities(): Record<string, number>

Gets the priority settings used for entity targeting.

Returns Record<string, number> - The record mapping entity Ids to their priority settings. Larger numbers have greater priority.

Notes:

  • This function can throw errors.

getEntityTypeFamilyPriorities

getEntityTypeFamilyPriorities(): Record<string, number>

Gets the priority settings used for entity targeting.

Returns Record<string, number> - Map entity type families to their priority settings in a Record. Larger numbers have greater priority.

Notes: