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/MicroLibrary/MacroTransform.cs
2023-11-08 13:41:11 +08:00

45 lines
544 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace XericLibrary.Runtime.MacroLibrary
{
/// <summary>
/// 变换宏
/// </summary>
public static class MacroTransform
{
}
/// <summary>
/// 变换封装类
/// </summary>
public class Conversion
{
#region
/// <summary>
/// 目标变换组件
/// </summary>
private Transform transform;
#endregion
#region 使
public Conversion(Transform target)
{
transform = target;
}
#endregion
}
}