I may be wrong, but it seems that the command continuedoes not work with loops for...in.
The compiler does not cause errors with this code:
entLoop:for(var i:Number = 0 ; i < 2 ; i++) {
for(var i2:Number = 0 ; i2 < 2 ; i2++) {
if(true) {
continue entLoop;
}
}
}
(I replaced your condition with true, since I have no definitions for arrays entitiesand ignoreEntities)
Zed-k source
share