- Remove conditional forgotten by #9897 Fixes cube_fl0 example - Add byte array view methods that are no longer exported by default in emscripten 5.0.4 (#9921) Fixes redball tutorial
17 lines
283 B
Plaintext
17 lines
283 B
Plaintext
material {
|
|
name : nonlit,
|
|
requires : [
|
|
color
|
|
],
|
|
shadingModel : unlit,
|
|
culling : none,
|
|
featureLevel: 0
|
|
}
|
|
|
|
fragment {
|
|
void material(inout MaterialInputs material) {
|
|
prepareMaterial(material);
|
|
material.baseColor = getColor();
|
|
}
|
|
}
|