FairyGUI-Relation关联、布局、适配

Relation关联,实质是FairyGUI提供的布局、适配的解决方案。特点是不仅可以针对父级容器设定相对位置关系,还可以设置相对于其他元件的相对位置关系。

FairyGUI-Relation关联、布局、适配_第1张图片

FairyGUI-Relation关联、布局、适配_第2张图片

FairyGUI-Relation关联、布局、适配_第3张图片

导出资源

代码实现

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
/*
 * Author:W
 * 关联:布局、适配
 * 1.可以设置相对于“父级”的位置
 * 2.也可以设置其他元件的位置
 */
public class RelationTest : MonoBehaviour {

	private GComponent root;

	private GComponent frame;
	void Awake()
	{
		UIPackage.AddPackage("UI/Basics");
	}

	// Use this for initialization
	void Start () {
		root = this.GetComponent().ui;

		frame = root.GetChild("n13").asCom;
		frame.AddRelation(root, RelationType.Bottom_Bottom);
	}
	
	// Update is called once per frame
	void Update () {
		
	}
}

运行结果如下

FairyGUI-Relation关联、布局、适配_第4张图片

FairyGUI-Relation关联、布局、适配_第5张图片

 

你可能感兴趣的:(FairyGUI,Unity,FairyGUI,Relation,关联,布局,适配)