Home > Blockchain >  Retrive objects from a list and teleport them to a specific location in Unity
Retrive objects from a list and teleport them to a specific location in Unity

Time:10-09

and thank you for looking at this in advance.

I have yet another problem that i need to solve and it goes like this:

I have a list of objects that i select with a raycast, and i would like to teleport them to a specific location in the scene. Like for example i have selected a cube and a sphere and they are added to my list called playersTagged.

How can i get the objects in my list to that specific location when OnCollisionEnter with my player that has the tag "Tagger"?

My code looks like this:

PlayerTagged Class

using System.Collections.Generic;
using UnityEngine;

public class PlayerTagged : MonoBehaviour
{
    public float damage = 10f;
    public float range = 100f;


    public Camera fpsCam;

    public List<GameObject> playersTagged;

    private void Update()
    {
        if (Input.GetButtonDown("Fire1"))
        {
            Shoot();
        }
    }

    void Shoot()
    {
        RaycastHit hit;

        if (Physics.Raycast(fpsCam.transform.position, fpsCam.transform.forward, out hit, range))
        {
            Debug.Log(hit.transform.name);
            Target target = hit.transform.GetComponent<Target>();

            if (target != null && target.isHit == false)
            {
                target.takeDamage(damage);
                if(hit.collider.tag == "Taggable")
                playersTagged.Add(hit.collider.gameObject);
                target.isHit = true;
            }
        }
    }
}

Teleport class:

using UnityEngine;

public class Teleport : MonoBehaviour
{

public Transform teleportTarget;
public PlayerTagged player;

private void OnTriggerEnter(Collider other)
{

    if (other.gameObject.tag == "Tagger")
    {
        Debug.Log("You hit the can");
    }

}

}

CodePudding user response:

You need to have the PlayerTagged reference in your Teleport component. If both objects will always exist in your scene, only create a public field in your Teleport and drag and drop your PlayerTagged ref, otherwise you will need to fill this ref by code using some "find" approach, for example, GameObject.FindObjectWithTag().

You can also make an event that trigger when the object that entered the OnTriggerEnter is valid (I mean, when your tag condition pass) and then make sure that PlayerTagged is being registered as listener to this event.

First one is easier to setup, but if you plan to make unique things with this OnTriggerEnter as playing sounds, changing data or something like that, the second one is a better approach. N

EDIT: I'll try to insert some code, let me know if you still having problems on getting the idea

"If both objects will always exist in your scene..."

using UnityEngine;

public class Teleport : MonoBehaviour
{
    public Transform teleportTarget;
    public PlayerTagged player; // I didn't saw that you already have an ref here, my bad, so you only need to access the fields

    private void OnTriggerEnter(Collider other)
    {

        if (other.gameObject.tag == "Tagger")
        {
            Debug.Log("You hit the can");
            
            var list = player.playersTagged; // this is how you will access your list

            // Do some stuff with your list
        }

    }

}

Ignore the rest, it will only complicate things

  • Related