Skip to content

V0.15: Fixs and more nodes !

Choose a tag to compare

@Program132 Program132 released this 10 Nov 23:18
· 80 commits to main since this release

Fixs

New

New nodes:

  • Add renamed Addition
  • Subtraction
  • Multiplication
  • Division
  • Squareroot
  • Logarithm
  • Exponential
  • Cos
  • Sin
  • Tan
  • Cosh
  • Sinh
  • Tanh
  • Arcos
  • Arcsin
  • Arctan
  • Absolute (abs)

New format to follow to create your own nodes (color is not mandatory, you can remove it):

{
    "color": [255,255,255],
    "type": "METHOD",
    "inputs": {
        "node_name": {
            "defaultValue": "<default value>"
        }
    },
    "outputs": [
    "output_name"
    ]
}

Variables:

  • Can be saved in you project file (.json) when you're clicking on the button "Save".
  • Can be loaded from a .json file.
  • SET node to update the value
  • GET node to get the value

Example

image image