mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-30 22:35:15 -05:00
13 lines
284 B
C#
13 lines
284 B
C#
namespace RotateParticle
|
|
{
|
|
public struct FrameTime
|
|
{
|
|
public readonly float DeltaTime;
|
|
public readonly float SqDt;
|
|
public FrameTime(float deltaTime)
|
|
{
|
|
DeltaTime = deltaTime;
|
|
SqDt = deltaTime * deltaTime;
|
|
}
|
|
}
|
|
} |