Files
MuHua-Core/Assets/ModuleTools/DataPointTool.cs
T
2024-11-15 18:28:21 +08:00

10 lines
219 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class DataPointTool {
public static Vector3 DefaultBezier(Vector3 a, Vector3 b) {
return (b - a) * 0.3f;
}
}