I apologize in advance if this should be obvious... Regarding destroying / removing cameras that I don't need anymore, I came across these two descriptions in the documentation that sound a bit contradicting to me:
Camera.destroy():
CameraManager.remove(camera):
So for destroy() it says that I should use CameraManager.remove(). However for remove() it says that I need to call Camera.destroy() to clear all references.
@rich What's the "clean" way to do it? Call remove() first and then destroy() after? Or just one of the two?