2013年5月23日 星期四

05/24 in Class

演講: http://www.facebook.com/events/591713294180971/?fref=ts

1. 互動撞球桌案例 http://www.openpool.cc/
2. unity practice prefab....
3.
////文字按鈕 的function
function OnGUI(){
 if(GUI.Button(Rect(0,0,100,100),"CaptureScreenshot"))
  {
  Debug.Log("PRESS!");
  Application.CaptureScreenshot("0524.png");
  }
}


/// 圖形按鈕 最上面要宣告使用圖形名稱

var button1Img:Texture;

/// 圖形按鈕 放在 OnGUI內
if(GUI.Button(Rect(300,0,200,200),button1Img)){
Debug.Log("PRESS!");
Application.CaptureScreenshot("0524.png");
}
///end

沒有留言:

張貼留言