mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 04:54:17 -05:00
13 lines
288 B
C#
13 lines
288 B
C#
namespace UniVRM10.ClothWarp
|
|
{
|
|
public struct FrameTime
|
|
{
|
|
public readonly float DeltaTime;
|
|
public readonly float SqDt;
|
|
public FrameTime(float deltaTime)
|
|
{
|
|
DeltaTime = deltaTime;
|
|
SqDt = deltaTime * deltaTime;
|
|
}
|
|
}
|
|
} |