17 lines
245 B
Plaintext
17 lines
245 B
Plaintext
meta {
|
|
name : LitBasic;
|
|
category : Scene;
|
|
}
|
|
|
|
properties {
|
|
color : float4;
|
|
}
|
|
|
|
vertex main :: (pos : float3 @position, uv : float2 @uv) -> float3 @position {
|
|
return pos;
|
|
}
|
|
|
|
pixel main :: () -> float4 @target0 {
|
|
return properties.color;
|
|
}
|