- Found in:
- SKSE
Description
Wiki Description
Returns the file path for the nif file representing the equipped model of the armor. (This function requires SKSE)
Documentation Comment
returns the model path of the particular model
Caveats
CK Wiki - Notes
- This is to retrieve the nif file of the equipped model on an actor. Use Armor.GetModelPath(...) to retrieve the nif file of the armor as it appears on the ground.
- Remember that this function returns string values from ArmorAddon objects, not from Armor objects. You can use Armor.GetNthArmorAddon(...) on Armor objects to quickly retrieve ArmorAddon objects, however.
Parameters
boolfirstPerson
CK Wiki Description
Whether to get the file path of the biped armor model (false) or first person armor model (true). "True" only applicable to certain armor types.
boolfemale
CK Wiki Description
Whether to get the file path of the male armor model (false) or female armor model (true).
Examples
No human-generated examples found for this function.
Auto-Generated Example
bool myBool__firstPerson
bool myBool__female
string returnedValue = myArmorAddon__toCallFunctionOn.GetModelPath(myBool__firstPerson, myBool__female)Related Pages
- ArmorAddon
- ArmorAddon.SetModelPath(...)
- Armor.GetNthArmorAddon(...)
