Merge branch 'blender-v4.5-release'
This commit is contained in:
@@ -1228,7 +1228,6 @@ context_type_map = {
|
|||||||
"particle_system": [("ParticleSystem", False)],
|
"particle_system": [("ParticleSystem", False)],
|
||||||
"particle_system_editable": [("ParticleSystem", False)],
|
"particle_system_editable": [("ParticleSystem", False)],
|
||||||
"property": [("AnyType", False), ("str", False), ("int", False)],
|
"property": [("AnyType", False), ("str", False), ("int", False)],
|
||||||
"pointcloud": [("PointCloud", False)],
|
|
||||||
"pose_bone": [("PoseBone", False)],
|
"pose_bone": [("PoseBone", False)],
|
||||||
"pose_object": [("Object", False)],
|
"pose_object": [("Object", False)],
|
||||||
"scene": [("Scene", False)],
|
"scene": [("Scene", False)],
|
||||||
@@ -1276,6 +1275,13 @@ context_type_map = {
|
|||||||
"world": [("World", False)],
|
"world": [("World", False)],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if bpy.app.build_options.experimental_features:
|
||||||
|
for key, value in {
|
||||||
|
"pointcloud": [("PointCloud", False)],
|
||||||
|
}.items():
|
||||||
|
assert key not in context_type_map, "Duplicate, the member must be removed from one of the dictionaries"
|
||||||
|
context_type_map[key] = value
|
||||||
|
|
||||||
|
|
||||||
def pycontext2sphinx(basepath):
|
def pycontext2sphinx(basepath):
|
||||||
# Only use once. very irregular.
|
# Only use once. very irregular.
|
||||||
|
|||||||
Reference in New Issue
Block a user