GetBipedIconPath

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns the DDS file path to the specified biped icon for the specified object or calling reference. Added by NVSE 4.1.

Syntax

[help]
(Path:string) reference.GetBipedIconPath BipedPathCode:int Object:form

Example

string_var male_biped_icon_path

let male_biped_icon_path := GetBipedIconPath 0, ArmorLeather

; male_biped_icon_path == "Interface\Icons\PipboyImages\Apparel\appearal_leather_armor.dds"

Biped Path Codes

Specifies icon/model paths associated with biped objects, such as armor

  • 0: Male Biped Path
  • 1: Female Biped Path
  • 2: Male Ground Path
  • 3: Female Ground Path

See Also