// PostScriptEventsSender.cs using System.Collections; using Simuspaces.Simulation; public class PostScriptEventsSender : SimuScriptBase { public float repeatSeconds = 15f; public override void Start() { StartCoroutine(SendLoop()); } IEnumerator SendLoop() { int count = 0; while (true) { PostScriptEvent("qa_ping@qa", "message", "group hello", "count", count, "value", 12.5f); PostScriptEvent("qa_ping", "message", "global hello", "count", count); count++; yield return new WaitForSeconds(repeatSeconds); } } }