An open API service indexing awesome lists of open source software.

https://github.com/xmajedz/p5js-actionscript3

a thin port of p5js to as3 using apache-royale compiler
https://github.com/xmajedz/p5js-actionscript3

actionscript3 p5js

Last synced: 6 months ago
JSON representation

a thin port of p5js to as3 using apache-royale compiler

Awesome Lists containing this project

README

          

# Building with apache-royale

```
mxmlc src/MySketch.as
```

to run
```
python -m http.server -d bin/js-release
```

example code
```
package
{
public class MySketch extends Sketch
{
override public function setup(): void
{
createCanvas(400, 400)
}

override public function draw(): void
{
background(220)
}
}
}
```
# ActionScript3 isn't dead appearantly