程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> [Unity3D] 如何識別屏幕邊緣,unity3d識別

[Unity3D] 如何識別屏幕邊緣,unity3d識別

編輯:C#入門知識

[Unity3D] 如何識別屏幕邊緣,unity3d識別


出現的問題

  • Unity3D中長度單位是米
  • 使用Screen.resolutions獲取的屏幕信息單位是像素

也就是說,即使獲取了屏幕相關信息及參數,也無法把信息轉換成可在editor中使用的信息。當時想在做Protect The Red 。

於是,就開始了自己的谷歌之旅。

 

在StackExchange和Unity Answers上翻了翻,最終搞懂了,大致思路是這樣的。

 

解決思路

 

代碼實現

 

    [HideInInspector]public float leftBorder;
    [HideInInspector]public float rightBorder;
    [HideInInspector]public float topBorder;
    [HideInInspector]public float downBorder;
    private float width;
    private float height;

    void SetBasicValues(){
      

        //the up right corner
        Vector3 cornerPos=Camera.main.ViewportToWorldPoint(new Vector3(1f,1f,
                                                                       Mathf.Abs(-Camera.main.transform.position.z)));
        
        leftBorder=Camera.main.transform.position.x-(cornerPos.x-Camera.main.transform.position.x);
        rightBorder=cornerPos.x;
        topBorder=cornerPos.y;
        downBorder=Camera.main.transform.position.y-(cornerPos.y-Camera.main.transform.position.y);

        width=rightBorder-leftBorder;
        height=topBorder-downBorder;

    }

 

成果--守住紅色

最終的結果是這樣的,牆壁游戲運行後一直處在屏幕的四邊。將小球控制在屏幕內。

protect the red     

 

APK Download

Google Play

qrcode

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved