Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }