コード例 #1
0
ファイル: ShapesGenerator.cs プロジェクト: upsky/domru
 private static void RandomRotateShape(Shape shape)
 {
     Direction dir = (Direction) Random.Range(0, 4);
     shape.FastRotateToDirection(dir);
 }