Version 0.5

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.
This commit is contained in:
Markus Scully 2013-08-17 12:38:50 +01:00
parent e20e535802
commit e560f514ae
7 changed files with 363 additions and 116 deletions

13
Server/server.php Normal file
View file

@ -0,0 +1,13 @@
<?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']){
}