コライダーエクスポート時の "Unreachable code detected" 警告に対応

次の警告が発生していました。

```
UniVRM/Assets/VRM10/Runtime/IO/Vrm10Exporter.cs(384,21): warning CS0162: Unreachable code detected
```

冗長なbreakが存在していたため、削除しました。
This commit is contained in:
Isamu Mogi
2024-06-08 18:15:29 +09:00
parent 999714e372
commit d3ae265847

View File

@@ -381,7 +381,6 @@ namespace UniVRM10
};
break;
}
break;
}
return shape;
}