Files
2026-04-30 00:53:30 +02:00

29 lines
743 B
C#

using UnityEngine;
namespace Platformer.View
{
/// <summary>
/// Used to move a transform relative to the main camera position with a scale factor applied.
/// This is used to implement parallax scrolling effects on different branches of gameobjects.
/// </summary>
public class ParallaxLayer : MonoBehaviour
{
/// <summary>
/// Movement of the layer is scaled by this value.
/// </summary>
public Vector3 movementScale = Vector3.one;
Transform _camera;
void Awake()
{
_camera = Camera.main.transform;
}
void LateUpdate()
{
transform.position = Vector3.Scale(_camera.position, movementScale);
}
}
}