Created
February 12, 2015 11:38
-
-
Save AonekoSS/f18f69831b5426cbbb14 to your computer and use it in GitHub Desktop.
Photoshop用 全レイヤーセットの描画モードを「通過」にするスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fixLayerSets(app.activeDocument.layerSets); | |
function fixLayerSets(layerSets){ | |
for(var i=0; i<layerSets.length; ++i){ | |
layerSets[i].blendMode = BlendMode.PASSTHROUGH; | |
fixLayerSets(layerSets[i].layerSets); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SAIやクリスタを併用してる絵描きさん向け。