honey lua interpreter (fork)
Go to file
sanine 0369e8d811 Update 'README.md' 2023-05-30 07:06:36 +00:00
demo really really strongy suggest core profile (looking @ u, mac) 2023-03-12 01:20:53 -06:00
doc update doxyfile 2020-10-27 18:44:24 -05:00
libs fix LUAJIT_DIR not set bug 2023-03-11 17:16:00 -06:00
src add glPointSize and glLineWidth binds 2023-05-17 10:58:21 -05:00
util bind engine and sound functions 2023-02-26 01:07:37 -06:00
.gitignore build with clang on visual studio 2022-08-21 21:54:47 -05:00
CMakeLists.txt really really strongy suggest core profile (looking @ u, mac) 2023-03-12 01:20:53 -06:00
CMakeSettings.json build with clang on visual studio 2022-08-21 21:54:47 -05:00
LICENSE.md add LICENSE.md 2020-10-18 12:21:38 -05:00
README.md Update 'README.md' 2023-05-30 07:06:36 +00:00
design.md add design overview 2022-06-14 00:08:24 -05:00

README.md

honey core

A lua interpreter providing low-level bindings to make 3d games!

building

The honey core requires

  • OpenGL 4.1+
  • CMake

and as far as I am aware... that's it.

To build:

mkdir build
cd build
cmake ..
make

layout

  • demo/ - contains sample lua code that can be run with the interpreter
  • doc/ - will contain documentation
  • libs/ - contains 3rd-party libraries used by the interpreter
  • src/ - contains the main source code for the honey core
  • util/ - contains utility scripts useful in the development process