Files
MuHua-Core/Assets/ModuleTools/DataSutureTool.cs
T
MuHua-123 84243e75a8 s
2024-11-25 18:32:05 +08:00

13 lines
336 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class DataSutureTool {
public static float SutureLength(this DataSuture suture) {
if (suture.a.MaxLength < suture.b.MaxLength) {
return suture.a.MaxLength;
}
else { return suture.b.MaxLength; }
}
}