Archived
1
Fork 0

Remove unused MaterialProperty constructor

This commit is contained in:
Joshua Goins 2022-02-21 00:11:28 -05:00
parent 82eab9bd91
commit cc49340cd9

View file

@ -32,7 +32,6 @@ struct MaterialProperty {
name = ""; name = "";
type = DataType::Vector3; type = DataType::Vector3;
} }
MaterialProperty(std::string n, DataType t) : name(n), type(t) {}
prism::float3 value; prism::float3 value;
AssetPtr<Texture> value_tex; AssetPtr<Texture> value_tex;
@ -62,7 +61,7 @@ struct BoneVertexData {
}; };
struct Bone { struct Bone {
int index = 0; size_t index = 0;
std::string name; std::string name;
Matrix4x4 local_transform, final_transform; Matrix4x4 local_transform, final_transform;