39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# bpy module and the bpy PyType object
 | 
						|
 | 
						|
"""
 | 
						|
bpy.config
 | 
						|
==========
 | 
						|
 | 
						|
This module gives you direct access to blenders preferences.
 | 
						|
 | 
						|
@var undoSteps: number of undo steps to store.
 | 
						|
@type undoSteps: int
 | 
						|
@var textureTimeout: free textures from openGL memory if unused after this time.
 | 
						|
@type textureTimeout: int
 | 
						|
@var textureCollectRate: tag textures as being used at this interval of time.
 | 
						|
@type textureCollectRate: int
 | 
						|
@var sequenceMemCacheLimit: how much memory to use for a sequencer cache.
 | 
						|
@type sequenceMemCacheLimit: int
 | 
						|
@var fontSize: display size for fonts in the user interface.
 | 
						|
@type fontSize: int
 | 
						|
@var yfExportDir: yafray export path.
 | 
						|
@type yfExportDir: string
 | 
						|
@var fontDir: default font path.
 | 
						|
@type fontDir: string
 | 
						|
@var renderDir: default render path.
 | 
						|
@type renderDir: string
 | 
						|
@var textureDir: default texture path.
 | 
						|
@type textureDir: string
 | 
						|
@var userScriptsDir: path for user scripts.
 | 
						|
@type userScriptsDir: string
 | 
						|
@var texturePluginsDir: default texture plugin path.
 | 
						|
@type texturePluginsDir: string
 | 
						|
@var soundDir: default sound path.
 | 
						|
@type soundDir: string
 | 
						|
@var sequencePluginsDir: default sequencer plugin path.
 | 
						|
@type sequencePluginsDir: string
 | 
						|
@var tempDir: path where temp files are saved.
 | 
						|
@type tempDir: string
 | 
						|
"""
 | 
						|
 |