cutechicken commited on
Commit
a480ae2
·
verified ·
1 Parent(s): f723cb0

Update game.js

Browse files
Files changed (1) hide show
  1. game.js +1 -1
game.js CHANGED
@@ -1764,7 +1764,7 @@ class Game {
1764
  const altitudeMeters = Math.round(this.fighter.altitude);
1765
  const pitchDegrees = Math.round(this.fighter.rotation.x * (180 / Math.PI));
1766
  const rollDegreesRounded = Math.round(rollDegrees);
1767
- const headingDegrees = Math.round(fighter.getHeadingDegrees());
1768
 
1769
  // 선회율 계산 (도/초)
1770
  if (!this.lastHeading) this.lastHeading = headingDegrees;
 
1764
  const altitudeMeters = Math.round(this.fighter.altitude);
1765
  const pitchDegrees = Math.round(this.fighter.rotation.x * (180 / Math.PI));
1766
  const rollDegreesRounded = Math.round(rollDegrees);
1767
+ const headingDegrees = Math.round(this.fighter.getHeadingDegrees());
1768
 
1769
  // 선회율 계산 (도/초)
1770
  if (!this.lastHeading) this.lastHeading = headingDegrees;