capitalex / mushroom-path.endless
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 8 months ago
| 1 | object enter |
| 2 | object enter |
| 3 | "mushroom-2" >name |
| 4 | solid >true |
| 5 | object enter |
| 6 | 222 >x 36 >y 49 >w 41 >h |
| 7 | leave >bounds |
| 8 | leave >slices |
| 9 | object enter |
| 10 | "mushroom-3" >name |
june / A small graphical example of Nova.
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 8 months ago
A small Nova program to draw the trans pride flag in the playground.
| 1 | || |
| 2 | :: create a 400 by 400 canvas |
| 3 | :: draw the trans pride flag |
| 4 | |
| 5 | |:: draw the trans pride flag| |
| 6 | :: clear the canvas to black |
| 7 | :: draw a 360 by 360 lightblue rectangle at 20 20 |
| 8 | :: draw a 360 by 250 pink rectangle at 20 80 |
| 9 | :: draw a 360 by 100 white rectangle at 20 150 |
autumn / game library
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 8 months ago
a library for the Myte playground that lets you easily create games
| 1 | | 'DOCUMENTATION' | ~~ |
| 2 | this game library lets you create a canvas that you can |
| 3 | update every frame . you can start a game like so : |
| 4 | |
| 5 | // '' start a 400 by 600 game |
| 6 | |
| 7 | and you can create a game loop that updates like this : |
| 8 | |
| 9 | / '' game loop $dt |
| 10 | / '' do something |
autumn / @reduce math library
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 8 months ago
a library for the Myte playground that allows you to reduce RPN expressions from within tuples
| 1 | | 'DOCUMENTATION' | ~~ |
| 2 | the @reduce library allows you to reduce RPN expressions |
| 3 | that are enclosed within curly braces inside of a tuple . |
| 4 | here's an example of how to use it : |
| 5 | |
| 6 | '' (@reduce snake = x is { 2 3 + 4 * } and y is { 10 7 - } .) |
| 7 | |
| 8 | this will result in the following : |
| 9 | |
| 10 | 'snake' x is 20 and y is 3 |
sierra / maze-with-arrays.nv
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 8 months ago • Форки с capitalex/maze-with-arrays.nv
| 1 | = |@math| $last |@math| $op $value * = |
| 2 | |@math| $op $value $last |
| 3 | = |@math| $last |@math| $op * $value = |
| 4 | |@math| $op $last $value |
| 5 | |
| 6 | = || set new pen color? |pen color| r $g $b |@math| $r = |
| 7 | |pen color| $r $g $b |
| 8 | |
| 9 | = || set new pen color? |pen color| $r g $b |@math| $g = |
| 10 | |pen color| $r $g $b |
june / progress-pride-flag.nv
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 8 months ago • Форки с sierra/progress-pride-flag.nv
| 1 | || |
| 2 | :: create a 400 by 400 canvas |
| 3 | :: draw the trans pride flag |
| 4 | |
| 5 | |:: draw the trans pride flag| |
| 6 | :: clear the canvas to black |
| 7 | :: draw a 360 by 360 lightblue rectangle at 20 20 |
| 8 | :: draw a 360 by 250 pink rectangle at 20 80 |
| 9 | :: draw a 360 by 100 white rectangle at 20 150 |
| 10 | :: draw a black triangle at 20 20 20 380 200 200 |
autumn / snake game
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 8 months ago
a snake game that runs on the Myte playground !
| 1 | | 'INSTRUCTIONS' | ~~ |
| 2 | you can move using the WASD keys ! |
| 3 | |
| 4 | || '@include' ( |
| 5 | https://gist.casuallyblue.dev/autumn/056799f483464c668e0a6a2d9db099df/raw/HEAD/game.nv |
| 6 | https://gist.casuallyblue.dev/autumn/e1c6774f800249be87a94240042135db/raw/HEAD/reduce.nv |
| 7 | ) |
| 8 | |
| 9 | 'DOM' (<query h2 <style text-align = center > >) |