Difference between revisions of "ArmorAddon Script"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>PurpleLunchbox
 
imported>CraftySentinel
m (→‎SKSE Member Functions: Formatting Change)
Line 22: Line 22:
== Member Functions ==
== Member Functions ==
None
None
{|class="wikitable" width =100%
!style="text-align:left;"|Function
!style="text-align:left;"|Description
|-
|}


== SKSE Member Functions ==
== SKSE Member Functions ==


'''string Function [[GetModelPath - ArmorAddon|GetModelPath]](bool firstPerson, bool female)'''
{|class="wikitable" width =100%
*Returns the model path of this ArmorAddon.
!style="text-align:left;"|Function
!style="text-align:left;"|Description
|-
|[[GetModelPath - ArmorAddon|String '''GetModelPath'''(Bool ''firstPerson'', Bool ''female'')]]
|Returns the model path of this ArmorAddon.
|-
 
|[[SetModelPath - ArmorAddon|'''SetModelPath'''(String ''path'', Bool ''firstPerson'', Bool ''female'')]]
|Sets the model path of this ArmorAddon.
|-


'''Function [[SetModelPath - ArmorAddon|SetModelPath]](string path, bool firstPerson, bool female)'''
|[[GetModelNumTextureSets - ArmorAddon|Int '''GetModelNumTextureSets'''(Bool ''firstPerson'', Bool ''female'')]]
*Sets the model path of this ArmorAddon.
|Returns the number of TextureSets for this ArmorAddon.
|-


'''int Function [[GetModelNumTextureSets - ArmorAddon|GetModelNumTextureSets]](bool firstPerson, bool female)'''
|[[GetModelNthTextureSet - ArmorAddon|TextureSet '''GetModelNthTextureSet'''(Int ''n'', Bool ''firstPerson'', Bool ''female'')]]
*Returns the number of TextureSets for this ArmorAddon.
|Returns Nth TextureSet for this ArmorAddon.
|-


'''TextureSet Function [[GetModelNthTextureSet - ArmorAddon|GetModelNthTextureSet]](int n, bool firstPerson, bool female)'''
|[[SetModelNthTextureSet - ArmorAddon|'''SetModelNthTextureSet'''(TextureSet ''texture'', Int ''n'', Bool ''firstPerson'', Bool ''female'')]]
*Returns Nth TextureSet for this ArmorAddon.
|Sets the Nth TextureSet for this ArmorAddon.
|-


'''Function [[SetModelNthTextureSet - ArmorAddon|SetModelNthTextureSet]](TextureSet texture, int n, bool firstPerson, bool female)'''
|[[GetNumAdditionalRaces - ArmorAddon|Int '''GetNumAdditionalRaces'''()]]
*Sets the Nth TextureSet for this ArmorAddon.
|Returns the number of races this ArmorAddon applies to.
|-


'''int Function [[GetNumAdditionalRaces - ArmorAddon|GetNumAdditionalRaces]]()'''
|[[GetNthAdditionalRace - ArmorAddon|Race '''GetNthAdditionalRace'''(Int ''n'')]]
*Returns the number of races this ArmorAddon applies to.
|Returns the Nth race this ArmorAddon applies to.
|-


'''Race Function [[GetNthAdditionalRace - ArmorAddon|GetNthAdditionalRace]](int n)'''
|}
*Returns the Nth race this ArmorAddon applies to.


== Events ==
== Events ==
None
None

Revision as of 04:48, 24 October 2013


Extends: Form Script

Script for the manipulation of ArmorAddon base objects. (This type requires SKSE)

Definition

ScriptName ArmorAddon extends Form

Properties

None

Global Functions

None

Member Functions

None

Function Description

SKSE Member Functions

Function Description
String GetModelPath(Bool firstPerson, Bool female) Returns the model path of this ArmorAddon.
SetModelPath(String path, Bool firstPerson, Bool female) Sets the model path of this ArmorAddon.
Int GetModelNumTextureSets(Bool firstPerson, Bool female) Returns the number of TextureSets for this ArmorAddon.
TextureSet GetModelNthTextureSet(Int n, Bool firstPerson, Bool female) Returns Nth TextureSet for this ArmorAddon.
SetModelNthTextureSet(TextureSet texture, Int n, Bool firstPerson, Bool female) Sets the Nth TextureSet for this ArmorAddon.
Int GetNumAdditionalRaces() Returns the number of races this ArmorAddon applies to.
Race GetNthAdditionalRace(Int n) Returns the Nth race this ArmorAddon applies to.

Events

None