13 lines
213 B
C#
13 lines
213 B
C#
using KitsuneCafe.SOAP;
|
|
using UnityEngine;
|
|
|
|
public class TestPublisher : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private FloatValue floatVariable;
|
|
|
|
void Start()
|
|
{
|
|
floatVariable.Value = 1;
|
|
}
|
|
}
|