mirror of
https://github.com/tetreum/brickcraft.git
synced 2026-05-01 06:19:10 -05:00
9015d3264e
+ Unselect quick slot by pressing it again = Fix bottom stud connections height?
17 lines
430 B
C#
17 lines
430 B
C#
using UnityEngine;
|
|
|
|
namespace Brickcraft
|
|
{
|
|
public class StudInfo
|
|
{
|
|
public Vector3 center;
|
|
public Vector2Int gridPosition = new Vector2Int();
|
|
public Vector2Int gridDimensions = new Vector2Int();
|
|
public bool isBottom = false;
|
|
|
|
public override string ToString() {
|
|
return string.Format("C: {0} | P: {1} | G: {2}", center, gridPosition, gridDimensions);
|
|
}
|
|
}
|
|
}
|