Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Bpy_config.py « doc « api2_2x « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec3eb261c034459c8294713f5b4443eda03e8194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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
"""