Daniele Bartolini 10 年之前
父節點
當前提交
eb1bc60587
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/world/world_types.h

+ 1 - 1
src/world/world_types.h

@@ -394,8 +394,8 @@ struct HeightfieldShape
 
 struct ColliderDesc
 {
-	StringId32 shape_class;       ///< Name of shape in global.physics_config resource.
 	u32 type;                     ///< ShapeType::Enum
+	StringId32 shape_class;       ///< Name of shape in global.physics_config resource.
 	StringId32 material;          ///< Name of material in global.physics_config resource.
 	Matrix4x4 local_tm;           ///< In actor-space
 	SphereShape sphere;