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); | |
} | |
} |
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
#include <iostream> | |
#include <type_traits> | |
using namespace v8; | |
//--------------------------------------------------------------------------- | |
// メタプロ用マクロとか | |
//--------------------------------------------------------------------------- | |
// 引数バリエーション | |
#define __A0__ |