This repository has been archived on 2025-09-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
XericLibrary-OLD/Runtime/CustomDrawer/ReNameAttribute.cs
LiRuoChen 13cce77210 添加编辑器阶段快捷生成、移除脚本
添加基本几何体拼接算法
  添加线性变换目标类型,类似多种颜色设置功能
  添加一些基本的shader函数,用于计算二维圆形,二维旋转等。
2023-11-17 08:57:18 +08:00

19 lines
330 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace XericLibrary.Runtime.CustomDrawer
{
[AttributeUsage(AttributeTargets.Field)]
public class ReNameAttribute : PropertyAttribute
{
public string Name;
public ReNameAttribute(string name)
{
this.Name = name;
}
}
}