first run MetricCellsGrid OK!

This commit is contained in:
2023-10-13 19:22:11 +08:00
parent 9369ad115b
commit 4ed0e281b2
8 changed files with 286 additions and 3 deletions

View File

@@ -0,0 +1,38 @@
#Material
Name PureColor3D
Base Std3D
#MaterialInstance
Length 16
Stage Fragment
Code
{
vec4 Color;
}
#Vertex
Code
{
void main()
{
HandoverMI();
gl_Position=GetPosition3D();
}
}
#Fragment
Output
{
vec4 FragColor;
}
Code
{
void main()
{
MaterialInstance mi=GetMI();
FragColor=mi.Color;
}
}