お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseGUIElementのスクリーン座標であるRectオブジェクトを取得します
If no camera
is given a camera filling the entire game window will be assumed.
function Start () { var r : Rect = guiTexture.GetScreenRect (); Debug.Log ("This gui element is " + r.width + " pixel wide."); }
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Start() { Rect r = guiTexture.GetScreenRect(); Debug.Log("This gui element is " + r.width + " pixel wide."); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Start() as void: r as Rect = guiTexture.GetScreenRect() Debug.Log((('This gui element is ' + r.width) + ' pixel wide.'))