[SOLVED] Using the new raycastAll function

this.app.systems.rigidbody.raycastAll(start, end).forEach(function (result) {
    console.log('Name: ' + result.entity.name);
    result.entity.tags.list().forEach(function (tag) {
        console.log('Tag: ' + tag);
    });
});