Files
VR-WuKong/Packages/PICO Unity Integration SDK-3.3.2-20251111/Runtime/Scripts/SecureMR/Component/Pipeline/PXR_SecureMRPipelineRunner.cs
2025-11-13 17:40:28 +08:00

28 lines
557 B
C#

#if !PICO_OPENXR_SDK
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Unity.XR.PXR.SecureMR
{
public class PXR_SecureMRPipelineRunner : MonoBehaviour
{
public PXR_SecureMRPipelineExecute[] runners;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
foreach (var exec in runners)
{
exec.Execute();
}
}
}
}
#endif