Cocos2d V3.4 Chipmunk RELEASE mode display bug iOS

Discuss any Chipmunk bugs here.
Post Reply
SpeakingStones
Posts: 1
Joined: Tue Aug 11, 2015 6:02 am
Contact:

Cocos2d V3.4 Chipmunk RELEASE mode display bug iOS

Post by SpeakingStones »

Hello,
there seems to be a Cocos2dV3.4 display bug when adding lots of Chipmunk physics bodies quickly in the same spot in RELEASE MODE on a device. If the physics body is a rectangle its happens straight away, if it is a circle it takes longer but does happen. The key point is it always works fine in DEBUG mode but errors occur in RELEASE mode on the device. It always works fine in the simulator. (just Edit Scheme.. to change to release mode for RUN)

Example swift code to replicate. (simply add a dynamic polygon physics body at the same point quickly)

Code: Select all

class MainTestScene: CCNode
{
    var _rootPhysicsNode : CCPhysicsNode!
    var count : CCTime = 0

    override init()
    {
        super.init()
        _rootPhysicsNode = CCPhysicsNode()
        _rootPhysicsNode.gravity = ccp(0,-100)
        self.addChild(_rootPhysicsNode)
    }

    override func update(delta: CCTime)
    {
        count += delta
        if count > 0.2
        {
            count = 0
            for var i = 0; i <= 10 ; i++
            {
                let item = CCSprite(imageNamed: "ccbResources/rainbowblinky.png")
                item.anchorPoint = ccp(0.5,0.5)
                item.scale = 0.3
                item.position = ccp(CCDirector.sharedDirector().viewSize().width / 2,  CCDirector.sharedDirector().viewSize().height / 2 )
                item.physicsBody = CCPhysicsBody(rect: CGRectMake(0, 0, 100, 100), cornerRadius: 1)
                _rootPhysicsNode.addChild(item)
            }

        }
    }
}
In DEBUG mode you get sprites falling from a point and pushing each other out. In RELEASE MODE on an iOS device the screen flicks every second shows a single sprite and slows down to a crawl.
Can anyone help?
trudnai
Posts: 1
Joined: Tue Aug 11, 2015 12:20 pm
Contact:

Re: Cocos2d V3.4 Chipmunk RELEASE mode display bug iOS

Post by trudnai »

+1 here... I have replied to you on cocos2d-swift forum.

http://forum.cocos2d-swift.org/t/cocos2 ... -bug/17858

Best,
T
Post Reply

Who is online

Users browsing this forum: No registered users and 7 guests