
Changed menu layout. Added options for controls. Removed multiplayer button. Added multiple game modes, only time trial is different for now. Added fallback for particle errors. Lots of bug fixes in menu. Added camera stopping at edge of level. Added support for mobiles devices. Fixed jump sound. Fixed graphics for browsers other than Chrome. Other changes too.
13 lines
No EOL
381 B
PHP
13 lines
No EOL
381 B
PHP
<?php
|
|
$values = $_REQUEST;
|
|
if(isset($values['id']) and isset($values['x']) and isset($values['y']) and isset($values['time'])){
|
|
$x = $values['x'];
|
|
$y = $values['y'];
|
|
$id = $values['id'];
|
|
$time = $values['time'];
|
|
// Set database x + y to values
|
|
$return = json_encode(); // Return other player's data
|
|
echo json_encode($return);
|
|
}elseif(isset($values['getID']){
|
|
|
|
} |