소스 검색

add StdHSL / GSB blend modes for scripts

Johann ELSASS 4 년 전
부모
커밋
58e0aef7e6
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 1
      resources/scripts/lazpaint/layer.py

+ 9 - 1
resources/scripts/lazpaint/layer.py

@@ -40,7 +40,15 @@ BLEND_LINEAR_NEGATION = 'LinearNegation'
 BLEND_XOR = 'Xor'
 BLEND_SVG_SOFT_LIGHT = 'SvgSoftLight'
 BLEND_MASK = 'Mask'
-BLEND_LINEAR_MULTIPLY_SATURATION = 'LinearMultiplySaturation';
+BLEND_LINEAR_MULTIPLY_SATURATION = 'LinearMultiplySaturation'
+BLEND_LINEAR_HUE = 'LinearHue'
+BLEND_LINEAR_COLOR = 'LinearColor'
+BLEND_LINEAR_LIGHTNESS = 'LinearLightness'
+BLEND_LINEAR_SATURATION = 'LinearSaturation'
+BLEND_CORRECTED_HUE = 'CorrectedHue'
+BLEND_CORRECTED_COLOR = 'CorrectedColor'
+BLEND_CORRECTED_LIGHTNESS = 'CorrectedLightness'
+BLEND_CORRECTED_SATURATION = 'CorrectedSaturation'
 
 def get_id():
   return command.send("LayerGetId?")