이 페이지가 있는 버전:
이 페이지가 없는 버전:
Style used by default for GUI.Box controls.
using UnityEngine;public class Example : MonoBehaviour { // Modifies only the box style of the current GUISkin GUIStyle style; void OnGUI() { GUI.skin.box = style; GUILayout.Box("This is a box."); } }