From 4bff84f097a1a453485bbb57b3089da9d883a49b Mon Sep 17 00:00:00 2001 From: juliuse98 Date: Sun, 3 Oct 2021 21:14:25 +0200 Subject: [PATCH] Update to 2021.1.23f1 Update to 2021.1.23f1 --- Assets/Scripts/NPC/NPC.cs | 18 ++++++++++++++++++ Assets/Scripts/NPC/NPC.cs.meta | 11 +++++++++++ Assets/Scripts/NPC/NPCController.cs | 8 ++++---- ProjectSettings/ProjectVersion.txt | 4 ++-- 4 files changed, 35 insertions(+), 6 deletions(-) create mode 100644 Assets/Scripts/NPC/NPC.cs create mode 100644 Assets/Scripts/NPC/NPC.cs.meta diff --git a/Assets/Scripts/NPC/NPC.cs b/Assets/Scripts/NPC/NPC.cs new file mode 100644 index 0000000..975d88a --- /dev/null +++ b/Assets/Scripts/NPC/NPC.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class NPC : MonoBehaviour +{ + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } +} diff --git a/Assets/Scripts/NPC/NPC.cs.meta b/Assets/Scripts/NPC/NPC.cs.meta new file mode 100644 index 0000000..85f837d --- /dev/null +++ b/Assets/Scripts/NPC/NPC.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d2db8b57e361e9647b7c374f6435fa52 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/NPC/NPCController.cs b/Assets/Scripts/NPC/NPCController.cs index 705eaa6..abc7df9 100644 --- a/Assets/Scripts/NPC/NPCController.cs +++ b/Assets/Scripts/NPC/NPCController.cs @@ -17,10 +17,10 @@ public class NPCController : MonoBehaviour // Start is called before the first frame update void Start() { - startPoint = new Vector3(0, 0, 0); - endPoint = new Vector3(100, 0, 40); - rows = 30; - Map = new PathMap(new Vector3(0, 0, 0), rows, rows, 900); + startPoint = new Vector3(13, 0, 23); + endPoint = new Vector3(41, 0, 50); + rows = 17; + Map = new PathMap(new Vector3(0, 0, 0), rows, rows, 1000); Map.setupMapWithNextLayer(); //Looking through the low res search diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index fe1188f..fe53db0 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2021.1.22f1 -m_EditorVersionWithRevision: 2021.1.22f1 (a137e5fb0427) +m_EditorVersion: 2021.1.23f1 +m_EditorVersionWithRevision: 2021.1.23f1 (b50729e604a9)