Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make game scale to device width #8

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,16 @@
}

#editor {
height: 600px;
height: 100%;
}
.row {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}
.row > [class*='col-'] {
display: flex;
flex-direction: column;
}
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ <h4 class="modal-title text-center">Welcome to Angry Coders</h4>
</div>
</div>
</div>

<div class="row" style="margin-top: 10px;">
</div>

<div class="container">
<div style="margin-top: 10px;">
<div class="btn-group col-xs-8 col-xs-offset-4">
<a class="btn btn-danger btn-lg" onclick="toggleModal()">
ReadMe
Expand All @@ -123,6 +125,8 @@ <h4 class="modal-title text-center">Welcome to Angry Coders</h4>
</div>
</div>
</div>


<script>
var editor = ace.edit("editor");
$("#editor").css("display", "block");
Expand Down
4 changes: 2 additions & 2 deletions js/states/Boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ AngryCoders.BootState = {
//Set the background Color
this.game.stage.backgroundColor = WhiteColor;
//Set the scaling options
//this.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL;

this.game.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL;
this.game.scale.setScreenSize(true);
//physics engine P2JS
this.game.physics.startSystem(Phaser.Physics.P2JS);

Expand Down