[Bf-docboard-svn] bf-manual: [7741] trunk/blender_docs/manual/render/cycles/baking.rst: Merge branch 'blender-2.92-release'

Aaron Carlisle noreply at blender.org
Tue Feb 9 01:18:00 CET 2021


Revision: 7741
          https://developer.blender.org/rBM7741
Author:   Blendify
Date:     2021-02-09 01:18:00 +0100 (Tue, 09 Feb 2021)
Log Message:
-----------
Merge branch 'blender-2.92-release'

Modified Paths:
--------------
    trunk/blender_docs/manual/getting_started/about/history.rst
    trunk/blender_docs/manual/render/cycles/baking.rst

Property Changed:
----------------
    trunk/blender_docs/

Index: trunk/blender_docs
===================================================================
--- trunk/blender_docs	2021-02-09 00:02:51 UTC (rev 7740)
+++ trunk/blender_docs	2021-02-09 00:18:00 UTC (rev 7741)

Property changes on: trunk/blender_docs
___________________________________________________________________
Modified: svn:mergeinfo
## -1 +1 ##
-/branches/blender-2.92-release/blender_docs:7610-7735
\ No newline at end of property
+/branches/blender-2.92-release/blender_docs:7610-7740
\ No newline at end of property
Modified: trunk/blender_docs/manual/getting_started/about/history.rst
===================================================================
--- trunk/blender_docs/manual/getting_started/about/history.rst	2021-02-09 00:02:51 UTC (rev 7740)
+++ trunk/blender_docs/manual/getting_started/about/history.rst	2021-02-09 00:18:00 UTC (rev 7741)
@@ -270,3 +270,6 @@
 `2.91 <https://www.blender.org/download/releases/2-91/>`__ -- November 2020:
    Outliner improvements, property search, improved mesh Boolean operations, animation curves,
    volume object and display improvements, and more refined sculpting tools.
+`2.92 <https://www.blender.org/download/releases/2-92/>`__ -- February 2021:
+   Geometry nodes, primitive add tool, sculpting improvements, Grease Pencil curve editing,
+   Cycles vertex color baking, APIC fluid simulations, video sequencer improvements, and much more.

Modified: trunk/blender_docs/manual/render/cycles/baking.rst
===================================================================
--- trunk/blender_docs/manual/render/cycles/baking.rst	2021-02-09 00:02:51 UTC (rev 7740)
+++ trunk/blender_docs/manual/render/cycles/baking.rst	2021-02-09 00:18:00 UTC (rev 7741)
@@ -4,11 +4,6 @@
 Render Baking
 *************
 
-.. admonition:: Reference
-   :class: refbox
-
-   :Panel:     :menuselection:`Render --> Bake`
-
 Cycles shaders and lighting can be baked to image textures.
 This has a few different purposes, most commonly:
 
@@ -28,7 +23,8 @@
 Baking requires a mesh to have a UV map, and either vertex colors
 or an Image Texture node with an image to be baked to.
 
-The :term:`Active` Image Texture node or vertex color is used as the baking target.
+The :term:`Active` :doc:`Image Texture </render/shader_nodes/textures/image>`
+node or :doc:`Vertex Color </sculpt_paint/vertex_paint/index>` layer is used as the baking target.
 
 Use Render Bake in intensive light/shadow solutions,
 such as AO or soft shadows from area lights. If you bake AO for the main objects,
@@ -41,55 +37,142 @@
 Settings
 ========
 
-Bake Types
-----------
+.. admonition:: Reference
+   :class: refbox
 
-Combined
-   Bakes all materials, textures, and lighting except specularity.
+   :Panel:     :menuselection:`Render --> Bake`
 
-   The passes that contribute to the combined pass can be toggled individually to form the final map.
-Ambient Occlusion
-   Bakes ambient occlusion as specified in the World panels. Ignores all lights in the scene.
+.. _bpy.ops.object.bake:
 
-Shadow
-   Bakes shadows and lighting.
-Normal
-   Bakes normals to an RGB image.
+Bake
+   Perform the baking operation.
 
-   Space
-      Normals can be baked in different spaces:
+.. _bpy.types.RenderSettings.use_bake_multires:
 
-      Object
-         Normals in object coordinates, independent of object transformation, but dependent on deformation.
-      Tangent
-         Normals in tangent space coordinates, independent of object transformation and deformation.
-         This is the default, and the right choice in most cases, since then the normal map can be used for
-         animated objects too.
-   Swizzle R, G, B
-      Axis to bake into the red, green and blue channel.
+Bake from Multires
+   Bake directly from multires object.
 
-   For materials the same spaces can be chosen in the image texture options
+Bake Type
+   Type of pass to bake.
+
+   :Combined:
+      Bakes all materials, textures, and lighting except specularity.
+      The passes that contribute to the combined pass can be toggled individually to form the final map.
+   :Ambient Occlusion:
+      Bakes ambient occlusion as specified in the World panels. Ignores all lights in the scene.
+   :Shadow:
+      Bakes shadows and lighting.
+   :Normal:
+      Bakes normals to an RGB image.
+   :UV:
+      Mapped UV coordinates, used to represent where on a mesh a texture gets mapped too.
+      This is represented through the red and green channels of the image,
+      the blue channel is encoded with a constant value of 1 but does not hold any information.
+   :Roughness:
+      Bakes the roughness pass of a material.
+   :Emit:
+      Bakes Emission, or the Glow color of a material.
+   :Environment:
+      Bakes the environment (i.e. the world surface shader defined for the scene) onto
+      the selected object(s) as seen by rays cast from the world origin.
+   :Diffuse:
+      Bakes the diffuse pass of a material.
+   :Glossy:
+      Bakes the glossiness pass of a material.
+   :Transmission:
+      Bakes the transmission pass of a material.
+
+
+Influence
+---------
+
+.. rubric:: Combined
+
+.. _bpy.types.BakeSettings.use_pass_direct:
+
+Lighting
+   Direct
+      Add direct lighting contribution.
+
+   .. _bpy.types.BakeSettings.use_pass_indirect:
+
+   Indirect
+      Add indirect lighting contribution.
+
+   .. _py.types.BakeSettings.use_pass_diffuse:
+
+Contributions
+   Diffuse
+      Add diffuse contribution.
+
+   .. _bpy.types.BakeSettings.use_pass_glossy:
+
+   Glossy
+      Add glossy contribution.
+
+   .. _bpy.types.BakeSettings.use_pass_transmission:
+
+   Transmission
+      Add transmission contribution.
+
+   .. _bpy.types.BakeSettings.use_pass_ambient_occlusion:
+
+   Ambient Occlusion
+      Add ambient occlusion contribution.
+
+   .. _bpy.types.BakeSettings.use_pass_emit:
+
+   Emit
+      Add emission contribution.
+
+
+.. rubric:: Diffuse, Glossy, Transmission
+
+Contributions
+   Direct
+      See :ref:`above <bpy.types.BakeSettings.use_pass_direct>`.
+   Indirect
+      See :ref:`above <bpy.types.BakeSettings.use_pass_indirect>`.
+
+   .. _bpy.types.BakeSettings.use_pass_color:
+
+   Color
+      Colorize the pass.
+
+      - If only *Color* is selected you get the pass color,
+        which is a property of the surface and independent of sampling refinement.
+      - If *Color* is not selected, you get the direct and/or indirect contributions in gray-scale.
+      - If *Color* and either *Direct* or *Indirect* are selected, you get the direct and/or indirect contributions colored.
+
+
+.. rubric:: Normal
+
+.. _bpy.types.BakeSettings.normal_space:
+
+Space
+   Normals can be baked in different spaces:
+
+   For materials, the same spaces can be chosen in the image texture options
    next to the existing *Normal Map* setting. For correct results,
    the setting here should match the setting used for baking.
 
-UV
-   Mapped UV coordinates, used to represent where on a mesh a texture gets mapped too.
-   This is represented through the red and green channels of the image,
-   the blue channel is encoded with a constant value of 1 but does not hold any information.
-Emit
-   Bakes Emission, or the Glow color of a material.
-Environment
-   Bakes the environment (i.e. the world surface shader defined for the scene) onto
-   the selected object(s) as seen by rays cast from the world origin.
-Diffuse, Glossy, Transmission
-   Bakes the diffuse, glossiness, or transmission pass of a material.
+   :Object:
+      Normals in object coordinates, independent of object transformation, but dependent on deformation.
+   :Tangent:
+      Normals in tangent space coordinates, independent of object transformation and deformation.
+      This is the default, and the right choice in most cases, since then the normal map can be used for
+      animated objects too.
 
-   - If only color is selected you get the pass color,
-     which is a property of the surface and independent of sampling refinement.
-   - If color is not selected, you get the direct and/or indirect contributions in gray-scale.
-   - If color and either direct or indirect are selected, you get the direct and/or indirect contributions colored.
+.. _bpy.types.BakeSettings.normal_r:
+.. _bpy.types.BakeSettings.normal_g:
+.. _bpy.types.BakeSettings.normal_b:
 
+Swizzle R, G, B
+   Axis to bake into the red, green and blue channel.
 
+
+.. _bpy.types.BakeSettings.use_selected_to_active:
+
 Selected to Active
 ------------------
 
@@ -96,10 +179,10 @@
 Bake shading on the surface of selected objects to the active object.
 The rays are cast from the low-poly object inwards towards the high-poly object.
 If the high-poly object is not entirely involved by the low-poly object, you can tweak the rays start point with
-*Ray Distance* or *Cage Extrusion* (depending on whether or not you are using cage).
+*Max Ray Distance* or *Extrusion* (depending on whether or not you are using cage).
 For even more control you can use a *Cage Object*.
 
-.. note:: Memory Usage
+.. note::
 
    There is a CPU fixed memory footprint for every object used to bake from.
    In order to avoid crashes due to lack of memory, the high-poly objects can be joined before the baking process.
@@ -106,6 +189,8 @@
    The render tiles parameter also influence the memory usage, so the bigger the tile the less overhead you have,
    but the more memory it will take during baking (either in GPU or CPU).
 
+.. _bpy.types.BakeSettings.use_cage:
+
 Cage
    Cast rays to active object from a cage.
    A cage is a ballooned-out version of the low-poly mesh created either automatically
@@ -113,9 +198,13 @@
    When not using a cage the rays will conform to the mesh normals. This produces glitches on the edges,
    but it is a preferable method when baking into planes to avoid the need of adding extra loops around the edges.
 
+   .. _bpy.types.BakeSettings.cage_object:
+
    Cage Object
       Object to use as cage instead of calculating the cage from the active object with the *Cage Extrusion*.
 
+.. _bpy.types.BakeSettings.cage_extrusion:
+
 Cage Extrusion
    Distance to use for the inward ray cast when using *Selected to Active* and *Cage*.
    The inward rays are casted from a version of the active object with disabled Edge Split Modifiers.
@@ -128,6 +217,8 @@
       you can create a copy of the base mesh and modify it to use as a *Cage*.
       Both meshes need to have the same :term:`Topology` (number of faces and face order).
 

@@ Diff output truncated at 10240 characters. @@


More information about the Bf-docboard-svn mailing list