2026-04-22 09:52:55 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
2026-04-27 11:20:13 +08:00
|
|
|
namespace RedHotRoast
|
2026-04-22 09:52:55 +08:00
|
|
|
{
|
|
|
|
|
public static class VectorConst
|
|
|
|
|
{
|
|
|
|
|
public static Vector3 One = Vector3.one;
|
|
|
|
|
public static Vector3 PPUOne = One * AppConst.PixelsPerUnit;
|
|
|
|
|
public static Vector3 Half = new(0.5f, 0.5f, 0.5f);
|
|
|
|
|
}
|
|
|
|
|
}
|