Files
Zoomatch_unity_ios/Assets/Scripts/Define/Constant/VectorConst.cs
T
2026-05-28 15:23:36 +08:00

11 lines
268 B
C#

using UnityEngine;
namespace ZooMatch
{
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);
}
}