Version: 2022.3
LanguageEnglish
  • C#

Sprite

class in UnityEngine

/

Inherits from:Object

/

Implemented in:UnityEngine.CoreModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Represents a Sprite object for use in 2D gameplay.

Sprites are 2D graphic objects used for characters, props, projectiles and other elements of 2D gameplay. The graphics are obtained from bitmap images - Texture2D. The Sprite class primarily identifies the section of the image that should be used for a specific Sprite. This information can then be used by a SpriteRenderer component on a GameObject to actually display the graphic.

Additional resources: SpriteRenderer class.

Properties

associatedAlphaSplitTextureReturns the Texture that contains the alpha channel from the source Texture. Unity generates this Texture under the hood for Sprites that have alpha in the source, and need to be compressed using techniques like ETC1.Returns NULL if there is no associated alpha Texture for the source Sprite. This is the case if the Sprite has not been setup to use ETC1 compression.
borderReturns the border sizes of the Sprite.
bounds Bounds of the Sprite, specified by its center and extents in world space units.
packedReturns true if this Sprite is packed in an atlas.
packingModeIf Sprite is packed (see Sprite.packed), returns its SpritePackingMode.
packingRotationIf Sprite is packed (see Sprite.packed), returns its SpritePackingRotation.
pivotLocation of the Sprite's center point in the Rect on the original Texture, specified in pixels.
pixelsPerUnitThe number of pixels in the Sprite that correspond to one unit in world space. (Read Only)
rectLocation of the Sprite on the original Texture, specified in pixels.
spriteAtlasTextureScaleThe Variant scale of Texture used by the Sprite. This is useful to check when a Variant SpriteAtlas is being used by Sprites.
textureGet the reference to the used Texture. If packed this will point to the atlas, if not packed will point to the source Sprite.
textureRectGet the rectangle this Sprite uses on its Texture. Raises an exception if this Sprite is tightly packed in an atlas.
textureRectOffsetGets the offset of the rectangle this Sprite uses on its Texture to the original Sprite bounds. If Sprite mesh type is FullRect, offset is zero.
trianglesReturns a copy of the array containing Sprite mesh triangles.
uvThe base Texture coordinates of the Sprite mesh.
verticesReturns a copy of the array containing Sprite mesh vertex positions.

Public Methods

GetPhysicsShapeGets a physics shape from the Sprite by its index.
GetPhysicsShapeCountThe number of physics shapes for the Sprite.
GetPhysicsShapePointCountThe number of points in the selected physics shape for the Sprite.
GetSecondaryTextureCountGets the number of Secondary Textures that the Sprite is using.
GetSecondaryTexturesRetrieves an array of SecondarySpriteTexture used by the Sprite.
OverrideGeometrySets up new Sprite geometry.
OverridePhysicsShapeSets up a new Sprite physics shape.

Static Methods

CreateCreate a new Sprite object.

Inherited Members

Properties

hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
nameThe name of the object.

Public Methods

GetInstanceIDGets the instance ID of the object.
ToStringReturns the name of the object.

Static Methods

DestroyRemoves a GameObject, component or asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
FindAnyObjectByTypeRetrieves any active loaded object of Type type.
FindFirstObjectByTypeRetrieves the first active loaded object of Type type.
FindObjectOfTypeReturns the first active loaded object of Type type.
FindObjectsByTypeRetrieves a list of all loaded objects of Type type.
FindObjectsOfTypeGets a list of all loaded objects of Type type.
InstantiateClones the object original and returns the clone.
InstantiateAsyncCaptures a snapshot of the original object (that must be related to some GameObject) and returns the AsyncInstantiateOperation.

Operators

boolDoes the object exist?
operator !=Compares if two objects refer to a different object.
operator ==Compares two object references to see if they refer to the same object.