SpritePreviewAttribute
The SpritePreviewAttribute
is a custom attribute that enables the direct display of a sprite in the Unity Inspector. This feature allows you to visually preview the sprite assigned to a variable without needing open additional windows.
Requirements
None: This attribute can be used with any
Sprite
variable without any additional setup.
Usage Examples
[SerializeField, SpritePreview]
private Sprite _yourVariable;
Inspector Preview
When applying the
SpritePreviewAttribute
, the Unity Inspector will automatically render a preview of the selected sprite directly beneath the associated variable. This provides a quick and convenient way to view the sprite's appearance within the Inspector, streamlining the development process.

Last updated