8

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

})
sangony
  • 11,636
  • 4
  • 39
  • 55
hamobi
  • 7,940
  • 4
  • 35
  • 64

1 Answers1

5

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

Epic Byte
  • 33,840
  • 12
  • 45
  • 93