Iliya Katushenock mod_moder
  • Russian
  • Just student

  • Joined on 2019-01-20
Iliya Katushenock commented on issue blender/blender#108889 2023-06-12 14:21:02 +02:00
Typo in glTF 2.0 Blender Manual

Hi, thanks for report, but this should be moved into manual repo https://projects.blender.org/blender/blender-manual/issues

Iliya Katushenock pushed to tmp_fix_depgraph_vis_flags at mod_moder/blender 2023-06-12 14:04:38 +02:00
f5643ec3b4 progress
Iliya Katushenock created pull request blender/blender#108888 2023-06-12 13:58:19 +02:00
Fix: Dependency graph visibility flags counting a to nodes as a from
Iliya Katushenock created branch tmp_fix_depgraph_vis_flags in mod_moder/blender 2023-06-12 13:55:41 +02:00
Iliya Katushenock pushed to tmp_fix_depgraph_vis_flags at mod_moder/blender 2023-06-12 13:55:41 +02:00
245cdca18d init
acb4f89a40 UI: Add filtering support to UI views
b8ce3f69b1 Cleanup: Fix Compilation Warning
b67e5492c3 Outliner: Port texture elements to new tree-element code design
33301a06ce Cleanup: Solve Compilation Warning
Compare 10 commits »
Iliya Katushenock commented on issue blender/blender#108817 2023-06-12 11:36:40 +02:00
Geometry Nodes: Extrude Mesh node set to "Vertices" crashes Blender when appended into another file

Oh, this actually caused by non-existed edge attribute to resize.

Iliya Katushenock reopened issue blender/blender#107940 2023-06-12 01:37:23 +02:00
macbook pro m2 x Blender
Iliya Katushenock commented on issue blender/blender#108867 2023-06-11 23:47:35 +02:00
Regression: Modifiers: Crash when adding Weighted Normal to large mesh

Probably it's regression?

Iliya Katushenock commented on issue blender/blender#108867 2023-06-11 21:38:58 +02:00
Regression: Modifiers: Crash when adding Weighted Normal to large mesh

Unable to reproduce in: old 3.4, 3.5, last 3.4, 3.6, 4.0, 4.0 debug. Boths by steps and using example file.

Iliya Katushenock commented on pull request blender/blender#108775 2023-06-11 19:18:27 +02:00
Cleanup: simplify keyword recognition in text editor

Seems like the search speed would be better if you check the words by their popularity of usage in the language? There is a complicated heuristic here, is it necessary to pay attention to this…

Iliya Katushenock closed issue blender/blender#108863 2023-06-11 19:11:45 +02:00
procedure crowds is not woking and i pay for it
Iliya Katushenock commented on issue blender/blender#108863 2023-06-11 19:11:43 +02:00
procedure crowds is not woking and i pay for it

This report does not contain all the requested information, which is required for us to investigate the issue.

Please submit a new report and carefully follow the instructions. Be sure to…

Iliya Katushenock closed issue blender/blender#108862 2023-06-11 18:24:16 +02:00
Report: Error Python: Traceback (most recent call last): File “C:\Program Files\Blender Foundation\Blender 3.513.5\scripts\startup\bl_operators\wm.py”, line 2175, in execute owner_id = workspace.owner_ids[self.owner_id] KeyError: 'bpy_prop_collection[ke
Iliya Katushenock commented on issue blender/blender#108862 2023-06-11 18:24:04 +02:00
Report: Error Python: Traceback (most recent call last): File “C:\Program Files\Blender Foundation\Blender 3.513.5\scripts\startup\bl_operators\wm.py”, line 2175, in execute owner_id = workspace.owner_ids[self.owner_id] KeyError: 'bpy_prop_collection[ke

This report does not contain all the requested information, which is required for us to investigate the issue.

Please submit a new report and carefully follow the instructions. Be sure to…

Iliya Katushenock commented on pull request blender/blender#108775 2023-06-11 17:32:36 +02:00
Cleanup: simplify keyword recognition in text editor

If runtime sort is so important, then:

static Span<StringRef> py_map_get()
{
  static const Array<StringRef> map = [](){ return sort({"aaa", "bbb", ...})}();
  return map;
}
Iliya Katushenock commented on issue blender/blender#108853 2023-06-11 11:18:08 +02:00
Wrong editor type saved in workspace

As far as I know, changing the editor type doesn't create an undo step, and it doesn't seem to create anything to save. If after that you perform any other action, in theory, everything should…

Iliya Katushenock commented on issue blender/blender#105321 2023-06-11 10:11:52 +02:00
Replace legacy instancing panel

@hmturnbull bpy.ops.object.duplicates_make_real()'s command should alredy solve this problem?

Iliya Katushenock commented on pull request blender/blender#108775 2023-06-11 10:06:12 +02:00
Cleanup: simplify keyword recognition in text editor

Also: StringRef already have == operator. Use Span to avoid passing containers for read (const Array<> &src -> const Span<> src). StringRef is a ref type, can passed by value. For…

Iliya Katushenock commented on pull request blender/blender#108775 2023-06-11 10:04:38 +02:00
Cleanup: simplify keyword recognition in text editor

@guishe

static Span<StringRef> py_map_get()
{
  static Array<StringRef> map = {"aaa", "bbb", ...};
  return map;
}