Skip to content

RestABurger is an open source food restaurant game where you have to serve your clients on time.

Notifications You must be signed in to change notification settings

muertet/restaburger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RestABurger

RestABurger is a food restaurant game where you have to serve your clients on time. Made with Unity 4.6

restaburguer restaburguer2 restaburguer3 restaburguer4

Analytics


About the game

All of the workers left the restaurant ant and you are the only one left to take over!

  • You must cook the food all the way and serve it on a clean plate to earn the maximum amount of cash.
  • You have to be quick! The customers won’t wait forever!
  • Ran out of food? Press the red button near the cash register to make your food distributor appear for $40!

Please, keep in mind that this is my first Unity project, so folders order is horrible and code may not be accurate.

Available modes

  • Singleplayer
  • Multiplayer

Game Controls

WASD : Moves your character Left click : Holds an object E: Action button (open crates / push buttons)

Adding a new plate

  • Open "scripts/FoodHelper.cs" file and go to getMenu() function, there you can set the required ingredients and its price:

      	menu.Add (new MenuPlate(new int[]{
      		TYPE_TOPBUN,
      		TYPE_PATTY,
      		TYPE_BUN,
      	}, 4)); // 4 = plate price (4$)
    

(Ingredient list available on file top)

  • Then put it's image on "Assets/Resources/Food" folder. Image name must be a join of the required ingredients id. So if plate ingredients are:

      	TYPE_TOPBUN,
      	TYPE_PATTY,
      	TYPE_BUN,
    

File name would be 657.jpg, since TOPBUN = 6, PATTY = 5 and BUN = 7. I repeat, ingredient list is available on file top.

Increase clients:

  • Spawn limit is set at "scripts/ClientSpawn.cs" (constant: CLIENTS_LIMIT)

ToDo

  • Put objects near to player's camera
  • GUI : Make ESC menu work
  • GUI : Show room's list with filters and allow players to create a new room.
  • GUI : Redesign and make it fully responsive for diff resolutions. (Waiting for Unity GUI Editor)
  • Find a better network than Photon. (like Bolt, but it should be free)

¿How can i help?

Credits

About

RestABurger is an open source food restaurant game where you have to serve your clients on time.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published