nutti / fake-bpy-module

Fake Blender Python API module collection for the code completion.
MIT License
1.37k stars 97 forks source link

Cleanup: Ensure all references to bpy classes in mod files are class-ref #282

Closed Road-hog123 closed 3 months ago

Road-hog123 commented 3 months ago

A number of references to Blender classes not in the form :class:`bpy.example` existed in the mod files; this PR fixes that.

Of note: inline markup like this must be surrounded by "non-word characters", so BMIter[BMVert] requires an escaped space: :class:`BMIter`\ [:class:`BMVert`].

nutti commented 3 months ago

@Road-hog123 Thank you for your contribution.