- move: material.add_texture(tex, coords, mapto) --> material.texture_slots.add()
- added material.texture_slots.create(index), material.texture_slots.clear(index)
- texture slot functions also work for lamp and world now.

Other minor changes
- allow rna functions to set FUNC_NO_SELF and FUNC_USE_SELF_ID at once.
- [#23317] Changed some operators' RNA to accept lengths, a modification I made to this patch made it not work as intended, removed this edit so unit buttons appier in the UI for certain operators.
- Sphinx doc gen, 2 columns rather then 3, didnt quite fit in some cases.
This commit is contained in:
2010-09-03 14:53:54 +00:00
parent 52cefa4bc1
commit 0cf0f5a622
11 changed files with 183 additions and 110 deletions

View File

@@ -443,7 +443,7 @@ def rna2sphinx(BASEPATH):
fw("\n")
fw(" Access to blenders internal data\n")
fw("\n")
fw(" :type: :class:`bpy.types.Main`\n")
fw(" :type: :class:`bpy.types.BlendData`\n")
file.close()
EXAMPLE_SET_USED.add("bpy.data")
@@ -655,7 +655,7 @@ def rna2sphinx(BASEPATH):
fw(".. rubric:: Inherited Properties\n\n")
fw(".. hlist::\n")
fw(" :columns: 3\n\n")
fw(" :columns: 2\n\n")
for line in lines:
fw(line)
@@ -680,7 +680,7 @@ def rna2sphinx(BASEPATH):
fw(".. rubric:: Inherited Functions\n\n")
fw(".. hlist::\n")
fw(" :columns: 3\n\n")
fw(" :columns: 2\n\n")
for line in lines:
fw(line)
@@ -694,7 +694,7 @@ def rna2sphinx(BASEPATH):
fw(".. rubric:: References\n\n")
fw(".. hlist::\n")
fw(" :columns: 3\n\n")
fw(" :columns: 2\n\n")
for ref in struct.references:
ref_split = ref.split(".")