25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

20 satır
296 B

  1. using System;
  2. using UnityEngine.UI;
  3. namespace CIG
  4. {
  5. public class GraphicRaycastTarget : Graphic
  6. {
  7. protected override void Awake()
  8. {
  9. base.Awake();
  10. this.raycastTarget = true;
  11. }
  12. protected override void OnPopulateMesh(VertexHelper vh)
  13. {
  14. vh.Clear();
  15. }
  16. }
  17. }