TMP_SelectionCaret.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. namespace TMPro
  4. {
  5. /// <summary>
  6. /// A simple component that can be added to a newly created object where inheriting from MaskableGraphic is needed.
  7. /// </summary>
  8. public class TMP_SelectionCaret : MaskableGraphic
  9. {
  10. /// <summary>
  11. /// Override to Cull function of MaskableGraphic to prevent Culling.
  12. /// </summary>
  13. /// <param name="clipRect"></param>
  14. /// <param name="validRect"></param>
  15. public override void Cull(Rect clipRect, bool validRect)
  16. {
  17. //Debug.Log("***** Cull (" + clipRect + ") Valid Rect: " + validRect + " Cull: " + canvasRenderer.cull + " *****");
  18. if (validRect)
  19. {
  20. canvasRenderer.cull = false;
  21. CanvasUpdateRegistry.RegisterCanvasElementForGraphicRebuild(this);
  22. return;
  23. }
  24. base.Cull(clipRect, validRect);
  25. }
  26. protected override void UpdateGeometry()
  27. {
  28. // Function overridden as Caret and text Selection Highlight is controlled by the Input Field.
  29. }
  30. }
  31. }