14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
@startuml
|
|
class FolderIconSettings {
|
|
+ showOverlay : bool = true
|
|
+ showCustomFolder : bool = true
|
|
}
|
|
class FolderIcon {
|
|
}
|
|
ScriptableObject <|-- FolderIconSettings
|
|
FolderIconSettings +-- FolderIcon
|
|
FolderIcon --> "folder" DefaultAsset
|
|
FolderIcon --> "folderIcon" Texture2D
|
|
FolderIcon --> "overlayIcon" Texture2D
|
|
@enduml
|