using System.Collections; using System.Collections.Generic; using UnityEngine; using Networking.Client; using Networking.Server; public class ConveyorBelt : MonoBehaviour { public ClientList clientData; bool characterOnBelt = false; GameObject player; string charname; public List Names = new List(); public bool left; public bool forward; public bool triggeranimate; private void Start() { for (int i = 0; i < clientData.ConnectedClients.Count; i++) { Names.Add(clientData.ConnectedClients[i].characterAnimal + "(Clone)"); } } private void Update() { } void OnTriggerEnter(Collider other) { for (int i = 0; i < Names.Count; i++) { if (other.gameObject.name == Names[i]) { characterOnBelt = true; charname = other.gameObject.name; } } } public void Animate() { player = GameObject.Find(charname); if(forward == true) { player.GetComponent().conveyorMoveForward(Direction.Forward, 1.0f); } else if (forward == false) { player.GetComponent().conveyorMoveBackward(Direction.Back, 1.0f); } if (left == true) { player.GetComponent().conveyorMoveLeft(Direction.Left, 1.0f); } else if (left == false) { player.GetComponent().conveyorMoveRight(Direction.Right, 1.0f); } } }