Sean Kim Sean-Kim
  • Joined on 2023-12-14
Sean Kim pushed to gp-invert-icon-fix at Sean-Kim/blender 2024-02-02 21:07:51 +01:00
fafa49d5aa Fix: Adjust Grease Pencil invert icon
Sean Kim pushed to gp-invert-icon-fix at Sean-Kim/blender 2024-02-02 21:07:17 +01:00
eb71d9f7bc Fix: Exception thrown when displaying spreadsheet
319b911784 Cleanup: move hash and ghash utils to C++
9aa20a0979 Fix #54554: missing colorspace calling paint.image_paint() from python
2e02c0c515 UI: TreeView Changes
5ee72e812c Fix: DRW: Missing pointcloud dummy binding
Compare 10 commits »
Sean Kim created branch gp-invert-icon-fix in Sean-Kim/blender 2024-02-02 21:07:16 +01:00
Sean Kim commented on pull request blender/blender#117746 2024-02-02 09:20:06 +01:00
Sculpt: Disable sculpt brushes on invisible objects

@nickberckley I think I may have misunderstood a comment in the original issue then; I took

Yes. No operations should be allowed on hidden objects (and objects in hidden collections)

To…

Sean Kim commented on pull request blender/blender#117746 2024-02-02 08:32:52 +01:00
Sculpt: Disable sculpt brushes on invisible objects

Only adding Julien for now, since I'm unsure of the performance impacts of this change in actual usage; if it seems satisfactory I'll look for further reviewers afterwards.

Sean Kim created pull request blender/blender#117746 2024-02-02 08:29:20 +01:00
Sculpt: Disable sculpting on invisible objects
Sean Kim pushed to 112371-invisible-sculpt at Sean-Kim/blender 2024-02-02 08:19:04 +01:00
5e346b7ef1 Sculpt: Disable sculpting on invisible objects
31df006b39 UI: Two Misc Prop Dialog Title Changes
8b827a5bb5 Cleanup: spelling in comments
e72c9397f5 Cleanup: various non-functional changes for C++
c4a2858975 Cleanup: strip trailing space
Compare 10 commits »
Sean Kim created branch 112371-invisible-sculpt in Sean-Kim/blender 2024-02-02 08:19:04 +01:00
Sean Kim commented on issue blender/blender#117683 2024-02-01 21:28:24 +01:00
make icons causes changes to icon32_mod_explode.dat & prvicons.png

Just my two cents: I don't mind if this is kept closed for the purposes of this issue tracker, but I do think it would be valuable to have some kind of tracking for issues like this so they don't…

Sean Kim deleted branch 102585-mask-icon from Sean-Kim/blender 2024-02-01 21:06:56 +01:00
Sean Kim commented on issue blender/blender#112371 2024-02-01 04:16:51 +01:00
Sculpting/Painting on invisible objects

Should hopefully have a PR for this issue soon - I've got it working currently for individual objects being hidden, but not the hierarchy toggle.

Sean Kim deleted branch cleanup-automask from Sean-Kim/blender 2024-01-31 22:47:33 +01:00
Sean Kim pushed to 102585-automask-toggle-icon at Sean-Kim/blender 2024-01-31 22:43:05 +01:00
187d522cc7 Merge branch 'main' of projects.blender.org:blender/blender into 102585-automask-toggle-icon
50e1defad6 Remove automasking RNA properties in favor of python code
5fa61ee620 Cleanup: Move remaining spreadsheet editor code to C++ namespace
1934075d97 Fix: Memory leak in gizmo tooltip function
b0063a4690 Cleanup: Perform cleanup on sculpt_automasking.cc
Compare 96 commits »
Sean Kim commented on pull request blender/blender#117467 2024-01-31 21:20:37 +01:00
UI: Update default mask icon

Updated to fix the unintended changes, I had to manually revert the icon32_mod_explode.dat and prvicons.png - still unsure at the moment as to why they change on my laptop when running `make…

Sean Kim pushed to 102585-mask-icon at Sean-Kim/blender 2024-01-31 21:16:06 +01:00
3ae2bc3476 Merge branch 'main' of projects.blender.org:blender/blender into 102585-mask-icon
12839f2c93 Revert changes to icon32_mod_explode.dat and prvicons.png
7b77ba3cde Cleanup: Make format
02895d342c Cleanup: Small changes to asset shelf code
7fa5fc02b7 Cleanup: Move BLF headers to C++
Compare 51 commits »
Sean Kim pushed to cleanup-automask at Sean-Kim/blender 2024-01-31 20:22:02 +01:00
df9490c0b5 Update callers of automask::cache_init
Sean Kim commented on pull request blender/blender#117651 2024-01-31 20:19:06 +01:00
Cleanup: Perform cleanup on sculpt_automasking.cc

Oh, I just realized I didn't change the callers; ignore review request for a bit.

Sean Kim pushed to cleanup-automask at Sean-Kim/blender 2024-01-31 20:16:37 +01:00
062eb1bcc3 Merge branch 'main' of projects.blender.org:blender/blender into cleanup-automask
41c651d872 Address PR comments
7fa5fc02b7 Cleanup: Move BLF headers to C++
e89b4927e4 Cleanup: UI: Remove unused button creation functions
2571bb18be Cleanup: UI: Remove unnecessary function for setting button string
Compare 87 commits »
Sean Kim commented on pull request blender/blender#117651 2024-01-31 19:52:12 +01:00
Cleanup: Perform cleanup on sculpt_automasking.cc

I suppose an alternate option would be to have some form of overload:

std::unique_ptr<Cache> cache_init(const Sculpt *sd, Object *ob);
std::unique_ptr<Cache> cache_init(const Sculpt *sd,…
Sean Kim commented on pull request blender/blender#117651 2024-01-31 19:25:40 +01:00
Cleanup: Perform cleanup on sculpt_automasking.cc

I'll remove the boilerplate parameters - for the non-null pointer to reference, do you just mean changing the callers to be cache_init(s, &brush, ... ) and cache_init(s, nullptr, ...)?