您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 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. }