Unity图片自适应
Posted DaLiangChen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity图片自适应相关的知识,希望对你有一定的参考价值。
/// <summary>自适应</summary>
private void adaptive(float imagWidth, float imagHeiht)
Transform canvasObj = GameObject.Find("Canvas").transform;
float width = canvasObj.GetComponent<RectTransform>().sizeDelta.x;
float height = 1;
float xyper = imagWidth / imagHeiht;
height = width / xyper;
stageTr.sizeDelta = new Vector2(width, height);
以上是关于Unity图片自适应的主要内容,如果未能解决你的问题,请参考以下文章