canto/Assets/Scripts/SOAP/TestPublisher.cs
2025-07-14 22:22:25 -04:00

13 lines
213 B
C#

using KitsuneCafe.SOAP;
using UnityEngine;
public class TestPublisher : MonoBehaviour
{
[SerializeField]
private FloatValue floatVariable;
void Start()
{
floatVariable.Value = 1;
}
}