From 1f6c2507f80ce4330fd9ddad8b4ea62086008012 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 29 Mar 2022 10:16:05 -0500 Subject: Cleanup: Remove legacy dupli system from point cloud object The "dupli" system now has a faster, more powerful, and more flexible alternative with geometry nodes. Since the point cloud objects haven't been exposed in the non-experimental UI yet, we can remove the dupli implementation and the panel for the object type. Differential Revision: https://developer.blender.org/D14482 --- release/scripts/startup/bl_ui/properties_object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py index 89f840306e1..44c30cf4372 100644 --- a/release/scripts/startup/bl_ui/properties_object.py +++ b/release/scripts/startup/bl_ui/properties_object.py @@ -246,7 +246,7 @@ class OBJECT_PT_instancing(ObjectButtonsPanel, Panel): def poll(cls, context): ob = context.object # FONT objects need (vertex) instancing for the 'Object Font' feature - return (ob.type in {'MESH', 'EMPTY', 'POINTCLOUD', 'FONT'}) + return (ob.type in {'MESH', 'EMPTY', 'FONT'}) def draw(self, context): layout = self.layout -- cgit v1.2.3