No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IDrawer.cs 602B

123456789101112131415
  1. using UnityEngine;
  2. namespace UnityEditor.U2D.Common.Path
  3. {
  4. internal interface IDrawer
  5. {
  6. void DrawCreatePointPreview(Vector3 position, Color color);
  7. void DrawPoint(Vector3 position, Color color);
  8. void DrawPointHovered(Vector3 position, Color color);
  9. void DrawPointSelected(Vector3 position, Color color);
  10. void DrawLine(Vector3 p1, Vector3 p2, float width, Color color);
  11. void DrawBezier(Vector3 p1, Vector3 p2, Vector3 p3, Vector3 p4, float width, Color color);
  12. void DrawTangent(Vector3 position, Vector3 tangent, Color color);
  13. }
  14. }