Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
eonarheim committed Jan 16, 2024
1 parent 3d98de5 commit 19c1b26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/docs/02-fundamentals/05-transitions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This is currently an alpha feature, and will be released in the next version! AP

Many times in your game you'll want to smoothly go from one scene to the next, or provide a custom effect when transitioning!

## Using Pre-Definited Scene Transitions
## Using Pre-Defined Scene Transitions

It is generally recommended that you define you scenes up front, when you do you have the opportunity to also specify the in/out transitions for a scene.

Expand Down
4 changes: 2 additions & 2 deletions site/docs/02-fundamentals/06-loaders.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ export class MyLoader extends ex.DefaultLoader {
}

override async onBeforeLoad(): Promise<void> {
// Overridable lifecycle method, called directly before loading starts
// Overrideable lifecycle method, called directly before loading starts
// Useful if you need to do anything to the screen/viewport
}

override async onAfterLoad(): Promise<void> {
// Overridable lifecycle method, called after loading has completed
// Overrideable lifecycle method, called after loading has completed
// Useful if you need to do anything to the screen/viewport
}
}
Expand Down

0 comments on commit 19c1b26

Please sign in to comment.