Class CustomizationData
Data about a customization. This is the main object used for customizations.
Inheritance
Object
CustomizationData
Assembly: cs.temp.dll.dll
Syntax
public class CustomizationData : ScriptableObject
Properties
CanBeTinted
Whether the customization should be able to change color or not.
Declaration
public bool CanBeTinted { get; }
Property Value
CanDetailsBeTinted
Whether the customization detail should be able to change color or not.
Declaration
public bool CanDetailsBeTinted { get; }
Property Value
Category
Data about a customization. This is the main object used for customizations.
Declaration
public CustomizationCategory Category { get; }
Property Value
LocationsToHide
Customizations in locations that should be hidden when customization is added to character.
Declaration
public CustomizationLocation[] LocationsToHide { get; }
Property Value
SlotPriority
Data about a customization. This is the main object used for customizations.
Declaration
public int SlotPriority { get; }
Property Value
SpriteSets
Data about a customization. This is the main object used for customizations.
Declaration
public CustomizationSpriteSet[] SpriteSets { get; }
Property Value
UseMainColorForDetail
Whether the detail should use the main color.
Declaration
public bool UseMainColorForDetail { get; }
Property Value
Methods
ContainSprite(Sprite)
Whether the customization has a sprite in any of the SpriteSets or DetailSpriteSets.
Declaration
public bool ContainSprite(Sprite sprite)
Parameters
Type |
Name |
Description |
Sprite |
sprite |
|
Returns
GetDetailSpriteCount()
Returns the amount of detail sprites the customization has. Note that this is not the total of all spritesets combined, but the largest one found.
Declaration
public int GetDetailSpriteCount()
Returns
GetLocations()
Returns all the locations in this customization.
Declaration
public List<CustomizationLocation> GetLocations()
Returns
HasDetailSpriteAtIndex(Int32)
Returns whether any sprite is references at index or not.
Declaration
public bool HasDetailSpriteAtIndex(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Returns
HasDetailSprites()
Returns whether the customization has any detail sprites or not.
Declaration
public bool HasDetailSprites()
Returns