blender-geometry-script/api
Roberto Saccon a1aac89c19 Added min / max option for numeric input values
Usage examples

min only:
---------
def test(value: Int[0]): pass
def test(value: Float[0.0]): pass

min, max
---------
def test(value: Int[0, 1]): pass
def test(value: Float[0.0, 1.0]): pass

min, max (slice  notation)
-------------------------
def test(value: Int[0:1]): pass
def test(value: Float[0.0:1.0]): pass
2023-12-01 03:36:54 +01:00
..
static
arrange.py replace dictionary used to count node input links with collections.Counter 2023-11-17 13:49:19 -05:00
node_mapper.py
state.py
tree.py Added min / max option for numeric input values 2023-12-01 03:36:54 +01:00
types.py Added min / max option for numeric input values 2023-12-01 03:36:54 +01:00