Andrej Andrej730
  • Joined on 2021-11-08
Andrej commented on issue blender/blender#119139 2024-04-27 14:53:06 +02:00
WIP: Allow name-swapping when renaming IDs from the UI

It seems there should be a thread on https://devtalk.blender.org/c/feature-design-feedback/30 (not sure who can create threads on devtalk forum, probably, only developers) that will be linked in…

Andrej commented on issue blender/blender#117656 2024-04-26 16:02:04 +02:00
SystemError setting ID custom property to a list containing NumPy scalars

A note that setting numpy array of numpy np.int32 does work without errors though (C.object['np_data'] = np.array([3,4,5])), error occurs only when np.int32 are in default python list.

Andrej closed issue blender/blender#121072 2024-04-26 15:57:42 +02:00
TypeError: object of type 'numpy.int32' has no len() assigning ID's custom attribute
Andrej opened issue blender/blender#121072 2024-04-25 12:34:39 +02:00
TypeError: object of type 'numpy.int32' has no len() assigning ID's custom attribute
Andrej opened issue blender/blender#119955 2024-03-27 10:53:05 +01:00
Blender 4.1 changed behaviour for renaming objects when name already is used
Andrej commented on pull request blender/blender-addons#104958 2024-03-05 12:15:54 +01:00
Math Vis Console - fixed errors with invalid objects in console locals

@mont29 any other changes needed or it can be merged?

Andrej commented on pull request blender/blender#113364 2024-03-02 16:01:14 +01:00
Indicate Parent Inverse Matrix State in UI

I've left it returning true since in childof_set_inverse_exec it's also possible to provide constaint without setting constraint in context and didn't wanted to interrupt that workflow if…

Andrej commented on pull request blender/blender#113364 2024-03-02 15:50:07 +01:00
Indicate Parent Inverse Matrix State in UI

with set=None adding .enabled = False to UI elements turn out also to be unnecessary.

Andrej pushed to clear_inverse_poll at Andrej730/blender 2024-03-02 15:47:49 +01:00
ac8dcb9ac7 allow clearing inverse matrix without parent object
b0c974e292 make props read-only by setting setter to None
7da7ba7f6c refactor parent inverse matrix property group
Compare 3 commits »
Andrej created pull request blender/blender#118900 2024-02-29 12:13:37 +01:00
small fix for bpy.utils.register_tool docs
Andrej pushed to fix_register_tool_docs at Andrej730/blender 2024-02-29 12:12:49 +01:00
70d5b971e7 small fix for bpy.utils.register_tool docs
56f8c1c0f6 Compositor: Unify variable size blur between CPU and GPU
aa17aca9ec Compositor: Use original variable size in Blur node
e67059d504 GPv3: Isolate Layer keymap
c43736c7f4 GPv3: Draw tool side panel
Compare 10 commits »
Andrej created branch fix_register_tool_docs in Andrej730/blender 2024-02-29 12:12:49 +01:00
Andrej commented on issue blender/blender#118787 2024-02-29 10:11:27 +01:00
removing orphan meshes is slow (after they were in use)

Thank you for workaround. Settings do_unlink to False indeed speeds things up.

Didn't planned this as a performance issue report - just thought that removing meshes from same conditions but…

Andrej opened issue blender/blender#118787 2024-02-27 08:12:59 +01:00
removing orphan meshes is slow (after they were in use)
Andrej commented on pull request blender/blender#113364 2024-02-22 17:37:54 +01:00
Indicate Parent Inverse Matrix State in UI

@dr.sybren updated the PR description.

Andrej opened issue blender/blender-manual#104712 2024-02-22 17:17:55 +01:00
Dependency graph: Simple exporter - issue running code snippet
Andrej commented on pull request blender/blender#113364 2024-02-22 15:04:29 +01:00
Indicate Parent Inverse Matrix State in UI

I think the "clear" button shouldn't have an icon. The one that's used now is also used in other places as a "back" icon rather than a "clear"/"erase" icon, so we certainly shouldn't use this…

Andrej pushed to clear_inverse_poll at Andrej730/blender 2024-02-22 14:56:07 +01:00
9de8aaba3e removed icon from "clear parent inverse transform" button
Andrej commented on pull request blender/blender#113364 2024-02-21 16:03:09 +01:00
Indicate Parent Inverse Matrix State in UI

So, this UI will work? Then I'll start working on adding similar subpanels for constraints. In case of constraints I guess it won't be possible to simply create properties from UI python scripts…