Switch ====== .. image:: https://user-images.githubusercontent.com/14288520/189731409-413d3278-54d4-4474-be18-90d959f0cbbf.png :target: https://user-images.githubusercontent.com/14288520/189731409-413d3278-54d4-4474-be18-90d959f0cbbf.png Functionality ------------- Switches between to sets of inputs. Also can work as filter. Category -------- Logic -> Switch Inputs ------ - **State** - True or False (0 or 1) - **A_0 - 10** - True, False or None - **B_0 - 10** - True, False or None Outputs ------- - **Out_0 - 10** - result of switching between two values Parameters ---------- +--------------------------+-------+--------------------------------------------------------------------------------+ | Parameters | Type | Description | +==========================+=======+================================================================================+ | in/out number (N panel) | 0 - 10| Number of socket sets | +--------------------------+-------+--------------------------------------------------------------------------------+ Usage ----- **Generation of bool sequence easily:** .. image:: https://user-images.githubusercontent.com/14288520/189741094-76efb8cf-bc66-4887-b486-7627cd714007.png :target: https://user-images.githubusercontent.com/14288520/189741094-76efb8cf-bc66-4887-b486-7627cd714007.png * Number-> :doc:`Random Num Gen ` * Text-> :doc:`Stethoscope ` **Working with different types of data:** .. image:: https://user-images.githubusercontent.com/14288520/189732804-2d8be7a3-ba0c-435f-9ef6-605b5044ec3c.png :target: https://user-images.githubusercontent.com/14288520/189732804-2d8be7a3-ba0c-435f-9ef6-605b5044ec3c.png * Scene-> :doc:`Objects In Lite ` * Text-> :doc:`Stethoscope ` .. image:: https://user-images.githubusercontent.com/14288520/189732604-c36ab6c1-bbb4-4eee-b745-de5cc8e1b52e.gif :target: https://user-images.githubusercontent.com/14288520/189732604-c36ab6c1-bbb4-4eee-b745-de5cc8e1b52e.gif **It is possible to deal with empty objects:** .. image:: https://user-images.githubusercontent.com/14288520/189734577-f30d7df8-ef03-4469-9a7a-09f9fd7689fa.png :target: https://user-images.githubusercontent.com/14288520/189734577-f30d7df8-ef03-4469-9a7a-09f9fd7689fa.png * Number-> :doc:`Random Num Gen ` * Number-> :doc:`Number Range ` * List-> :doc:`Filter Empty Objects ` * List->List Main-> :doc:`List Join ` * List->List Struct-> :doc:`List Split ` * Text-> :doc:`Stethoscope ` * Script-> :doc:`Formula ` **Using as filter:** .. image:: https://user-images.githubusercontent.com/14288520/189739541-753f27e2-7129-4fe7-bc29-ce49637f9491.png :target: https://user-images.githubusercontent.com/14288520/189739541-753f27e2-7129-4fe7-bc29-ce49637f9491.png * Number-> :doc:`Number Range ` * MODULO X, EQUAL: Number-> :doc:`Scalar Math ` * Text-> :doc:`Stethoscope ` It has supporting of numpy arrays. Output is related with input from socket A and socket B. Output will be numpy array if at least one input sockets (A or B) has numpy array and another socket does not have list with two or more values. .. image:: https://user-images.githubusercontent.com/14288520/189739875-0cd27fc9-3e36-48fd-9b5a-e29de6cd2ff9.png :target: https://user-images.githubusercontent.com/14288520/189739875-0cd27fc9-3e36-48fd-9b5a-e29de6cd2ff9.png * Number-> :doc:`Random Num Gen ` * Number-> :doc:`A Number ` * Text-> :doc:`Stethoscope ` **Alternative of list mask out node:** .. image:: https://user-images.githubusercontent.com/14288520/189739962-68fc989e-38e6-4845-bc7f-dd473708308e.png :target: https://user-images.githubusercontent.com/14288520/189739962-68fc989e-38e6-4845-bc7f-dd473708308e.png * Number-> :doc:`Random Num Gen ` * List-> :doc:`List Mask (Out) ` * Text-> :doc:`Stethoscope ` Working inside and outside of object level ------------------------------------------ Something unexpected can be with none iterable objects like matrix or Blender objects. On the picture below it can be expected that switch should add first matrix and second quaternion: .. image:: https://user-images.githubusercontent.com/14288520/189740102-41008bb1-8b2e-4abf-bc82-2d5bdef8de97.png :target: https://user-images.githubusercontent.com/14288520/189740102-41008bb1-8b2e-4abf-bc82-2d5bdef8de97.png * Number-> :doc:`Random Num Gen ` * Generator-> :doc:`Random Vector ` * Matrix-> :doc:`Matrix In ` * Text-> :doc:`Stethoscope ` but for this states input should have values on first object level not on second data level: .. image:: https://user-images.githubusercontent.com/14288520/189740124-1ab19668-bf50-4f62-926a-7900cb8dbea1.png :target: https://user-images.githubusercontent.com/14288520/189740124-1ab19668-bf50-4f62-926a-7900cb8dbea1.png * Generator-> :doc:`Random Vector ` * Number-> :doc:`Random Num Gen ` * Matrix-> :doc:`Matrix In ` * Text-> :doc:`Stethoscope ` * List->List Struct-> :doc:`List Sort `