For example, suppose I have a pinball game, the ball may finally drop to slot 1 - slot 8, each slot has a detector to notify if the ball drops on it:
Canvas:
cc.Class({
extends: cc.Component,
properties: {
ballRigidBody:{
type:cc.RigidBody,
default:null
},
},
onLoad(){
cc.director.getPhysicsManager().enabled = true;
}
});
Detector:
cc.Class({
extends: cc.Component,
properties: {
isCollided:false
},
// will be called once when two colliders begin to contact
onBeginContact: function (contact, selfCollider, otherCollider) {
isCollided=true;
alert(this.node.name);
},
});
When I runs the canvas and the ball drops, the detector would tell which slot has the ball drop to. However, I want to predict which slots would the ball go, but not simulating it at real time. Does PhysicsManager support functions like:
cc.Class({
extends: cc.Component,
properties: {
ballRigidBody:{
type:cc.RigidBody,
default:null
},
detectorArray:{
type:[require('Detector')],
default:[]
}
},
onLoad(){
cc.director.getPhysicsManager().enabled = true;
while(true){
cc.director.getPhysicsManager().updateFrame(); //is there any function like it?
for(const detector of detectorArray){
if(detector.isCollided){
break;
}
}
}
}
});
which simulates the result for each frame by function:
while(true){
cc.director.getPhysicsManager().updateFrame(); //is there any function like it?
for(const detector of detectorArray){
if(detector.isCollided){
break;
}
}
}
and hence let me know which detector would the ball touch immediately?