Equipment Display Generator
API Documentation
EquipmentObject
This class represents an equipment object. It contains the following properties:
folderToProcess
: The folder that the script will parse and build objects from for the folder processing. This property is of typeUnityEngine.Object
.folderToSaveVariant
: Your project specific folder for the items that are generated to be saved too. This property is of typeUnityEngine.Object
.equipDisplayType
: This property is of typeEquipDisplayType
and represents the type of the equipment display.gearType
: This property is of typeGearType
and represents the type of the gear.socket
: This property is a string that represents the socket of the equipment.processThis
: This property is a boolean that determines if the process should be performed.
EquipmentDisplayGenerator
This class is a MonoBehaviour that generates equipment displays. It contains the following properties:
equipmentObject
: The list of equipment objects.femalefolderToProcess
: The folder that the script will parse and build objects from for the folder processing. The Prefabs must be named the same thing in the folders. This property is of typeUnityEngine.Object
and is hidden in the inspector.equipmentfolderToProcess
: The folder that the script will parse and build objects from for the folder processing. The Prefabs must be named the same thing in the folders. This property is of typeUnityEngine.Object
and is hidden in the inspector.socket
: This property is a string that represents the socket of the equipment.
Methods
ProcessFolder
: This method processes the folder. It takes an optionalparents
parameter, which is a boolean that determines if the process should be performed on the parents. If theparents
parameter is not specified, it defaults tofalse
.saveEquipmentDisplay
: This method saves the equipment display. It takes two parameters:objectToBuild
andobjectToAdd
, both of typeGameObject
.BuildDisplay
: This method builds a display. It takes four parameters:prefab
,nameSuffixString
,folderName
, andfolderToSaveTo
, all of typestring
. It returns aGameObject
.CreateEquipmentDisplay
: This method creates an equipment display. It takes five parameters:objectToBuild
,folderName
,folderSaverPath
,equipDisplayType
, andgearType
. It also has an optionalsaveit
parameter, which is a boolean that determines if the object should be saved. If thesaveit
parameter is not specified, it defaults totrue
. This method returns aGameObject
.