C#繪製準心腳本

歡迎來到unity學習unity培訓、unity企業培訓教育專區,這裏有很多U3D資源U3D培訓視頻U3D教程U3D常見問題U3D項目源碼,我們致力於打造業內unity3d培訓、學習第一品牌。

 

texture.width >> 1和(texture.height >>是右移一位,相當於除以2。(x >> 1) 和 (x / 2) 的結果是一樣的。


01

void OnGUI()

02

 

03

{

04

 

05

//繪製準心

06

 

07

Rect  rect = new Rect(Input.mousePosition.x - (texture.width >> 1),

08

 

09

Screen.height - Input.mousePosition.y - (texture.height >> 1),

10

 

11

texture.width, texture.height);

12

 

13

GUI.DrawTexture(rect, texture);

14

 

15

}

16

 

17


更多精彩請點擊 http://www.gopedu.com/


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章