Cleanup: correct RST syntax, spelling & adjust quotes

This commit is contained in:
Campbell Barton
2025-01-21 16:51:40 +11:00
parent 5614d2543b
commit 18783c5699
7 changed files with 18 additions and 17 deletions

View File

@@ -16,13 +16,13 @@ class CustomHydraRenderEngine(bpy.types.HydraRenderEngine):
# Name of the render plugin.
bl_delegate_id = "HdCustomRendererPlugin"
# Use MaterialX instead of UsdPreviewSurface for materials.
# Use MaterialX instead of `UsdPreviewSurface` for materials.
bl_use_materialx = True
# Register path to plugin.
@classmethod
def register(cls):
# Make pxr module available, for running as bpy pip package.
# Make `pxr` module available, for running as `bpy` PIP package.
bpy.utils.expose_bundled_modules()
import pxr.Plug

View File

@@ -187,7 +187,7 @@ import bpy
import bpy.types
import textwrap
# Make pxr module available, for running as bpy pip package.
# Make `pxr` module available, for running as `bpy` PIP package.
bpy.utils.expose_bundled_modules()
import pxr.Gf as Gf