Click or drag to resize

Line2DLineTextureMode Enumeration

[Missing <summary> documentation for "T:Godot.Line2D.LineTextureMode"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum LineTextureMode
Members
  Member nameValueDescription
None0

Takes the left pixels of the texture and renders it over the whole line.

Tile1

Tiles the texture over the line. The texture must be imported with Repeat enabled for it to work properly.

Stretch2

Stretches the texture across the line. Import the texture with Repeat disabled for best results.

See Also