Files
2024-11-20 15:21:28 +01:00

16 lines
273 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Fluxy;
namespace FluxySamples
{
public class SetSplatRate : MonoBehaviour
{
public void SetRate(float value)
{
GetComponent<FluxyTarget>().rateOverTime = (int)value;
}
}
}