mirror of
https://github.com/DCFApixels/Unity-DebugX.git
synced 2025-09-19 18:54:34 +08:00
28 lines
537 B
C#
28 lines
537 B
C#
![]() |
using UnityEngine;
|
|||
|
|
|||
|
namespace DCFApixels.DebugXCore
|
|||
|
{
|
|||
|
public interface IDrawHandler
|
|||
|
{
|
|||
|
Color Color { get; }
|
|||
|
float Duration { get; }
|
|||
|
}
|
|||
|
public interface IDrawPositionHandler
|
|||
|
{
|
|||
|
Vector3 Position { get; }
|
|||
|
}
|
|||
|
public interface IDrawRotationHandler
|
|||
|
{
|
|||
|
Quaternion Rotation { get; }
|
|||
|
}
|
|||
|
public interface IDrawScaleHandler
|
|||
|
{
|
|||
|
Vector3 Scale { get; }
|
|||
|
}
|
|||
|
public interface IDrawLineHandler
|
|||
|
{
|
|||
|
Vector3 Start { get; }
|
|||
|
Vector3 End { get; }
|
|||
|
}
|
|||
|
}
|