@@ -520,6 +520,8 @@ class FileMorph(Morph):
520520 0.0 to enforce decomposition, float("inf") to disable it completely. Defaults to float("inf").
521521 coacd_options : CoacdOptions, optional
522522 Options for configuring coacd convex decomposition. Needs to be a `gs.options.CoacdOptions` object.
523+ parse_glb_with_zup : bool, optional
524+ Whether to use zup to load glb files. Defaults to False.
523525 visualization : bool, optional
524526 Whether the entity needs to be visualized. Set it to False if you need a invisible object only for collision
525527 purposes. Defaults to True. `visualization` and `collision` cannot both be False.
@@ -546,6 +548,7 @@ class FileMorph(Morph):
546548 decompose_robot_error_threshold : float = float ("inf" )
547549 coacd_options : Optional [CoacdOptions ] = None
548550 recompute_inertia : bool = False
551+ parse_glb_with_zup : bool = False
549552 batch_fixed_verts : bool = False
550553
551554 def __init__ (self , ** data ):
@@ -705,7 +708,6 @@ class Mesh(FileMorph, TetGenMixin):
705708 """
706709
707710 parse_glb_with_trimesh : bool = False
708- parse_glb_with_zup : bool = False
709711
710712 # Rigid specific
711713 fixed : bool = False
@@ -795,6 +797,8 @@ class MJCF(FileMorph):
795797 0.0 to enforce decomposition, float("inf") to disable it completely. Defaults to float("inf").
796798 coacd_options : CoacdOptions, optional
797799 Options for configuring coacd convex decomposition. Needs to be a `gs.options.CoacdOptions` object.
800+ parse_glb_with_zup : bool, optional
801+ Whether to use zup to load glb files. Defaults to False.
798802 visualization : bool, optional
799803 Whether the entity needs to be visualized. Set it to False if you need a invisible object only for collision
800804 purposes. Defaults to True. `visualization` and `collision` cannot both be False.
@@ -899,6 +903,8 @@ class URDF(FileMorph):
899903 0.0 to enforce decomposition, float("inf") to disable it completely. Defaults to float("inf").
900904 coacd_options : CoacdOptions, optional
901905 Options for configuring coacd convex decomposition. Needs to be a `gs.options.CoacdOptions` object.
906+ parse_glb_with_zup : bool, optional
907+ Whether to use zup to load glb files. Defaults to False.
902908 visualization : bool, optional
903909 Whether the entity needs to be visualized. Set it to False if you need a invisible object only for collision
904910 purposes. Defaults to True. `visualization` and `collision` cannot both be False.
@@ -995,6 +1001,8 @@ class Drone(FileMorph):
9951001 0.0 to enforce decomposition, float("inf") to disable it completely. Defaults to float("inf").
9961002 coacd_options : CoacdOptions, optional
9971003 Options for configuring coacd convex decomposition. Needs to be a `gs.options.CoacdOptions` object.
1004+ parse_glb_with_zup : bool, optional
1005+ Whether to use zup to load glb files. Defaults to False.
9981006 visualization : bool, optional
9991007 Whether the entity needs to be visualized. Set it to False if you need a invisible object only for collision
10001008 purposes. Defaults to True. `visualization` and `collision` cannot both be False.
0 commit comments