├── .gitignore ├── .gitmodules ├── Background_Assets └── Background.png ├── DEBUG.lua ├── Descriptions.sqlite3 ├── Dot_Assets ├── switch_Thumb.png └── warp_Thumb.png ├── EventBlock_Assets └── maze_Thumb.png ├── GameTiles ├── BottomT.png ├── FourWays.png ├── Horizontal.png ├── LeftT.png ├── LowerLeft.png ├── LowerRight.png ├── RightT.png ├── Thumbs.db ├── Tiles.png ├── TopT.png ├── UpperLeft.png ├── UpperRight.png └── Vertical.png ├── PeacerfulDay.ttf ├── README.md ├── SampleTiles └── CC.png ├── annex └── EnemyEvents.lua ├── config.ld ├── config.lua ├── config ├── Dots.lua ├── Editor.lua ├── EditorViews.lua ├── Enemies.lua ├── EventBlocks.lua ├── GameLoop.lua ├── GlobalEvents.lua └── Persistence.lua ├── doc.css ├── gabiies handwritting.ttf ├── game ├── LevelsList.lua └── Player.lua ├── hash_ops.lua ├── main.lua ├── number_ops ├── poisson.lua ├── scalloped_sector.lua └── summed_area.lua ├── samples ├── Delaunay.lua ├── Endless.lua ├── Fire.lua ├── Hilbert.lua ├── HilbertMixer.lua ├── Hop.lua ├── Nodes.lua ├── OrbitsAndLattices.lua ├── Pixels.lua ├── Plasma.lua ├── SlowMo.lua ├── Snowfall.lua ├── Superformulae.lua ├── Swarm.lua ├── TEMP.lua ├── TEMP2.lua ├── TESTING.lua ├── Thoughts.lua ├── Tiling.lua └── Timers.lua ├── scene ├── Choices.lua ├── Intro.lua ├── Level.lua └── Options.lua ├── tiles └── TreeBG.lua └── utils └── Resource.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/.gitmodules -------------------------------------------------------------------------------- /Background_Assets/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/Background_Assets/Background.png -------------------------------------------------------------------------------- /DEBUG.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/DEBUG.lua -------------------------------------------------------------------------------- /Descriptions.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/Descriptions.sqlite3 -------------------------------------------------------------------------------- /Dot_Assets/switch_Thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/Dot_Assets/switch_Thumb.png -------------------------------------------------------------------------------- /Dot_Assets/warp_Thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/Dot_Assets/warp_Thumb.png -------------------------------------------------------------------------------- /EventBlock_Assets/maze_Thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/EventBlock_Assets/maze_Thumb.png -------------------------------------------------------------------------------- /GameTiles/BottomT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/BottomT.png -------------------------------------------------------------------------------- /GameTiles/FourWays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/FourWays.png -------------------------------------------------------------------------------- /GameTiles/Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/Horizontal.png -------------------------------------------------------------------------------- /GameTiles/LeftT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/LeftT.png -------------------------------------------------------------------------------- /GameTiles/LowerLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/LowerLeft.png -------------------------------------------------------------------------------- /GameTiles/LowerRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/LowerRight.png -------------------------------------------------------------------------------- /GameTiles/RightT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/RightT.png -------------------------------------------------------------------------------- /GameTiles/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/Thumbs.db -------------------------------------------------------------------------------- /GameTiles/Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/Tiles.png -------------------------------------------------------------------------------- /GameTiles/TopT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/TopT.png -------------------------------------------------------------------------------- /GameTiles/UpperLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/UpperLeft.png -------------------------------------------------------------------------------- /GameTiles/UpperRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/UpperRight.png -------------------------------------------------------------------------------- /GameTiles/Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/GameTiles/Vertical.png -------------------------------------------------------------------------------- /PeacerfulDay.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/PeacerfulDay.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/README.md -------------------------------------------------------------------------------- /SampleTiles/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/SampleTiles/CC.png -------------------------------------------------------------------------------- /annex/EnemyEvents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/annex/EnemyEvents.lua -------------------------------------------------------------------------------- /config.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config.ld -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config.lua -------------------------------------------------------------------------------- /config/Dots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/Dots.lua -------------------------------------------------------------------------------- /config/Editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/Editor.lua -------------------------------------------------------------------------------- /config/EditorViews.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/EditorViews.lua -------------------------------------------------------------------------------- /config/Enemies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/Enemies.lua -------------------------------------------------------------------------------- /config/EventBlocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/EventBlocks.lua -------------------------------------------------------------------------------- /config/GameLoop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/GameLoop.lua -------------------------------------------------------------------------------- /config/GlobalEvents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/GlobalEvents.lua -------------------------------------------------------------------------------- /config/Persistence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/config/Persistence.lua -------------------------------------------------------------------------------- /doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/doc.css -------------------------------------------------------------------------------- /gabiies handwritting.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/gabiies handwritting.ttf -------------------------------------------------------------------------------- /game/LevelsList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/game/LevelsList.lua -------------------------------------------------------------------------------- /game/Player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/game/Player.lua -------------------------------------------------------------------------------- /hash_ops.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/hash_ops.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/main.lua -------------------------------------------------------------------------------- /number_ops/poisson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/number_ops/poisson.lua -------------------------------------------------------------------------------- /number_ops/scalloped_sector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/number_ops/scalloped_sector.lua -------------------------------------------------------------------------------- /number_ops/summed_area.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/number_ops/summed_area.lua -------------------------------------------------------------------------------- /samples/Delaunay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Delaunay.lua -------------------------------------------------------------------------------- /samples/Endless.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Endless.lua -------------------------------------------------------------------------------- /samples/Fire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Fire.lua -------------------------------------------------------------------------------- /samples/Hilbert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Hilbert.lua -------------------------------------------------------------------------------- /samples/HilbertMixer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/HilbertMixer.lua -------------------------------------------------------------------------------- /samples/Hop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Hop.lua -------------------------------------------------------------------------------- /samples/Nodes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Nodes.lua -------------------------------------------------------------------------------- /samples/OrbitsAndLattices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/OrbitsAndLattices.lua -------------------------------------------------------------------------------- /samples/Pixels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Pixels.lua -------------------------------------------------------------------------------- /samples/Plasma.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Plasma.lua -------------------------------------------------------------------------------- /samples/SlowMo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/SlowMo.lua -------------------------------------------------------------------------------- /samples/Snowfall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Snowfall.lua -------------------------------------------------------------------------------- /samples/Superformulae.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Superformulae.lua -------------------------------------------------------------------------------- /samples/Swarm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Swarm.lua -------------------------------------------------------------------------------- /samples/TEMP.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/TEMP.lua -------------------------------------------------------------------------------- /samples/TEMP2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/TEMP2.lua -------------------------------------------------------------------------------- /samples/TESTING.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/TESTING.lua -------------------------------------------------------------------------------- /samples/Thoughts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Thoughts.lua -------------------------------------------------------------------------------- /samples/Tiling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Tiling.lua -------------------------------------------------------------------------------- /samples/Timers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/samples/Timers.lua -------------------------------------------------------------------------------- /scene/Choices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/scene/Choices.lua -------------------------------------------------------------------------------- /scene/Intro.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/scene/Intro.lua -------------------------------------------------------------------------------- /scene/Level.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/scene/Level.lua -------------------------------------------------------------------------------- /scene/Options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/scene/Options.lua -------------------------------------------------------------------------------- /tiles/TreeBG.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/tiles/TreeBG.lua -------------------------------------------------------------------------------- /utils/Resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggcrunchy/solar2d-snippets/HEAD/utils/Resource.lua --------------------------------------------------------------------------------