Difference between revisions of "AddSlotToMask - Armor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Fg109
(Created page for AddSlotToMask)
 
imported>Egocarib
m (suggested slot mask usage)
 
(2 intermediate revisions by one other user not shown)
Line 20: Line 20:
<source lang="papyrus">
<source lang="papyrus">
; Adds the equip slot for forearms to the armor
; Adds the equip slot for forearms to the armor
ArmorProperty.AddSlotMask(16)
ArmorProperty.AddSlotToMask(16)
</source>
</source>


Line 28: Line 28:
*[[SetSlotMask - Armor]]
*[[SetSlotMask - Armor]]
*[[RemoveSlotFromMask - Armor]]
*[[RemoveSlotFromMask - Armor]]
*[[GetMaskForSlot- Armor]]
*[[GetMaskForSlot - Armor]]
*[[GetWornForm - Actor]]
*[[GetWornForm - Actor]]
*[[Slot Masks - Armor|List of Slot Masks]]
*[[Slot Masks - Armor|List of Slot Masks]]
*[[Biped_Object|Suggested Slot Mask Usage]]

Latest revision as of 20:02, 1 December 2013

SKSE Member of: Armor Script

Adds the specified slot mask to the armor and returns the new slot mask for the armor. (This function requires SKSE)

Syntax[edit | edit source]

int Function AddSlotToMask(int slotMask) native

Parameters[edit | edit source]

Return Value[edit | edit source]

Examples[edit | edit source]

; Adds the equip slot for forearms to the armor
ArmorProperty.AddSlotToMask(16)

See Also[edit | edit source]