Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android unity3d 加載界面

Android unity3d 加載界面

編輯:關於Android編程

var str: String;
var imageTexture :Texture;
private var imageWidth ;int;
private var imageHeight ;int;
private var screenWidth ;int;
private var screenHeight ;int;


function Start () {
screenWidth=Screen.width;
screenHeight=Screen.height;
imageWidth=imageTexture.width;
imageHeight=imageTexture.height;


}


function Update () {

 


GUI.Label(Rect(100,10,100,30),str);
GUI.Label(Rect(100,40,100,30),"當前屏幕寬為:"+screenWidth);
GUI.Label(Rect(100,80,100,30),"當前屏幕高為:"+screenHeight);
GUI.Label(Rect(100,120,imageWidth,imageHeight),imageTexture);


}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved