Block a user
3c64ac8a38
Adds "as NURBS" mode to Bezier draw
98c6bded98
Fix: Triage Tools: Python error when accessing a 'created branch' activity
308ee94e3c
Updated to changes in main
fba67d989e
Merge branch 'main' into curves-extrude-op
64f06e8d3c
Small optimization
86d008d112
Metal: Fix missing new line characters
0251701cd6
Fix #116252: Corrections to Text Object Special Characters Menu
3417ed9817
Some comments added
623844ea46
class CurvesExtrusion refactored to struct CurvesCopy
298de51136
Small fixes
Laurynas Duburas
deleted branch cyclic-in-curves-draw from laurynas/blender
2023-12-30 20:22:13 +01:00
Fix: all curves drawn cyclic if "cyclic" attribute exists
It can change for Bezier. Look at your comment bellow and my code comment with a wrong style :)
Fix: all curves drawn cyclic if "cyclic" attribute exists
Laurynas Duburas
deleted branch solidify-crease-angle from laurynas/blender
2023-12-29 21:20:19 +01:00
c9fed69a30
Fix: all curves drawn cyclic if "cyclic" attribute exists
129fb2eab8
Anim: make bone collections hierarchical
423ddac25f
Cleanup: Anim, clarify comment in rna_def_armature
a582755321
Anim: Remove
OPTYPE_REGISTER
flag from some bone collection operators
c019ad2cfe
Refactor: rename
bonecoll_find_index
and move to namespace
Laurynas Duburas
created branch cyclic-in-curves-draw in laurynas/blender
2023-12-28 18:40:59 +01:00
Curve Hook modifier broken due to selection changes
Sadly after some time of debugging it appeared there is nothing to fix. @sage2014 in old version when you are assigning modifier control point and both handles are selected. In 4.0 only control…
Fix #116019: Solidify Crease Inner not working with edge crease attribute
047062a784
Fix #116019: Solidify Crease Inner not working with edge crease attribute
84d1d30028
EEVEE-Next: Add translucent contribution in probe capture
dc155e2ae4
EEVEE-Next: Remove Light eval hard coded closures
df91fb329e
Fix: EEVEE-Next: Broken Support for SSS
574daf20e1
Fix #116389: Sculpt: Box Hide tool keymap option "Outside" not working
Laurynas Duburas
created branch solidify-crease-angle in laurynas/blender
2023-12-23 16:15:55 +01:00
fc26b86f09
CustomData_copy removed
563571427c
Reduced number of copy operations, variable renaming
Curves: Add extrude operator
Just checked code of OffsetIndices
. It uses second index as exclusive, in this situation both inclusive needed.
OffsetIndices
calculates IndexRange
size by size = end - begin;
, I need…