Update to 2021.1.23f1

Update to 2021.1.23f1
This commit is contained in:
juliuse98
2021-10-03 21:14:25 +02:00
parent 16993b077d
commit 4bff84f097
4 changed files with 35 additions and 6 deletions

18
Assets/Scripts/NPC/NPC.cs Normal file
View File

@@ -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()
{
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: d2db8b57e361e9647b7c374f6435fa52
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -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

View File

@@ -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)