Город МОСКОВСКИЙ

unity3d телепорт

Аватар
Без воды про Телефон
Просмотры:
2
Дата загрузки:
03.07.2026 20:37
Длительность:
00:00:00
Категория:
Разное

Описание

Вот скрипт C# Script назовите его Teleport
using UnityEngine;

public class Teleport : MonoBehaviour {

public bool teleported = false;
public Teleport target;

void OnTriggerEnter (Collider other)
{
if (other.CompareTag("Player"))
{
if (!teleported)
{
target.teleported = true;
other.gameObject.transform.position = target.gameObject.transform.position;
}
}
}

void OnTriggerExit (Collider other)
{
if(other.CompareTag("Player"))
{
teleported = false;
}
}
}

Рекомендуемые видео