From a43f26353e2c813faa17700b6fcbd614eae3c6ee Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Tue, 1 Jun 2021 19:28:46 +0300 Subject: [PATCH] feat: Initial commit --- .vim/coc-settings.json | 3 +++ README.md | 10 ++++++++++ conf.lua | 3 +++ main.lua | 0 4 files changed, 16 insertions(+) create mode 100644 .vim/coc-settings.json create mode 100644 README.md create mode 100644 conf.lua create mode 100644 main.lua diff --git a/.vim/coc-settings.json b/.vim/coc-settings.json new file mode 100644 index 0000000..bd95d0d --- /dev/null +++ b/.vim/coc-settings.json @@ -0,0 +1,3 @@ +{ + "Lua.diagnostics.globals": ["love"] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..08ab5f1 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Circle packing + +I was inspired by this video "[Coding Challenge #50.1: Animated Circle Packing](https://www.youtube.com/watch?v=QHEQuoIKgNE)". +So yeah, this is my implementation of that, but with Lua and a couple extra features. + +## Starting + +To run this project you need to install [Love2D](https://love2d.org) yourself. +There is a great tutorial on how to do all of this [here](https://love2d.org/wiki/Getting_Started). + diff --git a/conf.lua b/conf.lua new file mode 100644 index 0000000..8f393c5 --- /dev/null +++ b/conf.lua @@ -0,0 +1,3 @@ +function love.conf(t) + t.window.title = "Circle packing" +end diff --git a/main.lua b/main.lua new file mode 100644 index 0000000..e69de29