Documentation for the Unity C# Library
Loading...
Searching...
No Matches
SimpleProducer.cs
Go to the documentation of this file.
1using PixoVR.Core;
2using UnityEngine;
3
5{
6 public string text;
7}
8
9class SimpleProducer : MonoBehaviour
10{
11 void Update()
12 {
13 EventBetter.Raise(new TextMessage() { text = "Hello World!" });
14 }
15}
Intentionally made partial, in case you want to extend it easily.