pool around a small gravel island for player
This commit is contained in:
parent
cced05ae0e
commit
9d97b091e7
1 changed files with 12 additions and 1 deletions
13
src/Arts.cs
13
src/Arts.cs
|
@ -87,12 +87,23 @@ static class Arts
|
||||||
// ground
|
// ground
|
||||||
meshes["circle"].Draw(
|
meshes["circle"].Draw(
|
||||||
mat_unlit,
|
mat_unlit,
|
||||||
|
Matrix.TRS(
|
||||||
|
V.XYZ(0, 1 * U.cm, 0),
|
||||||
|
Quat.Identity,
|
||||||
|
2.0f
|
||||||
|
),
|
||||||
|
Color.Hex(0x808080FF).ToLinear()
|
||||||
|
);
|
||||||
|
|
||||||
|
// pool
|
||||||
|
meshes["circle"].Draw(
|
||||||
|
mat_add,
|
||||||
Matrix.TRS(
|
Matrix.TRS(
|
||||||
V.XYZ(0, 0, 0),
|
V.XYZ(0, 0, 0),
|
||||||
Quat.Identity,
|
Quat.Identity,
|
||||||
12.0f
|
12.0f
|
||||||
),
|
),
|
||||||
Color.Hex(0x808080FF).ToLinear()
|
Color.Hex(0x7090AAFF).ToLinear()
|
||||||
);
|
);
|
||||||
|
|
||||||
// bamboo
|
// bamboo
|
||||||
|
|
Loading…
Add table
Reference in a new issue