11 lines
276 B
C#
11 lines
276 B
C#
using UnityEngine;
|
|
|
|
namespace BallKingdomCrush
|
|
{
|
|
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);
|
|
}
|
|
} |