Guest User

Untitled

a guest
May 17th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. .
  2. ├── aclocal.m4
  3. ├── build-aux
  4. │   ├── install-sh
  5. │   ├── missing
  6. │   ├── test-driver
  7. │   └── texinfo.tex
  8. ├── chickadee
  9. │   ├── async-repl.scm
  10. │   ├── audio
  11. │   │   ├── mpg123.scm
  12. │   │   ├── openal.scm
  13. │   │   ├── vorbis.scm
  14. │   │   └── wav.scm
  15. │   ├── audio.scm
  16. │   ├── base64.scm
  17. │   ├── cli
  18. │   │   ├── bundle.scm
  19. │   │   └── play.scm
  20. │   ├── cli.scm
  21. │   ├── config.scm
  22. │   ├── config.scm.in
  23. │   ├── data
  24. │   │   ├── array-list.scm
  25. │   │   ├── grid.scm
  26. │   │   ├── heap.scm
  27. │   │   ├── path-finding.scm
  28. │   │   ├── quadtree.scm
  29. │   │   └── queue.scm
  30. │   ├── freetype.scm
  31. │   ├── game-loop.scm
  32. │   ├── graphics
  33. │   │   ├── 9-patch.scm
  34. │   │   ├── blend.scm
  35. │   │   ├── buffer.scm
  36. │   │   ├── color.scm
  37. │   │   ├── depth.scm
  38. │   │   ├── engine.scm
  39. │   │   ├── framebuffer.scm
  40. │   │   ├── gl.scm
  41. │   │   ├── light.scm
  42. │   │   ├── mesh.scm
  43. │   │   ├── model.scm
  44. │   │   ├── multisample.scm
  45. │   │   ├── particles.scm
  46. │   │   ├── path.scm
  47. │   │   ├── pbr.scm
  48. │   │   ├── phong.scm
  49. │   │   ├── pixbuf.scm
  50. │   │   ├── polygon.scm
  51. │   │   ├── shader.scm
  52. │   │   ├── skybox.scm
  53. │   │   ├── sprite.scm
  54. │   │   ├── stencil.scm
  55. │   │   ├── text.scm
  56. │   │   ├── texture.scm
  57. │   │   ├── tile-map.scm
  58. │   │   └── viewport.scm
  59. │   ├── image
  60. │   │   ├── jpeg.scm
  61. │   │   └── png.scm
  62. │   ├── image.scm
  63. │   ├── json.scm
  64. │   ├── math
  65. │   │   ├── bezier.scm
  66. │   │   ├── easings.scm
  67. │   │   ├── matrix.scm
  68. │   │   ├── quaternion.scm
  69. │   │   ├── rect.scm
  70. │   │   └── vector.scm
  71. │   ├── math.scm
  72. │   ├── readline.scm
  73. │   ├── scripting
  74. │   │   ├── agenda.scm
  75. │   │   ├── channel.scm
  76. │   │   └── script.scm
  77. │   ├── scripting.scm
  78. │   └── utils.scm
  79. ├── chickadee.scm
  80. ├── configure
  81. ├── configure.ac
  82. ├── COPYING
  83. ├── data
  84. │   ├── AUTHORS
  85. │   ├── fonts
  86. │   │   └── Inconsolata-Regular.otf
  87. │   ├── gamecontrollerdb.txt
  88. │   └── shaders
  89. │   ├── path-fill-frag.glsl
  90. │   ├── path-fill-vert.glsl
  91. │   ├── path-stroke-frag.glsl
  92. │   ├── path-stroke-vert.glsl
  93. │   ├── pbr-frag.glsl
  94. │   ├── pbr-vert.glsl
  95. │   ├── phong-frag.glsl
  96. │   ├── phong-vert.glsl
  97. │   ├── skybox-frag.glsl
  98. │   └── skybox-vert.glsl
  99. ├── doc
  100. │   ├── apache-2.0.texi
  101. │   ├── api.texi
  102. │   ├── chickadee.info
  103. │   └── chickadee.texi
  104. ├── examples
  105. │   ├── 9-patch.scm
  106. │   ├── audio
  107. │   │   ├── AUTHORS
  108. │   │   ├── explosion.wav
  109. │   │   ├── spooky-dungeon.ogg
  110. │   │   ├── the-forgotten-land.mp3
  111. │   │   └── venus.wav
  112. │   ├── audio.scm
  113. │   ├── game-controller.scm
  114. │   ├── grid.scm
  115. │   ├── images
  116. │   │   ├── AUTHORS
  117. │   │   ├── chickadee.png
  118. │   │   ├── controller-buttons.png
  119. │   │   ├── dialog-box.png
  120. │   │   ├── explosion.png
  121. │   │   ├── serene-village.png
  122. │   │   └── shot.png
  123. │   ├── maps
  124. │   │   ├── example.tmx
  125. │   │   └── serene-village.tsx
  126. │   ├── models
  127. │   │   └── Suzanne
  128. │   │   ├── Suzanne_BaseColor.png
  129. │   │   ├── Suzanne.bin
  130. │   │   ├── Suzanne.gltf
  131. │   │   └── Suzanne_MetallicRoughness.png
  132. │   ├── model.scm
  133. │   ├── particles.scm
  134. │   ├── path.scm
  135. │   ├── quadtree.scm
  136. │   ├── sprite-batch.scm
  137. │   ├── sprite.scm
  138. │   ├── text.scm
  139. │   └── tile-map.scm
  140. ├── Makefile.am
  141. ├── Makefile.in
  142. ├── pre-inst-env.in
  143. ├── README
  144. ├── run-example
  145. ├── scripts
  146. │   └── chickadee.in
  147. ├── temp.txt
  148. ├── test-env.in
  149. └── tests
  150. ├── array-list.scm
  151. ├── base64.scm
  152. ├── heap.scm
  153. ├── matrix.scm
  154. ├── quadtree.scm
  155. ├── queue.scm
  156. ├── rect.scm
  157. ├── utils.scm
  158. └── vector.scm
  159.  
  160. 21 directories, 136 files
  161.  
Add Comment
Please, Sign In to add comment