I would like to get access to the camera buffer and pipe and that out to a machine learning application, but am having trouble figuring it out. Apparently camera_node.rs
and particularly camera_node_system
contain the buffer, but how would I get access to this in a different system? Sorry I am new to Bevy, so not sure if I could just pipe this out to an intermediate variable and re-use that, or if this is basically impossible in the Bevy framework.
I suppose I could co-opt the camera_node_system
and put the code I need in there but that is neither elegant nor scales well.