upgraded engine with input buffering and added arcade & survival

This commit is contained in:
2020-03-25 19:29:55 +01:00
parent e70f1a73dc
commit 6ddcc39c27
5 changed files with 74 additions and 18 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"dimensions": [32, 32],
"delay": 200,
"food": [
[16, 16]
],
"snake": [
[16, 12],
[16, 11],
[16, 10]
]
}
+16
View File
@@ -0,0 +1,16 @@
{
"dimensions": [32, 32],
"delay": 200,
"food": [],
"snake": [
[16, 12],
[16, 11],
[16, 10]
],
"rules": {
"autoSpeedIncrease": true,
"autoSpeadIncreaseTicks": 10,
"autoSizeGrow": true,
"autoSizeGrowTicks": 100
}
}