当前位置:   article > 正文

unity 中实现图片折叠 伪3D 的效果_unity 图片对折

unity 图片对折

using System.Collections;
using UnityEngine.UI;
using System.Collections.Generic;
using UnityEngine;

[RequireComponent(typeof(Image))]
public class VariantImage : BaseMeshEffect
{
    public Vector2[] offset=new Vector2[4];
    public override void ModifyMesh(VertexHelper vh)
    {
        List<UIVertex> stream=new List<UIVertex>();
        vh.GetUIVertexStream(stream);
        UIVertex vertex = new UIVertex();
        for (int i = 0; i < vh.currentVertCount && i < offset.Length;i++)
        {
            vh.PopulateUIVertex(ref  vertex, i);
            vertex.position = vertex.position + new Vector3(offset[i].x,offset[i].y,0);
            vh.SetUIVertex(vertex, i);
        }
    }
}
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/103439
推荐阅读
相关标签
  

闽ICP备14008679号