Daniele Bartolini 10 лет назад
Родитель
Сommit
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;