Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Sprite

Represents a Sprite object for use in 2D gameplay.
Read time 6 minutesLast updated 2 days ago

Definition

  • Type: Class
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
  • Inherits from: Object
public sealed class Sprite : Object

Remarks

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

Property

Description

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.
borderReturns the border sizes of the Sprite.
boundsBounds 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 pivot 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.

Methods

Method

Description

AddScriptableObjectAdds a reference to the sprite.
GetPhysicsShapeGets a physics shape from the Sprite by its index.
GetPhysicsShapeCountThe number of physics shapes for the Sprite.
GetPhysicsShapePointCountRetrieves the number of points in the selected physics shape for the sprite.
GetScriptableObjectsRetrieves an array of referenced by the sprite.
GetScriptableObjectsCountGets the number of that the sprite references.
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.
RemoveScriptableObjectAtRemoves the reference from the sprite.
SetScriptableObjectAtReplace the ScriptableObject reference from the sprite.

Static Methods

Method

Description

CreateCreate a new Sprite object.

Inheritance

Inherited Members

Operators

Operator

Description

operator ==Compares two object references to see if they refer to the same object.
boolDetermines whether the object exists.
operator !=Compares if two objects refer to a different object.