File tree Expand file tree Collapse file tree
dm_control/blender/mujoco_exporter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313# limitations under the License.
1414# ============================================================================
1515
16- """Blender 3.3 plugin for exporting models to MuJoCo native format."""
16+ """Blender 3.4 plugin for exporting models to MuJoCo native format."""
1717
1818import contextlib
1919import os
2929
3030bl_info = {
3131 'name' : 'Export MuJoCo' ,
32- 'author' : 'Piotr Trochim ' ,
32+ 'author' : 'The dm_control authors ' ,
3333 'version' : (2 , 0 ),
3434 'blender' : (3 , 3 , 1 ),
3535 'location' : 'File > Export > MuJoCo' ,
@@ -96,7 +96,7 @@ class ExportMjcf(bpy.types.Operator, ExportHelper):
9696 default = False ,
9797 )
9898
99- def _export_mjcf (self , context : bpy .types .Context ) -> str :
99+ def _export_mjcf (self , context : bpy .types .Context ) -> None :
100100 """Converts a Blender scene to Mujoco XML format."""
101101 # Create a new XML document
102102 xml_doc = minidom .Document ()
You can’t perform that action at this time.
0 commit comments