UniVRM/Assets/VRM10_Samples/ClothSample/RotateParticle/Runtime/IRotateParticleSystem.cs
2024-11-19 20:03:26 +09:00

15 lines
379 B
C#

using System;
using System.Collections.Generic;
using RotateParticle.Components;
using UniVRM10;
namespace RotateParticle
{
public interface IRotateParticleSystem : IDisposable
{
void Initialize(IEnumerable<Warp> warps, IEnumerable<RectCloth> cloths);
void Process(float deltaTime);
void ResetInitialRotation();
void DrawGizmos();
}
}