Search Unity

Mobile Game Level Editor WIth Server Access

Discussion in 'Multiplayer' started by luniac, Mar 26, 2015.

  1. luniac

    luniac

    Joined:
    Jan 12, 2011
    Posts:
    614
    So as topic states, let's say i have a completed 2D game with 50 levels, and all levels are made out of various components that can be placed, with all logic attached to the components already, such as a "win" object that ends the level upon collision and goes back to the menu.

    I would love to offer players the ability to create and EASILY share levels with others THROUGH the app,
    so im thihnking of something like:
    1)a level editor SCENE, with the functionality of placing objects in the level with various constrains to prevent them from creating a broken level,
    2) some kind of save feature, a way to save the location of all objects.
    3) somehow upload the level to a server, and have it avaiable to others.
    4) BONUS: a voting feature so good user made levels stand out, and bad ones get filtered out. Probably have a "MOST POPULAR" tab and "NEW LEVELS" tab, or something similar.


    Are there any plugins in the asset store that do this?
     
  2. Tiny-Tree

    Tiny-Tree

    Joined:
    Dec 26, 2012
    Posts:
    1,315
    easy save or json.Net
    you will have to write your own logic ta save, list your gameObject that player spawn then

    for(int i =0; i<placedObject; i++)
    {
    save(ObjectID,position,rotation);
    }

    then do the opposite when you load them
     
    luniac likes this.
  3. luniac

    luniac

    Joined:
    Jan 12, 2011
    Posts:
    614

    wow easy save 2 looks awesome, thanks.