2D sprite node in 3D environment. A node that displays 2D texture information in a 3D environment. See also [Sprite3D] where many other properties are defined. Returns a [TriangleMesh] with the sprite's vertices following its current configuration (such as its [member axis] and [member pixel_size]). Returns the value of the specified flag. Returns the rectangle representing this sprite. If [code]true[/code], the specified flag will be enabled. See [enum SpriteBase3D.DrawFlags] for a list of flags. The alpha cutting mode to use for the sprite. See [enum AlphaCutMode] for possible values. The direction in which the front of the texture faces. The billboard mode to use for the sprite. See [enum BaseMaterial3D.BillboardMode] for possible values. If [code]true[/code], texture will be centered. If [code]true[/code], texture can be seen from the back as well, if [code]false[/code], it is invisible when looking at it from behind. If [code]true[/code], the label is rendered at the same size regardless of distance. If [code]true[/code], texture is flipped horizontally. If [code]true[/code], texture is flipped vertically. A color value used to [i]multiply[/i] the texture's colors. Can be used for mood-coloring or to simulate the color of light. [b]Note:[/b] If a [member GeometryInstance3D.material_override] is defined on the [SpriteBase3D], the material override must be configured to take vertex colors into account for albedo. Otherwise, the color defined in [member modulate] will be ignored. For a [BaseMaterial3D], [member BaseMaterial3D.vertex_color_use_as_albedo] must be [code]true[/code]. For a [ShaderMaterial], [code]ALBEDO *= COLOR.rgb;[/code] must be inserted in the shader's [code]fragment()[/code] function. If [code]true[/code], depth testing is disabled and the object will be drawn in render order. The texture's drawing offset. The size of one pixel's width on the sprite to scale it in 3D. Sets the render priority for the sprite. Higher priority objects will be sorted in front of lower priority objects. [b]Note:[/b] This only applies if [member alpha_cut] is set to [constant ALPHA_CUT_DISABLED] (default value). [b]Note:[/b] This only applies to sorting of transparent objects. This will not impact how transparent objects are sorted relative to opaque objects. This is because opaque objects are not sorted, while transparent objects are sorted from back to front (subject to priority). If [code]true[/code], the [Light3D] in the [Environment] has effects on the sprite. Filter flags for the texture. See [enum BaseMaterial3D.TextureFilter] for options. If [code]true[/code], the texture's transparency and the opacity are used to make those parts of the sprite invisible. If set, the texture's transparency and the opacity are used to make those parts of the sprite invisible. If set, lights in the environment affect the sprite. If set, texture can be seen from the back as well. If not, the texture is invisible when looking at it from behind. Disables the depth test, so this object is drawn on top of all others. However, objects drawn after it in the draw order may cover it. Label is scaled by depth so that it always appears the same size on screen. Represents the size of the [enum DrawFlags] enum. This mode performs standard alpha blending. It can display translucent areas, but transparency sorting issues may be visible when multiple transparent materials are overlapping. This mode only allows fully transparent or fully opaque pixels. Harsh edges will be visible unless some form of screen-space antialiasing is enabled (see [member ProjectSettings.rendering/anti_aliasing/quality/screen_space_aa]). On the bright side, this mode doesn't suffer from transparency sorting issues when multiple transparent materials are overlapping. This mode is also known as [i]alpha testing[/i] or [i]1-bit transparency[/i]. This mode draws fully opaque pixels in the depth prepass. This is slower than [constant ALPHA_CUT_DISABLED] or [constant ALPHA_CUT_DISCARD], but it allows displaying translucent areas and smooth edges while using proper sorting.