BoundingBoxCreateInfo改成构造函数

This commit is contained in:
2025-07-06 15:12:02 +08:00
parent b8fefea165
commit 5cec598a02

View File

@@ -151,11 +151,11 @@ namespace hgl
public:
BoundingBoxCreateInfo()
BoundingBoxCreateInfo(bool n=false,ColorType ct=ColorType::NoColor)
{
normal=false;
normal=n;
color_type=ColorType::NoColor;
color_type=ct;
}
};//struct BoundingBoxCreateInfo