Vitor Boschi vitorboschi
  • Joined on 2019-07-13
Vitor Boschi pushed to feature/improve_python_error at vitorboschi/blender 2023-09-01 18:58:25 +02:00
7368859ea8 Change wording internal node -> builtin node
Vitor Boschi commented on pull request blender/blender#111799 2023-09-01 18:51:44 +02:00
PyAPI: Better error msg when re-using internal node id

To trigger this error message, enter the following code at Blender's Python console:

import bpy

class NodeDummy(bpy.types.Node):
    bl_idname = 'NodeGroupInput'
    bl_label =…
Vitor Boschi created pull request blender/blender#111799 2023-09-01 18:50:47 +02:00
PyAPI: Better error msg when re-using internal node id
Vitor Boschi created branch feature/improve_python_error in vitorboschi/blender 2023-09-01 18:49:35 +02:00
Vitor Boschi pushed to feature/improve_python_error at vitorboschi/blender 2023-09-01 18:49:35 +02:00
410d867ee7 PyAPI: Better error msg when re-using internal node id
400f7c22bc Cycles: update ocloc to 101.4369 on Windows
e3fd80dd64 Fix building with GHOST/Wayland & Vulkan
cf12d11de6 Fix #111713: Nodes crash when library overriding
d361d67e11 Fix: Cursor wrapping in Graph Editor slider operators
Compare 10 commits »
Vitor Boschi pushed to fix/geonodes_cache_assert at vitorboschi/blender 2023-08-29 18:08:07 +02:00
7d8ed8fd59 Fix comment's style
Vitor Boschi commented on pull request blender/blender#111615 2023-08-29 13:51:02 +02:00
Fix #111607: Do not unregister internal nodes

@vitorboschi ah, the code will return null in rna_Node_unregister and error out on rna_Node_register_base, and a new node type is never created. :D

I missed that! Thanks for the…

Vitor Boschi commented on pull request blender/blender#111615 2023-08-28 18:55:31 +02:00
Fix #111607: Do not unregister internal nodes

Even though this patch prevents the crash, it looks to me like it still allows the node to be created with a duplicated, no? Isn't that a problem?

Vitor Boschi deleted branch feature/eyedropper_x11 from vitorboschi/blender 2023-08-28 13:18:16 +02:00
Vitor Boschi commented on pull request blender/blender#111493 2023-08-28 13:18:03 +02:00
UI: Allow eyedropper outside of Blender (X11)

Applied, moved the comment on limitations into a code-comment as it's useful context for anyone reading the code.

@ideasman42 Thanks, that sounds like a good idea. Quick question though: I…

Vitor Boschi commented on pull request blender/blender#111429 2023-08-25 14:41:54 +02:00
Fix #110908: Crash when scrubbing timeline with sim node

Sometimes tests fail on the buildbot briefly and are fixed. You can usually fix that for a branch by merging main. Sometimes the test files have been updated too, which can cause failures when…

Vitor Boschi pushed to fix/geonodes_cache_assert at vitorboschi/blender 2023-08-25 14:40:19 +02:00
752f2a809b Merge remote-tracking branch 'origin/main' into fix/geonodes_cache_assert
a186f5e48a Cleanup: unused variable in release builds.
888a7f0bf0 Cleanup: remove C++ RawArray
b150b47720 UI: add a preference for the number of samples used for FPS playback
faff3d1d15 Cleanup: Comment style
Compare 76 commits »
Vitor Boschi commented on pull request blender/blender#111429 2023-08-25 14:31:44 +02:00
Fix #110908: Crash when scrubbing timeline with sim node

@HooglyBoogly I see the Cycles tests are all failing in the buildbot. Is that some known issue? I find it hard to believe this patch would make (all of) those fail.

Vitor Boschi commented on issue blender/blender#111303 2023-08-25 00:21:53 +02:00
UI: Linux & Mac Support for Eyedropper Outside Blender

Just for testing, I've found that on macOS (and it may be the same for Linux with X11 and Wayland), Blender will detect keyboard inputs outside Blender. So you can press Enter or Return on your…

Vitor Boschi created pull request blender/blender#111493 2023-08-25 00:19:39 +02:00
UI: Allow eyedropper outside of Blender (X11)
Vitor Boschi pushed to feature/eyedropper_x11 at vitorboschi/blender 2023-08-25 00:18:40 +02:00
295db2011d UI: Allow eyedropper outside of Blender (X11)
Vitor Boschi pushed to feature/eyedropper_x11 at vitorboschi/blender 2023-08-25 00:17:59 +02:00
a035bce786 UI: Allow eyedropper outside of Blender (X11)
ed5110c0ef Outliner: Port pose channel elements to new tree-element code design
607adbca47 install_linux_packages: Raise LLVM default version to 15.0.7.
584d5dbb20 UI: Rename Realtime GPU in compositor to GPU
f5b7813f3c Cleanup: Remove unnecessary mesh C API function
Compare 10 commits »
Vitor Boschi created branch feature/eyedropper_x11 in vitorboschi/blender 2023-08-25 00:17:59 +02:00
Vitor Boschi commented on issue blender/blender#111303 2023-08-24 19:07:21 +02:00
UI: Linux & Mac Support for Eyedropper Outside Blender

So it looks like things are a bit more complicated on X11 (and likely on other systems as well): the problem is that we don't receive any click event from outside of the Blender window, so…

Vitor Boschi commented on issue blender/blender#111303 2023-08-24 16:58:24 +02:00
UI: Linux & Mac Support for Eyedropper Outside Blender

I'll give it a shot on the X11 backend