[c5bce9ce8e1] cycles_texture_cache: Cycles: removed “.” at the end of texture cache help text

Stefan Werner noreply at git.blender.org
Mon Nov 27 20:40:15 CET 2017


Commit: c5bce9ce8e130686b253a98686294a6c38e9bc69
Author: Stefan Werner
Date:   Tue May 9 12:25:26 2017 +0200
Branches: cycles_texture_cache
https://developer.blender.org/rBc5bce9ce8e130686b253a98686294a6c38e9bc69

Cycles: removed “.” at the end of texture cache help text

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index f8363390829..7d93a85468d 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -619,44 +619,44 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
         cls.texture_cache_size = IntProperty(
             name="Texture Cache Size (MB)",
             default=0,
-            description="The size of the OpenImageIO texture cache in MB. A value of 0 turns off texture caching. Typical values are in the range of 100s of MB.",
+            description="The size of the OpenImageIO texture cache in MB. A value of 0 turns off texture caching. Typical values are in the range of 100s of MB",
             min=0
         )
 
         cls.texture_auto_convert = BoolProperty(
             name="Auto Convert Textures",
             default=True,
-            description="Automatically convert textures to .tx files for optimal texture cache performance."
+            description="Automatically convert textures to .tx files for optimal texture cache performance"
         )
 
         cls.texture_accept_unmipped = BoolProperty(
             name="Accept Unmipped",
             default=True,
-            description="Texture cached rendering without mip mapping is very expensive. Uncheck to prevent Cycles from using textures that are not mip mapped."
+            description="Texture cached rendering without mip mapping is very expensive. Uncheck to prevent Cycles from using textures that are not mip mapped"
         )
 
         cls.texture_accept_untiled = BoolProperty(
             name="Accept Untiled",
             default=True,
-            description="Texture cached rendering without tiled textures is very expensive. Uncheck to prevent Cycles from using textures that are not tiled."
+            description="Texture cached rendering without tiled textures is very expensive. Uncheck to prevent Cycles from using textures that are not tiled"
         )
 
         cls.texture_auto_tile = BoolProperty(
             name="Auto Tile",
             default=True,
-            description="On the fly creation of tiled versions of textures that are not tiled. This can increase render time but helps reduce memory usage."
+            description="On the fly creation of tiled versions of textures that are not tiled. This can increase render time but helps reduce memory usage"
         )
 
         cls.texture_auto_mip = BoolProperty(
             name="Auto Mip",
             default=True,
-            description="On the fly creation of mip maps of textures that are not mip mapped. This can increase render time but helps reduce memory usage."
+            description="On the fly creation of mip maps of textures that are not mip mapped. This can increase render time but helps reduce memory usage"
         )
  
         cls.texture_tile_size = IntProperty(
             name="Tile Size",
             default=64,
-            description="The size of tiles that Cycles uses for auto tiling."
+            description="The size of tiles that Cycles uses for auto tiling"
         )
 
         cls.ao_bounces = IntProperty(



More information about the Bf-blender-cvs mailing list