IPivotPointRenderer.cs 273 B

12345678910111213
  1. #if UNITY_EDITOR
  2. using UnityEngine;
  3. namespace O3DWB
  4. {
  5. public interface IPivotPointRenderer
  6. {
  7. #region Interface Methods
  8. void Render(Vector3 pivotPoint, Color fillColor, Color borderLineColor, float sizeInPixels);
  9. #endregion
  10. }
  11. }
  12. #endif