Files
pgs/Assets/ProCamera2D/Code/Helpers/Parallax/ProCamera2DParallaxObject.cs

15 lines
462 B
C#
Raw Normal View History

2026-02-21 16:58:22 -08:00
using UnityEngine;
namespace Com.LuisPedroFonseca.ProCamera2D
{
#if UNITY_5_3_OR_NEWER
[HelpURLAttribute("http://www.procamera2d.com/user-guide/extension-parallax/")]
#endif
/// <summary>
/// Add this class to an object if you want its position on the scene view to match the same relative position to the main parallax layer during runtime.
/// </summary>
public class ProCamera2DParallaxObject : MonoBehaviour
{
}
}