add 'static' entity body-type

This commit is contained in:
MihailRis
2024-07-29 15:45:28 +03:00
parent d6696b54cb
commit 2b7b68f3c2
7 changed files with 8 additions and 18 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ struct Sensor {
};
enum class BodyType {
KINEMATIC, DYNAMIC
STATIC, KINEMATIC, DYNAMIC
};
std::optional<BodyType> BodyType_from(std::string_view str);