mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 21:14:19 -05:00
18 lines
376 B
C#
18 lines
376 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace RotateParticle.Components
|
|
{
|
|
[AddComponentMenu("RotateParticle/Cloth")]
|
|
[DisallowMultipleComponent]
|
|
public class Cloth : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
public bool Loop = false;
|
|
|
|
[SerializeField]
|
|
public List<Warp> Warps = new();
|
|
}
|
|
} |