However, in order to make this check over and over again, which is what we need to do, we need an update loop (a block like "repeat"). Such a block is not available at the moment but will be introduced with a future update. So at the moment it's just possible using JavaScript. Do you use JavaScript as well?
Benjamin
// create person and ballvar person = Scene.createItem('LP_Wom', 0, 0, 0);var ball = Scene.createItem('Sphere', 0, 5, 0);// move ball towards personball.move(0, -10);// check distance repeatedlyScene.scheduleRepeating(function() {if(person.distanceToItem(ball) < 0.5) {person.say('Collision!');} else {person.say('');}}, 0);