npc talk to nearby players

This commit is contained in:
BuildTools
2020-04-10 08:45:04 +03:00
parent 4db6366f0b
commit 78ed8d1285
8 changed files with 188 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InteractionObject : MonoBehaviour
{
public bool talks;
public string message;
public void Talk()
{
Debug.Log(message);
}
}

View File

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

View File

@@ -0,0 +1,34 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerInteract : MonoBehaviour
{
public GameObject currentInterObj = null;
public InteractionObject currentInterObjScript = null;
// Update is called once per frame
void Update()
{
if (Input.GetButtonDown ("Interact") && currentInterObj)
{
if (currentInterObjScript.talks)
{
currentInterObjScript.Talk();
}
}
}
void OnTriggerEnter2D(Collider2D other)
{
if (other.CompareTag("interObject"))
{
Debug.Log(other.name);
currentInterObj = other.gameObject;
currentInterObjScript = currentInterObj.GetComponent <InteractionObject> ();
}
}
}

View File

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