Skip to content

Instantly share code, notes, and snippets.

@AonekoSS
Created February 12, 2015 11:38
Show Gist options
  • Save AonekoSS/f18f69831b5426cbbb14 to your computer and use it in GitHub Desktop.
Save AonekoSS/f18f69831b5426cbbb14 to your computer and use it in GitHub Desktop.
Photoshop用 全レイヤーセットの描画モードを「通過」にするスクリプト
fixLayerSets(app.activeDocument.layerSets);
function fixLayerSets(layerSets){
for(var i=0; i<layerSets.length; ++i){
layerSets[i].blendMode = BlendMode.PASSTHROUGH;
fixLayerSets(layerSets[i].layerSets);
}
}
@AonekoSS
Copy link
Author

SAIやクリスタを併用してる絵描きさん向け。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment