mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-19 06:33:49 +00:00
17 lines
309 B
C#
17 lines
309 B
C#
|
|
singleton Material(White)
|
||
|
|
{
|
||
|
|
mapTo = "unmapped_mat";
|
||
|
|
diffuseMap[0] = "./white.png";
|
||
|
|
};
|
||
|
|
|
||
|
|
singleton Material(Grid_512_Gray)
|
||
|
|
{
|
||
|
|
mapTo = "unmapped_mat";
|
||
|
|
diffuseMap[0] = "./512_grey.png";
|
||
|
|
};
|
||
|
|
|
||
|
|
singleton Material(Orange512_lines)
|
||
|
|
{
|
||
|
|
mapTo = "unmapped_mat";
|
||
|
|
diffuseMap[0] = "./512_orange_lines.png";
|
||
|
|
};
|