您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

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