ISimulatable, what can we query?

Hi,

I have an object underneath a proxy which creates a plane with a couple of custom scripts on it, these are generated by a BuildAction on the proxy.

I can see the plane objects

image

In the Content Hierachy and I can see the DormPlane script in editor on the PlaneScanMesh

Yet in my code

 public class DormPlaneAnalyzer : MonoBehaviour, ISimulatable ...

   // Analyze and collect data
        public void Analyze()
        {
            lock (_lockObject)
            {
                visualizerData.ClearData();

                var dormPlanes = FindObjectsOfType<DormPlane>();

dormPlane count is always 0?

This is my first time coding for the simulator view, is this query allowed to get the DormPlanes or is there something custom to ISimulatable etc like order of run or something?

Best
Matt