Skip to content

Commit

Permalink
update default scale factor
Browse files Browse the repository at this point in the history
  • Loading branch information
neolao committed Apr 10, 2020
1 parent 3071231 commit 82d788d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Random character includes styles
- Random character select the first color automatically

[Unreleased]: https://github.com/mugen-launcher/quick-versus/compare/0.30.0...HEAD
[Unreleased]: https://github.com/mugen-launcher/quick-versus/compare/0.30.1...HEAD
[0.30.1]: https://github.com/mugen-launcher/quick-versus/compare/0.30.0...0.30.1
[0.30.0]: https://github.com/mugen-launcher/quick-versus/compare/0.29.1...0.30.0
[0.29.1]: https://github.com/mugen-launcher/quick-versus/compare/0.29.0...0.29.1
[0.29.0]: https://github.com/mugen-launcher/quick-versus/compare/0.28.1...0.29.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mugen-quick-versus-launcher",
"author": "neolao",
"license": "MIT",
"version": "0.30.0",
"version": "0.30.1",
"description": "Mugen launcher for Quick Versus",
"keywords": [
"mugen",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useEffect, useState } from "react";

function getScaleBasedOnWindowHeight() {
return window.innerHeight / 1000;
return window.innerHeight / 333;
}

export default function useStandAnimationScaleBasedOnWindowHeight() {
Expand Down

0 comments on commit 82d788d

Please sign in to comment.