Mantén la atención porque en esta sección hallarás la solución que buscas.Este post fue evaluado por nuestros especialistas para garantizar la calidad y exactitud de nuestro contenido.
Ejemplo 1: la cámara sigue al jugador unity 2d
usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassCameraController:MonoBehaviour//Object you want to followpublicTransform target;//Set to z -10publicVector3 offset;//How much delay on the follow[Range(1,10)]publicfloat smoothing;privatevoidFixedUpdate()Follow();voidFollow()Vector3 targetPosition = target.position + offset;Vector3 smoothPosition = Vector3.Lerp(transform.position, targetPosition, smoothing * Time.fixedDeltaTime);
transform.position = smoothPosition;
Ejemplo 2: cómo hacer que la cámara siga al jugador unity 2d
publicclassCameraFollow:MonoBehaviourpublicGameObject Target;privateVector3 Offset;// Start is called before the first frame updatevoidStart()
Offset = transform.position - Target.transform.position;// Update is called once per framevoidUpdate()
transform.position = Target.transform.position+Offset;
Recuerda difundir este ensayo si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)