update example project

This commit is contained in:
Nick Fisher
2024-02-15 13:47:31 +08:00
parent da123d6274
commit aba9d8e6a6
2 changed files with 14 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,14 @@
material {
name : SolidColor,
shadingModel : unlit,
culling : none,
featureLevel : 1,
vertexDomain: object
}
fragment {
void material(inout MaterialInputs material) {
prepareMaterial(material);
material.baseColor = vec4(0.1f, 0.5f, 0.9f, 1.0f);
}
}