blob: ea770adcdfe4198f9cb9044d3c6a6f19ebb87aad [file] [log] [blame]
var CompExpressionInterface = (function (){
return function(comp){
function _thisLayerFunction(name){
var i=0, len = comp.layers.length;
while(i<len){
if(comp.layers[i].nm === name){
return comp.elements[i].layerInterface;
}
i += 1;
}
}
_thisLayerFunction.layer = _thisLayerFunction;
_thisLayerFunction.pixelAspect = 1;
_thisLayerFunction.height = comp.globalData.compSize.h;
_thisLayerFunction.width = comp.globalData.compSize.w;
_thisLayerFunction.pixelAspect = 1;
return _thisLayerFunction;
}
}());