I download the newest Cesium and when I try to perform a drillpick I get an error saying it cannot compute ".pass" from undefined.
I think it may be the line 1084 in scene.js:
var length = commandList.length;
for (var i = 0; i < length; ++i) {
var command = commandList[i];
var pass = command.pass;
if (pass === Pass.COMPUTE) {
computeList.push(command);
It should have a check to make sure command is defined:
var length = commandList.length;
for (var i = 0; i < length; ++i) {
var command = commandList[i];
if (command) {
var pass = command.pass;
if (pass === Pass.COMPUTE) {
computeList.push(command);
The code used to have the check in previous versions then the check was removed. Was it removed for a reason?
- V