unity gameobject teleporting
//For example
gameobject.transform.position = new Vector3(-2.29f, -1.99f, 0);
unity gameobject teleporting
//For example
gameobject.transform.position = new Vector3(-2.29f, -1.99f, 0);
how to make teleporter in unity
//USES UNITY//
//USED FOR TELEPORTING BETWEEN SCENES//
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class TeleportTrigger : MonoBehaviour
{
void OnTriggerEnter (Collider other) //When You Collide With Object.
{
if (other.gameObject.CompareTag("TeleportTrigger"))//compare tag TeleportTrigger
{
SceneManager.LoadScene("Your_Scene_Name_Here");
Debug.Log("Loaded Next Scene");
//if collide with object that has tag "TeleportTrigger"
//then load the next scene//
}
}
}
//This Script Was Written By Person In A Place
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us