From 2ba6a54837f492fc6bb8e0b4767d79d80f21fb33 Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Fri, 29 Dec 2023 16:41:14 -0500 Subject: [PATCH] Remove the createTree function --- GenerateTerrain.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/GenerateTerrain.py b/GenerateTerrain.py index 3b3dcb6..7388207 100644 --- a/GenerateTerrain.py +++ b/GenerateTerrain.py @@ -55,14 +55,9 @@ def spawnGround(): # Change the base colour. materialNodes['Principled BSDF'].inputs['Base Color'].default_value = (0.056, 0.439, 0.059, 1.0) -# Function to spawn trees on the grass. -def spawnTree(): - print("Tree has spawned.") - # Calling the functions: cleanScene() spawnGround() -spawnTree() # Shows that the code ran. print("The code ran.")