로딩
티스토리 데이터 처리 중입니다.

[유니티C#][기초] 16. 튜토리얼 SurvivalShooter 정리.5

 [유니티C#][기초] 16. 튜토리얼 SurvivalShooter 정리.5

1234567891011121314151617181920212223242526272829303132 2-5 CameraFollowusing System.Collections;using System.Collections.Generic;using UnityEngine; public class CameraFollow : MonoBehaviour { public Transform target; // The position that that camera will be following. public float smoothing = 5f; // The speed with which the camera will be following. Vector3 offset; // The initial offset from th.....