Game dimensions (sizes).

sopapoproductionssopapoproductions Member Posts: 11
edited November -1 in Working with GS (Mac)
Hello,

I want to make a WEB game with the exact dimensions of 640x390.
Is it posible? I see the actual game dimensions is fixed depending on the format. I also see it's posible to make scenes of different dimensions but they look offset from the entire game. I don't even know why it's posible to change scene size but not to actually customize the entire games dimensions.
Anyway... HOW CAN I SET A WEB GAME TO BE EXACTLY 640X390?

Thanks a lot!

Comments

  • Thanks for your response.
    So, what's the actual difference between "legacy web" and "GS arcade"? I just want to embed my game on my web site easily, I know this is posible with GS arcade even though I'm not really interested in publishing to the arcade itself.
    How easily embedable is it to create a legacy web game? Besides being larger in dimensions, is there any other difference from GS arcade?
  • I don't like the small dimensions of GS Arcade, I don't know why game sizes are not customizable!
    If they are supposed to be so easily embedable, they should be in different dimensions like YouTube videos.
  • I'm in the same situation. The tiny game for embed is terrible, terrible.

    I need to make the game custom sized at 860px by 575px.

    Step One: Change the iframe size in the code they give you. Easy.

    Step Two: Find a way to edit the 2 lines of CSS that are setting the containing div's size.

    #game-root, #game-canvas, #gsemb, #console {
    width: 860px;
    height: 575px;
    }

    It *would* be an easy fix but they put the CSS in the dang head section of the code that is generated on GameSalad's side.

    Sad.
  • What makes it worse is I can use firebug to preview the css changes, and it works great!
Sign In or Register to comment.