summaryrefslogtreecommitdiff
path: root/AlienSurvival/Assets/Scripts/Rendering/TopDownShadowCaster.cs
blob: 2ef26a093347495eb27aef396d616242432f6694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[DisallowMultipleComponent]
[RequireComponent(typeof(TopDownTransform))]
public class TopDownShadowCaster : MonoBehaviour
{

	[SerializeField] private Color m_Color = Color.black;
	[SerializeField] private Vector2 m_Scale = new Vector2(1, 0.5f);

}