v0.3-beta5

This commit is contained in:
Ishaan Bhardwaj
2021-02-18 15:09:43 -05:00
parent 209ff25342
commit 51874b435a
3 changed files with 40 additions and 4 deletions

View File

@@ -41,10 +41,6 @@ RandomPieces.big_spawn_positions = {
{ x=2, y=3 }
}
RandomPieces.draw_offsets = {
{ x=0, y=0 }
}
RandomPieces.next_sounds = {
"O"
}

View File

@@ -100,6 +100,7 @@ function Tetra:onPieceCreate(piece) piece.lowest_y = -math.huge end
function Tetra:onPieceDrop(piece) self:checkNewLow(piece) end
function Tetra:onPieceMove() end
function Tetra:onPieceRotate() end
function Tetra:canPieceRotate() return true end
function Tetra:get180RotationValue() return 2 end
return Tetra