From 11fbc0a77435369d9d8615ca7401e753d1cd9119 Mon Sep 17 00:00:00 2001 From: MB Date: Sat, 26 Jan 2019 22:43:28 +1100 Subject: [PATCH] Changes --- Assets/Scenes/ClientScene.unity | 10 ++++++++++ Assets/Scipts/Map.cs | 4 +++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Assets/Scenes/ClientScene.unity b/Assets/Scenes/ClientScene.unity index 2f8b98e..a92ea6e 100644 --- a/Assets/Scenes/ClientScene.unity +++ b/Assets/Scenes/ClientScene.unity @@ -3196,6 +3196,16 @@ MonoBehaviour: - Troll Mc Trollson - Sir Trollington of House Troll - Troll + - Trollsworth + - Trolly + - Rollt + - T R O L L + - THE ONE TROLL TO RULE THEM ALL + - RickTrolled + - Mrs Trollington + - Trollo + - TrollorT + - Three small trolls in a trenchcoat --- !u!4 &1574517162 Transform: m_ObjectHideFlags: 0 diff --git a/Assets/Scipts/Map.cs b/Assets/Scipts/Map.cs index c9a6ca2..4236797 100644 --- a/Assets/Scipts/Map.cs +++ b/Assets/Scipts/Map.cs @@ -7,13 +7,14 @@ public class Map : MonoBehaviour GameObject LocalPlayer; List Players = new List(); - + public GameObject[] Tiles; public List Landmarks; public int TileSize = 100; public Vector2 MapDimensions; + public List VeggieLocations; //Minimum and maximum values for the map public float minX; public float maxX; @@ -177,6 +178,7 @@ public class Map : MonoBehaviour Instantiate(Landmarks[rand], LP.transform.position, Quaternion.identity, tile.transform.parent); } } + } #endregion