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.

UnitConnectionStyles.cs 548B

12345678910111213141516171819
  1. using UnityEngine;
  2. namespace Unity.VisualScripting
  3. {
  4. public static class UnitConnectionStyles
  5. {
  6. public static readonly Color activeColor = new Color(0.37f, 0.66f, 0.95f);
  7. public static readonly Color highlightColor = new Color(1, 0.95f, 0f);
  8. public static readonly Color invalidColor = new Color(1, 0, 0);
  9. public static readonly Color disconnectColor = new Color(0.95f, 0.1f, 0.1f);
  10. public static readonly float minBend = 15;
  11. public static readonly float relativeBend = 1 / 4f;
  12. }
  13. }