Skip to content

Commit

Permalink
change height
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabhall committed May 17, 2024
1 parent 34a3ce2 commit 1238da7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/platformer3x/GameSetup.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const GameSetup = {
hitbox: { widthPercentage: 0.5, heightPercentage: 0.5 },
width: 300,
height: 300,
scaleSize: 150,
scaleSize: 100,
},
coin: { src: "/images/platformer/obstacles/coin.png" },
snowflake: { src: "/images/platformer/obstacles/snowflake.png" },
Expand Down Expand Up @@ -861,7 +861,7 @@ const GameSetup = {
{ name: 'coin', id: 'coin', class: Coin, data: this.assets.obstacles.coin, xPercentage: 0.2575, yPercentage: 0.75 },
{ name: 'coin', id: 'coin', class: Coin, data: this.assets.obstacles.coin, xPercentage: 0.5898, yPercentage: 0.900 },
{ name: 'mario', id: 'player', class: PlayerHills, data: this.assets.players.mario },
{ name: 'Chest', id: 'finishline', class: FinishLine, data: this.assets.obstacles.chest, xPercentage: 0.85, yPercentage: 0.603 },
{ name: 'Chest', id: 'finishline', class: FinishLine, data: this.assets.obstacles.chest, xPercentage: 0.85, yPercentage: 0.65 },
{ name: 'miniEnd', id: 'background', class: BackgroundTransitions, data: this.assets.transitions.miniEnd },
];
let waterGameObjects = allWaterGameObjects.filter(obj => !obj.difficulties || obj.difficulties.includes(difficulty));
Expand Down

0 comments on commit 1238da7

Please sign in to comment.