Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

enumerateBodiesAlongRayStart prints "Chance" to console in Xcode 6

I'm using enumerateBodiesAlongRayStart and this method constantly prints the word "Chance" to my console. Is there any way to suppress this? Whats the deal?

self.gameScene.physicsWorld.enumerateBodiesAlongRayStart(self.rayStart, end: self.rayEnd, usingBlock: {
    body, point, normal, stop in

})
like image 460
hamobi Avatar asked Aug 17 '14 22:08

hamobi


1 Answers

I have the same "problem". It seems to be a debug output in /Applications/Xcode6-Beta6.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit. Hopefully it will be removed in beta7.

Edit by gfrs: Not removed. Currently exists in Xcode 6 GM.

Edit 2 by gfrs: Still not fixed. Currently exists in Xcode 6.1

like image 152
Thomas Richter Avatar answered Oct 22 '22 01:10

Thomas Richter