Line2DNode(start, end, thickness, color, opacity, outline, layer)
      Draws a line from `start` to `end`. Changing `position` (the midpoint of the line) automaticaly translates `end` and `start`
Parameters:
      start [value: Vector2, type: Vector2]
      end [value: Vector2, type: Vector2]
      thickness [value: any, type: float]
      color [value: color, type: Color|int (RGB565)]
      opacity [value: 0 ~ 1.0, type: float]
      outline [value: True or False, type: bool]
      layer [value: 0 ~ 127, type: int]
Attributes:
      add_child(child) [returns: None]
      get_child(index) [returns: Node]
      get_child_count() [returns: 0 or positive integer]
      mark_destroy() [returns: None]
      mark_destroy_all() [returns: None]
      mark_destroy_children() [returns: None]
      remove_child(child) [returns: None]
      tick(self, dt) [returns: None]
      start [value: Vector2, type: Vector2]
      end [value: Vector2, type: Vector2]
      position [value: Vector2, type: Vector2]
      global_position [value: Vector2 (read-only), type: Vector2]
      thickness [value: any, type: float]
      color [value: color, type: Color|int (RGB565)]
      opacity [value: 0 ~ 1.0, type: float]
      outline [value: True or False, type: bool]
      layer [value: 0 ~ 127, type: int]
Overrides:
      tick(self, dt) [returns: None] [value: function, type: function]

file: src/nodes/2D/line_2d_node.c

landing