New Scene now has the popup from 2.4x which gives the option to copy.

Added some test code for rna_info to create a big list of property+type+descriptions, useful for api name review.
This commit is contained in:
2010-06-15 17:14:21 +00:00
parent 982cd944a4
commit 42ab9ed59a
2 changed files with 17 additions and 1 deletions

View File

@@ -620,3 +620,19 @@ def BuildRNAInfo():
# print(rna_info)
return InfoStructRNA.global_lookup, InfoFunctionRNA.global_lookup, InfoOperatorRNA.global_lookup, InfoPropertyRNA.global_lookup
if __name__ == "__main__":
import rna_info
struct = rna_info.BuildRNAInfo()[0]
data = ""
for struct_id, v in sorted(struct.items()):
struct_id_str = "".join(sid for sid in struct_id if struct_id)
props = [(prop.identifier, prop) for prop in v.properties]
for prop_id, prop in sorted(props):
data += "%s.%s: %s %s\n" % (struct_id_str, prop.identifier, prop.type, prop.description)
text = bpy.data.texts.new(name="api.py")
text.from_string(data)