This repo is not used anymore. Development of Orca was moved here: https://github.com/orca-app/orca
https://orca-app.dev/
aff03630da
Design system by semi.design: https://semi.design/en-US/start/overview SVG icon workflow: - Find the SVG with devtools - Copy curve path to https://yqnn.github.io/svg-path-editor/ - Scale X and Y by 1/size (usually 1/24) - In `ui.c`, do offset and scale with a matrix transform, then the draw commands can use the exact numbers from the normalized SVG |
||
---|---|---|
ext | ||
resources | ||
samples | ||
scripts | ||
sketches | ||
src | ||
tests | ||
.clang-format | ||
.gitignore | ||
.orcaroot | ||
Readme.md | ||
orca | ||
orca.bat |
Readme.md
Installing
Clone the repo: git clone git@git.handmade.network:hmn/orca.git
.
Cd to orca and build the runtime:
cd orca
./orca dev build-runtime
Install the orca tools:
./orca dev install
Building the sample orca apps:
Cd to the sample project directory and run its build script:
cd samples/pong
./build.sh
On macOS this creates a Pong.app
bundle in samples/pong
that you can double click to run.
On Windows this creates a Pong
directory in samples/pong
. You can launch the app by running Pong/bin/orca.exe
.