Friday, April 4, 2025
spot_img

(2.4.5)Is there anyway to replace PhysicsManager by perform for every body as a substitute of actual time simulating to be able to predict the outcome? – Cocos Creator


For instance, suppose I’ve a pinball sport, the ball might lastly drop to fit 1 – slot 8, every slot has a detector to inform if the ball drops on it:

Canvas:

cc.Class({
    extends: cc.Part,

    properties: {
        ballRigidBody:{
            sort:cc.RigidBody,
            default:null
        },
    },

    onLoad(){
        cc.director.getPhysicsManager().enabled = true;
    }
});

Detector:

cc.Class({
    extends: cc.Part,

    properties: {
        isCollided:false
    },

    // can be known as as soon as when two colliders start to contact
    onBeginContact: perform (contact, selfCollider, otherCollider) {
        isCollided=true;
        alert(this.node.identify);
    },
});

Once I runs the canvas and the ball drops, the detector would inform which slot has the ball drop to. Nonetheless, I need to predict which slots would the ball go, however not simulating it at actual time. Does PhysicsManager help capabilities like:

cc.Class({
    extends: cc.Part,

    properties: {
        ballRigidBody:{
            sort:cc.RigidBody,
            default:null
        },

        detectorArray:{
            sort:[require('Detector')],
            default:[]
        }
    },

    onLoad(){
        cc.director.getPhysicsManager().enabled = true;
       
        whereas(true){
            cc.director.getPhysicsManager().updateFrame(); //is there any perform prefer it?

            for(const detector of detectorArray){
                if(detector.isCollided){
                    break;
                }
            }
        }
    }
});

which simulates the outcome for every body by perform:

whereas(true){
    cc.director.getPhysicsManager().updateFrame(); //is there any perform prefer it?

    for(const detector of detectorArray){
        if(detector.isCollided){
            break;
        }
    }
}

and therefore let me know which detector would the ball contact instantly?

Let me present the pinball:

now once I runs the canvas, the ball would usually drop and at last cease at slot 3.

However I need to do one thing completely different:
The outcome from server is 3, I want an animation that the ball drop to fit 3, so I must randomly generate a drop ball animation that the ball goes to fit 3, right here is the next pseudo code:

1.Get the required outcome from server, which is 3 (eg:Want an animation that the ball drops to fit 3)
2.Set the random place x of the ball
3.Simulate the updateFrame() till the ball is stopped at a any slots
4.If the ball is just not cease at slot 3, restart at step 2 to set random place x once more , till a price of x lets the ball go to fit 3, else if the ball actually goes to fit 3, cease the loop and retailer the place x
5.Play actual time animation, ranging from setting the ball at place x

Does cocos creator help such perform?

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisement -spot_img

Latest Articles