This commit is contained in:
Aria 2025-03-21 22:23:30 +11:00
commit 9c94d113d3
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10260 changed files with 1237388 additions and 0 deletions

View file

@ -0,0 +1,43 @@
The activeItemAnimation table contains bindings available to client-side animation scripts for active items.
---
#### `Vec2F` activeItemAnimation.ownerPosition()
Returns the current entity position of the item's owner.
---
#### `Vec2F` activeItemAnimation.ownerAimPosition()
Returns the current world aim position of the item's owner.
---
#### `float` activeItemAnimation.ownerArmAngle()
Returns the current angle of the arm holding the item.
---
#### `int` activeItemAnimation.ownerFacingDirection()
Returns the current facing direction of the item's owner. Will return 1 for right or -1 for left.
---
#### `Vec2F` activeItemAnimation.handPosition([`Vec2F` offset])
Takes an input position (defaults to [0, 0]) relative to the item and returns a position relative to the owner entity.
---
#### `Vec2F` activeItemAnimation.partPoint(`String` partName, `String` propertyName)
Returns a transformation of the specified `Vec2F` parameter configured on the specified animation part, relative to the owner's position.
---
#### `PolyF` activeItemAnimation.partPoly(`String` partName, `String` propertyName)
Returns a transformation of the specified `PolyF` parameter configured on the specified animation part, relative to the owner's position.