💡 Parallax란?Parallax(패럴럭스) 효과는 카메라가 움직일 때 배경이 느리게 따라오면서 깊이감(입체감) 을 만들어내는 시각적 기법이다."앞에 있는 건 빨리 움직이고,뒤에 있는 건 천천히 움직이는"게임 속 배경 움직임 연출 스크립트using System.Collections;using System.Collections.Generic;using UnityEngine;public class ParallaxLayer : MonoBehaviour{ [SerializeField] private Transform _cameraTransform; [SerializeField, Range(0f, 1f)] private float _parallaxFactorX = 0.5f; [Seriali..