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
- Host: GitHub
- URL: https://github.com/xmajedz/p5js-actionscript3
- Owner: xMajedz
- Created: 2025-08-02T10:36:48.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-08-03T03:58:55.000Z (6 months ago)
- Last Synced: 2025-08-03T05:29:44.009Z (6 months ago)
- Topics: actionscript3, p5js
- Language: ActionScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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