twee drie jaar geleden heb ik ook al met Lego in Blender gespeeld ... moet ik nog op mijn (oude) PC ergens kunnen vinden.
Maar, het voorbeeld en de twee 'hulp-programmas' , ziet er fantastisch uit.
Bedankt voor de link ...
Van het www en alle drie stappen gedaan!
Overigens, indien het nodig is overal de Ctlr-N los te laten op alle objecten
dan heb je wel een script nodig om dat te doen
import bpy
meshes = [el for el in bpy.data.objects if el.type == "MESH"]
print("\n===========start===========\n")
for el in meshes:
print("=========== ", el.name , " ===========")
bpy.ops.object.mode_set(mode='OBJECT')
bpy.ops.object.select_all(action='TOGGLE')
el.select = True
bpy.context.active_object.name = el.name
bpy.ops.object.editmode_toggle()
bpy.ops.mesh.normals_make_consistent(inside=False)
bpy.ops.object.editmode_toggle()
bpy.ops.object.select_all(action='TOGGLE')
heeft dit gedaan
:
===========start===========
=========== Electric_Mindstorms_NXT_(Complete)__01.002 ===========
=========== Electric_Mindstorms_NXT_Light_Sensor__01 ===========
=========== Electric_Mindstorms_NXT_Light_Sensor__02 ===========
=========== Electric_Mindstorms_NXT_Motor__01 ===========
=========== Electric_Mindstorms_NXT_Motor__02 ===========
=========== Electric_Mindstorms_NXT_Motor__02 ===========
=========== Electric_Mindstorms_NXT_Touch_Sensor_(Button_Not_Pressed)__01 =========
=========== Electric_Mindstorms_NXT_(Complete)__01 ===========
=========== mouth ===========
=========== Technic_Angle_Connector__1__01 ===========
=========== Technic_Angle_Connector__1__02 ===========
=========== Technic_Angle_Connector__1__03 ===========
=========== Technic_Angle_Connector__1__04 ===========
=========== Technic_Angle_Connector__2_(180_degree)__01 ===========
=========== Technic_Axle__3__01 ===========
=========== Technic_Axle__3__02 ===========
=========== Technic_Axle__3_with_Stud__01 ===========
=========== Technic_Axle__3_with_Stud__02 ===========
=========== Technic_Axle__5.5_with_Stop__01 ===========
=========== Technic_Axle__5.5_with_Stop__02 ===========
=========== Technic_Axle__5__01 ===========
=========== Technic_Axle__5__02 ===========
=========== Technic_Axle__5__03 ===========
=========== Technic_Axle__5__04 ===========
=========== Technic_Axle_Pin_with_Friction__01 ===========
=========== Technic_Axle_Pin_with_Friction__02 ===========
=========== Technic_Axle_Pin_with_Friction__03 ===========
=========== Technic_Beam__3__01 ===========
=========== Technic_Beam__3__02 ===========
=========== Technic_Beam__3_x__0.5_Liftarm_with_Boss_and_Pin__01 ===========
=========== Technic_Beam__3_x__0.5_Liftarm_with_Boss_and_Pin__02 ===========
=========== Technic_Beam__3_x__5_Bent_90__01 ===========
=========== Technic_Beam__3_x__5_Bent_90__02 ===========
=========== Technic_Beam__4_x__4_Liftarm_Bent_53.13__01 ===========
=========== Technic_Beam__4_x__4_Liftarm_Bent_53.13__02 ===========
=========== Technic_Beam__4_x__4_Liftarm_Bent_53.13__03 ===========
=========== Technic_Beam__4_x__6_Liftarm_Bent_53.13__01 ===========
=========== Technic_Beam__4_x__6_Liftarm_Bent_53.13__02 ===========
=========== Technic_Cross_Block_1_x_3_(Pin/Pin/Pin)_with_4_Pins__01 ===========
=========== Technic_Gear_36_Tooth_Double_Bevel__01 ===========
=========== Technic_Gear_36_Tooth_Double_Bevel__02 ===========
=========== Technic_Pin_Long_with_Friction_and_Slot__01 ===========
=========== Technic_Pin_Long_with_Friction_and_Slot__02 ===========
=========== Technic_Pin_Long_with_Friction_and_Slot__03 ===========
=========== Technic_Pin_Long_with_Stop_Bush__01 ===========
=========== Technic_Pin_Long_with_Stop_Bush__02 ===========
=========== Technic_Pin_Long_with_Stop_Bush__03 ===========
=========== Technic_Pin_Long_with_Stop_Bush__04 ===========
=========== Technic_Pin_with_Friction_and_Slots__01 ===========
=========== Technic_Pin_with_Friction_and_Slots__02 ===========
=========== Technic_Pin_with_Friction_and_Slots__03 ===========
=========== Technic_Pin_with_Friction_and_Slots__04 ===========
=========== Technic_Pin_with_Friction_and_Slots__05 ===========
=========== Technic_Pin_with_Friction_and_Slots__06 ===========
=========== Technic_Pin_with_Friction_and_Slots__07 ===========
=========== Technic_Pin_with_Friction_and_Slots__08 ===========
=========== Technic_Pin_with_Friction_and_Slots__09 ===========
=========== Technic_Pin_with_Friction_and_Slots__10 ===========
=========== Technic_Pin_with_Friction_and_Slots__11 ===========
=========== Technic_Pin_with_Friction_and_Slots__12 ===========
=========== Technic_Pin_with_Friction_and_Slots__13 ===========
=========== Technic_Pin_with_Friction_and_Slots__14 ===========
=========== Technic_Pin_with_Friction_and_Slots__15 ===========
=========== Technic_Pin_with_Friction_and_Slots__16 ===========
=========== Tyre_22/_30_x_30_ZR__01 ===========
=========== Tyre_22/_30_x_30_ZR__02 ===========
=========== Wheel_Rim_20_x_30_with_6_Spokes_and_External_Ribs__01 ===========
=========== Wheel_Rim_20_x_30_with_6_Spokes_and_External_Ribs__02 ===========