Unity UGUI 源码Graphic
目录
Graphic它是如何将我们的UI显示在屏幕上的Graphic的代码逻辑
Graphic
它是如何将我们的UI显示在屏幕上的
贴一个简单的例子
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MyGraphic : MonoBehaviour
{
public Texture texture;
// Start is called before the first frame update
void Start()
{
Mesh mesh = new Mesh();
mesh.Clear();
mesh.SetVertices(new List
共有 0 条评论