Node Combine Color#

from geonodes import nodes

node = nodes.CombineColor(red=None, green=None, blue=None, alpha=None, mode='RGB')

Blender Image

Args:#

Input socket arguments:#

Node parameter arguments:#

  • mode (str): default = ‘RGB’ in (‘RGB’, ‘HSV’, ‘HSL’)

Output sockets:#

Implementation#

Class or method name

Definition

Color

RGB

@classmethod
def RGB(cls, red=None, green=None, blue=None, alpha=None):

HSV

@classmethod
def HSV(cls, hue=None, saturation=None, value=None, alpha=None):

HSL

@classmethod
def HSL(cls, hue=None, saturation=None, lightness=None, alpha=None):

Global functions

combine_rgb

def combine_rgb(red=None, green=None, blue=None, alpha=None):

combine_hsv

def combine_hsv(hue=None, saturation=None, value=None, alpha=None):

combine_hsl

def combine_hsl(hue=None, saturation=None, lightness=None, alpha=None):

Go to top - main - nodes - nodes menus