Julian Eisel JulianEisel
  • Amsterdam
  • Asset system (development lead), UI (developer & module coordindator), VR (initial development).

  • Joined on 2013-12-12
Julian Eisel pushed to main at blender/blender 2024-05-30 17:09:30 +02:00
44e9544199 Refactor: Extract button text editing data for input handling
Julian Eisel merged pull request blender/blender#122332 2024-05-30 17:09:30 +02:00
Refactor: Extract button text editing data for input handling
Julian Eisel commented on pull request blender/blender#122500 2024-05-30 17:02:28 +02:00
WIP: Action+Slot selector in Properties panels
  • It doesn't seem to be possible to show an icon.

It should work if the RNA struct has an icon associated via RNA_def_struct_ui_icon().

  • The Binding.name property is used for…
Julian Eisel pushed to temp-refactor-text-edit-handling at JulianEisel/blender 2024-05-30 15:39:42 +02:00
3e525b8f2a Correct comment
Julian Eisel commented on pull request blender/blender#122332 2024-05-30 15:33:33 +02:00
Refactor: Extract button text editing data for input handling

Added the prefix for now (like other structs there). I'm currently looking at moving text editing functions to a separate file, can use namespacing then.

Julian Eisel pushed to temp-refactor-text-edit-handling at JulianEisel/blender 2024-05-30 15:32:11 +02:00
eb37d8c196 Cleanup: Use ui prefix for struct
f922beecb6 Improve naming & comments
5c7442da63 Remove now unused str member
Compare 3 commits »
Julian Eisel commented on pull request blender/blender#122332 2024-05-30 15:22:05 +02:00
Refactor: Extract button text editing data for input handling

Oh yes indeed, this is unused now. Just forgot while refactoring I guess.

Julian Eisel pushed to temp-refactor-text-edit-handling at JulianEisel/blender 2024-05-30 11:25:03 +02:00
e465ec2594 Move text edit undo stack to text editing data
Julian Eisel opened issue blender/blender#122439 2024-05-29 15:13:28 +02:00
Finish Asset System Refactor
Julian Eisel commented on issue blender/blender#120013 2024-05-29 15:10:22 +02:00
Pose Library - asset shelf sub-catalogs gone after restart

What's the status of this? Is it still an issue? AFAICS nobody has been able to reproduce this so far, correct?

Julian Eisel commented on issue blender/blender#103620 2024-05-29 15:00:21 +02:00
Blender Essentials Assets Bundle - Technical Design

Any reason to keep this open? I think this can be considered done.

Julian Eisel closed pull request blender/blender#105841 2024-05-29 14:50:37 +02:00
Assets: Implement Traits
Julian Eisel commented on pull request blender/blender#105841 2024-05-29 14:50:35 +02:00
Assets: Implement Traits

Closing this as there have been objections on the design, see !105807.

Julian Eisel closed issue blender/blender#105807 2024-05-29 14:48:46 +02:00
Asset Types & Traits
Julian Eisel commented on issue blender/blender#105807 2024-05-29 14:48:43 +02:00
Asset Types & Traits

Closing this since there have been objections to the design, see above.

I think the idea of traits could still be valuable, but maybe only as a runtime construct. I.e. rather than storing…

Julian Eisel closed issue blender/blender#105808 2024-05-29 14:46:24 +02:00
Implement Asset Traits
Julian Eisel commented on issue blender/blender#105808 2024-05-29 14:46:21 +02:00
Implement Asset Traits

Closing this since there have been objections to the design, see #105841.

I think the idea of traits could still be valuable, but maybe only as a runtime construct. I.e. rather than storing…

Julian Eisel pushed to temp-refactor-text-edit-handling at JulianEisel/blender 2024-05-28 15:27:48 +02:00
cf21082de5 Merge branch 'main' into temp-refactor-text-edit-handling
ceeaea0c8a Fix: Switch to scheduled trigger for appropriate permission scope in workflow
b15bc1b5bb Extensions: add the blender version to the remote URL
171319d9ef Extensions: send access token for HTTP requests
a55c3f503c Cleanup: quiet switch warning
Compare 41 commits »
Julian Eisel commented on pull request blender/blender#122365 2024-05-28 13:14:44 +02:00
WIP: Python API: Add link/append pre/post handlers

Quite sure this is useful, and long requested. The main question for me is when exactly the callbacks should fire. I guess the post callbacks should fire only after data is instantiated, and after versioning. So really at the end of BKE_blendfile_append()/BKE_blendfile_link(). Technically operators may still perform further work as part of the linking/appending, but practically I think this would be fine.

Julian Eisel commented on pull request blender/blender-developer-docs#60 2024-05-28 12:56:42 +02:00
Bug Reports: Floating point precision bug handling

First of all, this goes far beyond the UI. It's a general discussion on floating point errors (as they appear in rendering, nodes, tools, ...) and how we deal with them from a product, development…