KO
|
EN
gitlite — search
Search
#python
#javascript
#pytorch
#hacktoberfest
#ethereum
#nodejs
#cli
#game
#reactjs
#ruby
#python3
#matlab
love-kickstart
★ 28
Open GitHub ↗
Quickly kickstart LÖVE games
Download README (.md)
Explore Similar Repositories
compile-hadoop
:
Compile Hadoop in Docker container
csgo-map-veto
:
An application to do map veto for the game Counter-Strike Global Offensive.
DiskCleanup
:
No description available.
sql-streams
:
Painless low level jdbc abstraction using the java 8 stream api.
PumpkinFileManager
:
文件管理器1.0:实现了增删改查,排序,复制和粘贴操作.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
love-kickstart
?
Download (.md)
![kickstart][kickstart] # love-kickstart love-kickstarter is a project template that aims at providing the most straightforward tools to quickly set up a LÖVE game, which makes it useful for game jams and hackatons. Setup - **main.lua** ---------------- Set the internal resolution of your game ```lua WWIDTH, WHEIGHT = 1920, 1080 ``` Add external libraries and custom classes (e.g. Player class) ```lua --Includes require "include.player" --example ``` Start making your game by editing and adding new scenes! By default, **main.lua** redirects to the **game** scene, located in "*/scenes*". ```lua --game.lua function game.update(dt) moveObjects(dt) end function game.draw() drawObjects() end ``` What's included ---------------- [push](https://github.com/Ulydev/push) - Handles everything resolution-related [shack](https://github.com/Ulydev/shack) - Lets you quickly add screen effects such as shake, rotate, shear and scale [lem](https://github.com/Ulydev/lem) - Allows you to set up events and call them whenever and wherever in your code [lue](https://github.com/Ulydev/lue) - Adds hue to your game [stager](https://github.com/Ulydev/stager) - Manages all the different scenes and lets you switch between them [wave](https://github.com/Ulydev/wave) - Audio manager with sound parsing functionalities [soft](https://github.com/Ulydev/soft) - Interpolates values [easy](https://github.com/Ulydev/easy) - A minimalist easing library [trail](https://github.com/Ulydev/trail) - Adds trail effects to your game [kickstart]: http://s32.postimg.org/t5bydkfad/love.png