-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starting to add readmes/gifs for Examples folder.
- Loading branch information
1 parent
ad77ebd
commit 7cb1833
Showing
10 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Platformers | ||
Check out how to make a simple 2d platformer. This has been broken into parts leading up to putting it all together. | ||
|
||
## start | ||
Learn to set up an oak scene with a single potentially movable character. | ||
## moving | ||
Get your character to move left and right. | ||
## falling | ||
Implement basic collision and make the character fall if they are not on solid ground. | ||
## jumping | ||
Bind the ability to jump if we are on the ground. | ||
## correct jumping | ||
Update ground detection to only be able to jump on the ground not when falling through ground. | ||
## complete | ||
Put it all together! | ||
|
||
 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Radar Demo | ||
Keep track of entities evern when they are off screen with a basic radar. | ||
|
||
Create a movable character, a randomly moving entities and draw them on the radar in the top right portion of the screen. | ||
|
||
 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Example SlideShow | ||
See how to make a slideshow using Oak! | ||
|
||
 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Text Creation | ||
Continually draw text on screen with a random color | ||
|
||
 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Simple Top Down Shooter | ||
|
||
## Start | ||
|
||
## Shooting | ||
|
||
## Enemies | ||
|
||
## Sprites | ||
|
||
## Viewport | ||
|
||
## Performance |