This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/python/api2_2x/doc/Bpy_config.py
2007-05-05 03:35:12 +00:00

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
"""