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

Fix typos in pixijs README #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions pixijs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ before utilizing the font.
The [sound manager](src/core/sounds/soundManager.ts) handles sound muting/unmuting
from the SDK, as well as pausing/resuming audio on app backgrounding/foregrounding.

A singleon `soundManager` is provided but usually does not
A singleton `soundManager` is provided but usually does not
need to be used by anything other than the `main.ts` file.

### Game State/Save Management

A sample save implementation is provided inside [save.ts](src/gamestate/save.ts).
It uses Immer to surgically modify state and avoid unecessary updates.
It uses Immer to surgically modify state and avoid unnecessary updates.

Inside [main.ts](src/main.ts), if a previous save exists, it is loaded via the
Playables SDK and overwrites any initial game state.
Expand Down