From 9e45a8a32b26e573e985bbf662ea750c0008511e Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Wed, 14 Jun 2023 13:00:38 -0400 Subject: [PATCH] Added a colour for the grass. --- GenerateTerrain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GenerateTerrain.py b/GenerateTerrain.py index d30a7b9..e2c6baa 100644 --- a/GenerateTerrain.py +++ b/GenerateTerrain.py @@ -57,7 +57,7 @@ def spawnGround(): activeObject.data.materials.append(material); # Change the base colour. - materialNodes['Principled BSDF'].inputs['Base Color'].default_value = (1.0, 0.47, 1.0, 1.0); + materialNodes['Principled BSDF'].inputs['Base Color'].default_value = (0.056, 0.439, 0.059, 1.0); # Calling the functions: cleanScene();