I cannot seem to connect to an emited signal properly. The class in question uses a
signal cameraFlip which I have manually connected to a separate class and is working as expected.
But my instances connecting via code don't see to have any effect. I've tried 3 different ways and non seem to call the testing method i specified
GlobalManager.CameraController.cameraFlip.connect(testing)
$/root/World/CameraPivot.connect('cameraFlip',testing);
$/root/World/CameraPivot.cameraFlip.connect(_testing.bind(self));
If i try use multiple, it does complain saying its already connected. But I just cannot figure out whats missing. Any help would be appreciated.
