Remove unused MaterialProperty constructor
This commit is contained in:
parent
82eab9bd91
commit
cc49340cd9
1 changed files with 1 additions and 2 deletions
|
@ -32,7 +32,6 @@ struct MaterialProperty {
|
|||
name = "";
|
||||
type = DataType::Vector3;
|
||||
}
|
||||
MaterialProperty(std::string n, DataType t) : name(n), type(t) {}
|
||||
|
||||
prism::float3 value;
|
||||
AssetPtr<Texture> value_tex;
|
||||
|
@ -62,7 +61,7 @@ struct BoneVertexData {
|
|||
};
|
||||
|
||||
struct Bone {
|
||||
int index = 0;
|
||||
size_t index = 0;
|
||||
|
||||
std::string name;
|
||||
Matrix4x4 local_transform, final_transform;
|
||||
|
|
Reference in a new issue