add additional common vertex attribute declaration
This commit is contained in:
parent
14edf14d39
commit
0f3e57b9f5
|
@ -77,5 +77,13 @@ namespace Blarg.GameFramework.Graphics
|
||||||
VertexAttributes.Color,
|
VertexAttributes.Color,
|
||||||
VertexAttributes.Position3D
|
VertexAttributes.Position3D
|
||||||
};
|
};
|
||||||
|
|
||||||
|
public static readonly VertexAttributes[] TextureColorNormalPosition3D = new VertexAttributes[]
|
||||||
|
{
|
||||||
|
VertexAttributes.TexCoord,
|
||||||
|
VertexAttributes.Color,
|
||||||
|
VertexAttributes.Normal,
|
||||||
|
VertexAttributes.Position3D
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue