Hi, thanks for report, but this should be moved into manual repo https://projects.blender.org/blender/blender-manual/issues
Oh, this actually caused by non-existed edge attribute to resize.
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.
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…
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…
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…
If runtime sort is so important, then:
static Span<StringRef> py_map_get()
{
static const Array<StringRef> map = [](){ return sort({"aaa", "bbb", ...})}();
return map;
}
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…
@hmturnbull bpy.ops.object.duplicates_make_real()
's command should alredy solve this problem?
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…
static Span<StringRef> py_map_get()
{
static Array<StringRef> map = {"aaa", "bbb", ...};
return map;
}