UIConfig Class |
Namespace: FairyGUI
public class UIConfig : MonoBehaviour
The UIConfig type exposes the following members.
Name | Description | |
---|---|---|
animation | Obsolete. (Inherited from Component.) | |
audio | Obsolete. (Inherited from Component.) | |
camera | Obsolete. (Inherited from Component.) | |
collider | Obsolete. (Inherited from Component.) | |
collider2D | Obsolete. (Inherited from Component.) | |
constantForce | Obsolete. (Inherited from Component.) | |
enabled | (Inherited from Behaviour.) | |
gameObject | (Inherited from Component.) | |
guiElement | Obsolete. (Inherited from Component.) | |
guiText | Obsolete. (Inherited from Component.) | |
guiTexture | Obsolete. (Inherited from Component.) | |
hideFlags | (Inherited from Object.) | |
hingeJoint | Obsolete. (Inherited from Component.) | |
isActiveAndEnabled | (Inherited from Behaviour.) | |
light | Obsolete. (Inherited from Component.) | |
name | (Inherited from Object.) | |
networkView | Obsolete. (Inherited from Component.) | |
particleEmitter | Obsolete. (Inherited from Component.) | |
particleSystem | Obsolete. (Inherited from Component.) | |
renderer | Obsolete. (Inherited from Component.) | |
rigidbody | Obsolete. (Inherited from Component.) | |
rigidbody2D | Obsolete. (Inherited from Component.) | |
runInEditMode | (Inherited from MonoBehaviour.) | |
tag | (Inherited from Component.) | |
transform | (Inherited from Component.) | |
useGUILayout | (Inherited from MonoBehaviour.) |
Name | Description | |
---|---|---|
ApplyModifiedProperties | ||
BroadcastMessage(String) | (Inherited from Component.) | |
BroadcastMessage(String, Object) | (Inherited from Component.) | |
BroadcastMessage(String, SendMessageOptions) | (Inherited from Component.) | |
BroadcastMessage(String, Object, SendMessageOptions) | (Inherited from Component.) | |
CancelInvoke() | (Inherited from MonoBehaviour.) | |
CancelInvoke(String) | (Inherited from MonoBehaviour.) | |
ClearResourceRefs | ||
CompareTag | (Inherited from Component.) | |
Equals | (Inherited from Object.) | |
GetComponent(Type) | (Inherited from Component.) | |
GetComponent(String) | (Inherited from Component.) | |
GetComponent``1() | (Inherited from Component.) | |
GetComponentInChildren(Type) | (Inherited from Component.) | |
GetComponentInChildren(Type, Boolean) | (Inherited from Component.) | |
GetComponentInChildren``1() | (Inherited from Component.) | |
GetComponentInChildren``1(Boolean) | (Inherited from Component.) | |
GetComponentInParent(Type) | (Inherited from Component.) | |
GetComponentInParent``1() | (Inherited from Component.) | |
GetComponents(Type) | (Inherited from Component.) | |
GetComponents(Type, List<Component>) | (Inherited from Component.) | |
GetComponents``1() | (Inherited from Component.) | |
GetComponents``1(List<UMP>) | (Inherited from Component.) | |
GetComponentsInChildren(Type) | (Inherited from Component.) | |
GetComponentsInChildren(Type, Boolean) | (Inherited from Component.) | |
GetComponentsInChildren``1() | (Inherited from Component.) | |
GetComponentsInChildren``1(Boolean) | (Inherited from Component.) | |
GetComponentsInChildren``1(List<UMP>) | (Inherited from Component.) | |
GetComponentsInChildren``1(Boolean, List<UMP>) | (Inherited from Component.) | |
GetComponentsInParent(Type) | (Inherited from Component.) | |
GetComponentsInParent(Type, Boolean) | (Inherited from Component.) | |
GetComponentsInParent``1() | (Inherited from Component.) | |
GetComponentsInParent``1(Boolean) | (Inherited from Component.) | |
GetComponentsInParent``1(Boolean, List<UMP>) | (Inherited from Component.) | |
GetHashCode | (Inherited from Object.) | |
GetInstanceID | (Inherited from Object.) | |
Invoke | (Inherited from MonoBehaviour.) | |
InvokeRepeating | (Inherited from MonoBehaviour.) | |
IsInvoking() | (Inherited from MonoBehaviour.) | |
IsInvoking(String) | (Inherited from MonoBehaviour.) | |
Load | ||
SendMessage(String) | (Inherited from Component.) | |
SendMessage(String, Object) | (Inherited from Component.) | |
SendMessage(String, SendMessageOptions) | (Inherited from Component.) | |
SendMessage(String, Object, SendMessageOptions) | (Inherited from Component.) | |
SendMessageUpwards(String) | (Inherited from Component.) | |
SendMessageUpwards(String, Object) | (Inherited from Component.) | |
SendMessageUpwards(String, SendMessageOptions) | (Inherited from Component.) | |
SendMessageUpwards(String, Object, SendMessageOptions) | (Inherited from Component.) | |
StartCoroutine(IEnumerator) | (Inherited from MonoBehaviour.) | |
StartCoroutine(String) | (Inherited from MonoBehaviour.) | |
StartCoroutine(String, Object) | (Inherited from MonoBehaviour.) | |
StartCoroutine_Auto | Obsolete. (Inherited from MonoBehaviour.) | |
StopAllCoroutines | (Inherited from MonoBehaviour.) | |
StopCoroutine(String) | (Inherited from MonoBehaviour.) | |
StopCoroutine(IEnumerator) | (Inherited from MonoBehaviour.) | |
StopCoroutine(Coroutine) | (Inherited from MonoBehaviour.) | |
ToString | (Inherited from Object.) |
Name | Description | |
---|---|---|
allowSoftnessOnTopOrLeftSide |
Allow softness on top or left side for scrollpane.
| |
bringWindowToFrontOnClick |
When click the window, brings to front automatically.
| |
buttonSound |
Default button click sound.
| |
buttonSoundVolumeScale |
Default button click sound volume.
| |
clickDragSensitivity |
Pixel offsets of mouse pointer to trigger dragging.
| |
defaultComboBoxVisibleItemCount |
The number of visible items in ComboBox.
| |
defaultFont |
Dynamic Font Support.
4.x: Put the xxx.ttf into /Resources or /Resources/Fonts, and set defaultFont="xxx".
5.x: set defaultFont to system font name(or names joint with comma). e.g. defaultFont="Microsoft YaHei, SimHei"
| |
defaultScrollBarDisplay |
Scrollbar display mode. Recommended 'Auto' for mobile and 'Visible' for web.
| |
defaultScrollBounceEffect |
The "rebound" effect in the scolling container.
| |
defaultScrollDecelerationRate |
Deceleration ratio of scrollpane when its in touch dragging.
当手指拖动并释放滚动区域后,内容会滑动一定距离后停下,这个速率就是减速的速率。
越接近1,减速越慢,意味着滑动的时间和距离更长。
这个是全局设置,也可以通过ScrollPane.decelerationRate进行个性设置。
| |
defaultScrollSpeed | Obsolete. | |
defaultScrollStep |
Scrolling step in pixels
当调用ScrollPane.scrollUp/Down/Left/Right时,或者点击滚动条的上下箭头时,滑动的距离。
鼠标滚轮触发一次滚动的距离设定为defaultScrollStep*2
| |
defaultScrollTouchEffect |
Allow dragging anywhere in container to scroll.
| |
defaultTouchScrollSpeedRatio | Obsolete. | |
depthSupportForPaintingMode |
if RenderTexture using in paiting mode has depth support.
| |
frameTimeForAsyncUIConstruction | ||
globalModalWaiting |
Resource using in GRoot.ShowModalWait for locking the screen.
| |
horizontalScrollBar |
Resource url of horizontal scrollbar
| |
inputCaretSize | ||
inputHighlightColor | ||
Items | ||
loaderErrorSign |
In case of failure of loading content for GLoader, use this sign to indicate an error.
| |
modalLayerColor |
When a modal window is in front, the background becomes dark.
| |
popupMenu |
Resources url of PopupMenu.
| |
popupMenu_seperator |
Resource url of menu seperator.
| |
PreloadPackages | ||
renderingTextBrighterOnDesktop |
When using chinese fonts on desktop, I found that the display effect is not very clear. So I wrote shaders to light up their outline.
If you dont use chinese fonts, or dont like the new effect, just set to false here.
The switch is meaningless on mobile platforms.
| |
soundLoader | ||
tooltipsWin |
Resource url of tooltips.
| |
touchDragSensitivity |
Pixel offsets of finger to trigger dragging
| |
touchScrollSensitivity |
Pixel offsets of finger to trigger scrolling
| |
verticalScrollBar |
Resource url of vertical scrollbar
| |
windowModalWaiting |
Resource using in Window.ShowModalWait for locking the window.
|