Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .
- ├── aclocal.m4
- ├── build-aux
- │ ├── install-sh
- │ ├── missing
- │ ├── test-driver
- │ └── texinfo.tex
- ├── chickadee
- │ ├── async-repl.scm
- │ ├── audio
- │ │ ├── mpg123.scm
- │ │ ├── openal.scm
- │ │ ├── vorbis.scm
- │ │ └── wav.scm
- │ ├── audio.scm
- │ ├── base64.scm
- │ ├── cli
- │ │ ├── bundle.scm
- │ │ └── play.scm
- │ ├── cli.scm
- │ ├── config.scm
- │ ├── config.scm.in
- │ ├── data
- │ │ ├── array-list.scm
- │ │ ├── grid.scm
- │ │ ├── heap.scm
- │ │ ├── path-finding.scm
- │ │ ├── quadtree.scm
- │ │ └── queue.scm
- │ ├── freetype.scm
- │ ├── game-loop.scm
- │ ├── graphics
- │ │ ├── 9-patch.scm
- │ │ ├── blend.scm
- │ │ ├── buffer.scm
- │ │ ├── color.scm
- │ │ ├── depth.scm
- │ │ ├── engine.scm
- │ │ ├── framebuffer.scm
- │ │ ├── gl.scm
- │ │ ├── light.scm
- │ │ ├── mesh.scm
- │ │ ├── model.scm
- │ │ ├── multisample.scm
- │ │ ├── particles.scm
- │ │ ├── path.scm
- │ │ ├── pbr.scm
- │ │ ├── phong.scm
- │ │ ├── pixbuf.scm
- │ │ ├── polygon.scm
- │ │ ├── shader.scm
- │ │ ├── skybox.scm
- │ │ ├── sprite.scm
- │ │ ├── stencil.scm
- │ │ ├── text.scm
- │ │ ├── texture.scm
- │ │ ├── tile-map.scm
- │ │ └── viewport.scm
- │ ├── image
- │ │ ├── jpeg.scm
- │ │ └── png.scm
- │ ├── image.scm
- │ ├── json.scm
- │ ├── math
- │ │ ├── bezier.scm
- │ │ ├── easings.scm
- │ │ ├── matrix.scm
- │ │ ├── quaternion.scm
- │ │ ├── rect.scm
- │ │ └── vector.scm
- │ ├── math.scm
- │ ├── readline.scm
- │ ├── scripting
- │ │ ├── agenda.scm
- │ │ ├── channel.scm
- │ │ └── script.scm
- │ ├── scripting.scm
- │ └── utils.scm
- ├── chickadee.scm
- ├── configure
- ├── configure.ac
- ├── COPYING
- ├── data
- │ ├── AUTHORS
- │ ├── fonts
- │ │ └── Inconsolata-Regular.otf
- │ ├── gamecontrollerdb.txt
- │ └── shaders
- │ ├── path-fill-frag.glsl
- │ ├── path-fill-vert.glsl
- │ ├── path-stroke-frag.glsl
- │ ├── path-stroke-vert.glsl
- │ ├── pbr-frag.glsl
- │ ├── pbr-vert.glsl
- │ ├── phong-frag.glsl
- │ ├── phong-vert.glsl
- │ ├── skybox-frag.glsl
- │ └── skybox-vert.glsl
- ├── doc
- │ ├── apache-2.0.texi
- │ ├── api.texi
- │ ├── chickadee.info
- │ └── chickadee.texi
- ├── examples
- │ ├── 9-patch.scm
- │ ├── audio
- │ │ ├── AUTHORS
- │ │ ├── explosion.wav
- │ │ ├── spooky-dungeon.ogg
- │ │ ├── the-forgotten-land.mp3
- │ │ └── venus.wav
- │ ├── audio.scm
- │ ├── game-controller.scm
- │ ├── grid.scm
- │ ├── images
- │ │ ├── AUTHORS
- │ │ ├── chickadee.png
- │ │ ├── controller-buttons.png
- │ │ ├── dialog-box.png
- │ │ ├── explosion.png
- │ │ ├── serene-village.png
- │ │ └── shot.png
- │ ├── maps
- │ │ ├── example.tmx
- │ │ └── serene-village.tsx
- │ ├── models
- │ │ └── Suzanne
- │ │ ├── Suzanne_BaseColor.png
- │ │ ├── Suzanne.bin
- │ │ ├── Suzanne.gltf
- │ │ └── Suzanne_MetallicRoughness.png
- │ ├── model.scm
- │ ├── particles.scm
- │ ├── path.scm
- │ ├── quadtree.scm
- │ ├── sprite-batch.scm
- │ ├── sprite.scm
- │ ├── text.scm
- │ └── tile-map.scm
- ├── Makefile.am
- ├── Makefile.in
- ├── pre-inst-env.in
- ├── README
- ├── run-example
- ├── scripts
- │ └── chickadee.in
- ├── temp.txt
- ├── test-env.in
- └── tests
- ├── array-list.scm
- ├── base64.scm
- ├── heap.scm
- ├── matrix.scm
- ├── quadtree.scm
- ├── queue.scm
- ├── rect.scm
- ├── utils.scm
- └── vector.scm
- 21 directories, 136 files
Add Comment
Please, Sign In to add comment