Files
BlueArchiveMiniGame/Assets/ThirdParty/DestroyIt/Demos (safe to delete)/Scripts/Gizmos/DrawLine.cs
2025-09-17 18:56:28 +08:00

15 lines
311 B
C#

using UnityEngine;
namespace DestroyIt
{
public class DrawLine : MonoBehaviour
{
public bool isActive = true;
void OnDrawGizmos()
{
if (isActive)
Gizmos.DrawLine(transform.position, transform.position + transform.forward * 10f);
}
}
}