fix formatting |
989onan bot (talk | contribs) Automated: update Fields |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
|Name=File System Item | |Name=File System Item | ||
}} | }} | ||
The '''FileSystemItem''' component is a type of [[Type:BrowserItem]] used for system files or inventory items being viewed on the [[Dash Menu|dash menu]]. | |||
== Fields == | == Fields == | ||
{{Table ComponentFields | {{Table ComponentFields | ||
|Browser|{{RootFieldType|RelayRef`1|[[Type:BrowserDialog|BrowserDialog]]}}|TypeAdv0=true| | |Browser|{{RootFieldType|RelayRef`1|[[Type:BrowserDialog|BrowserDialog]]}}|TypeAdv0=true| The source browser this item came from. | ||
|SelectedColor|ColorX| | |SelectedColor|ColorX| The color this item's background should be when selected. | ||
|SelectedText|ColorX| | |SelectedText|ColorX| The color this item's text should be when selected. | ||
|NormalColor|ColorX| | |NormalColor|ColorX| The color this item's background should be at rest state | ||
|NormalText|ColorX| | |NormalText|ColorX| The color this item's text would be at rest state. | ||
|Name|String| | |Name|String|The name of the | ||
|BasePath|String| | |BasePath|String|The base directory of the item. | ||
|Type|'''[[#EntryType|EntryType]]'''|TypeAdv7=true| | |Type|'''[[#EntryType|FileSystemItem.EntryType]]'''|TypeAdv7=true| Whether if this is a file or folder. | ||
}} | }} | ||
== EntryType == | == EntryType == | ||
{{Table EnumValues | {{Table EnumValues | ||
|File|0| This entry refers to a file. | |||
|Directory|1| This entry refers to a folder. | |||
}} | }} | ||
== Usage == | == Usage == | ||
Used internally by the inventory and file system menus. Not used by the user. | |||
== Examples == | == Examples == | ||
[[Dash menu]] Inventory and file system screen file and folder items. | |||
== See Also == | == See Also == | ||
Line 30: | Line 34: | ||
[[Category:Components{{#translation:}}|File System Item]] | [[Category:Components{{#translation:}}|File System Item]] | ||
[[Category:Components With Nested Enums{{#translation:}}|File System Item]] | [[Category:Components With Nested Enums{{#translation:}}|File System Item]] | ||
Latest revision as of 06:02, 17 March 2025
Component image 
File System Item component as seen in the Scene Inspector

The FileSystemItem component is a type of Type:BrowserItem used for system files or inventory items being viewed on the dash menu.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't. |
Browser
|
direct RelayRef`1<BrowserDialog> | The source browser this item came from. |
SelectedColor
|
ColorX | The color this item's background should be when selected. |
SelectedText
|
ColorX | The color this item's text should be when selected. |
NormalColor
|
ColorX | The color this item's background should be at rest state |
NormalText
|
ColorX | The color this item's text would be at rest state. |
Name
|
String | The name of the |
BasePath
|
String | The base directory of the item. |
Type
|
FileSystemItem.EntryType | Whether if this is a file or folder. |
EntryType
Name | Value | Description |
---|---|---|
File
|
0 | This entry refers to a file. |
Directory
|
1 | This entry refers to a folder. |
Usage
Used internally by the inventory and file system menus. Not used by the user.
Examples
Dash menu Inventory and file system screen file and folder items.