Component:BinaryExportable

From Resonite Wiki
Revision as of 17:40, 13 November 2024 by 989onan (talk | contribs) (add related)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Component image 
Binary Exportable component as seen in the Scene Inspector

The BinaryExportable component takes in a Binary asset and allows the Slot to be exportable as a binary file on your device.

This is more of an uncommon way to export your files, but there are a couple of uses that are useful to know.

To export using this component, look at the file browser export section.

Fields

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.
Binary Binary The binary to be exported.

Usage

Using this component with the StaticBinary component, allows the user to export a binary file with a provided url.

Keep in mind that exporting a binary file is one-way currently in Resonite (especially if you are thinking about local storage), this is due to the fact that Resonite uses the .bin as files that it does not recognize. So importing from a binary raw file is not doable.

This component is used mainly to add an export option to the user's context menu as they are holding an item. Which can be used to easily communicate to the user that an item is made for exporting to their local machine. For example, screenshots, figurines, pictures, recorded audio clips, some generated text from protoflux, and Avatars can have Asset exportables like this component to signify that they can be downloaded to one's local storage.

Examples

This component is used as a key component within raw file objects. Which are generated when a user chooses "Raw File" when importing any item.

See Also