Component:SpriteProvider: Difference between revisions

From Resonite Wiki
m ProbablePrime moved page SpriteProvider (Component) to Component:SpriteProvider: Creating component Namespace
Automated: update component fields
Line 16: Line 16:
== Usage ==
== Usage ==
{{Table ComponentFields
{{Table ComponentFields
|HighPriorityIntegation|Bool|
|HighPriorityIntegration|Bool|
|Texture|Texture2D|The sprite to provide.
|Texture|ITexture2D|The sprite to provide.
|Rect|Rect|The rectangle within the sprite to render. Note that the second x and y are actually the width and height of the Rect. The values are proportions of the width and height of the image in the Texture property.
|Rect|Rect|The rectangle within the sprite to render. Note that the second x and y are actually the width and height of the Rect. The values are proportions of the width and height of the image in the Texture property.
|Borders|Float4|
|Borders|Float4|
|Scale|Float|
|Scale|Float|
|FixedSize|Float|
}}
}}



Revision as of 03:26, 1 March 2024


This article or section is a Stub. You can help the Resonite Wiki by expanding it.


Component image 
SpriteProvider component as seen in the Scene Inspector


Intoduction

A SpriteProvider component provides a Sprite for an Image. This can be used to display graphics and produce backgrounds.

Usage

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.
HighPriorityIntegration Bool
Texture ITexture2D The sprite to provide.
Rect Rect The rectangle within the sprite to render. Note that the second x and y are actually the width and height of the Rect. The values are proportions of the width and height of the image in the Texture property.
Borders Float4
Scale Float
FixedSize Float

Behavior

Examples

ProbablePrime's video on Sprites

Related Components