Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/burdockcascade/amore
https://github.com/burdockcascade/amore
love2d love2d-framework lua
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/burdockcascade/amore
- Owner: burdockcascade
- License: mit
- Created: 2024-07-27T23:30:57.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-01T23:36:32.000Z (6 months ago)
- Last Synced: 2024-09-26T19:43:48.371Z (4 months ago)
- Topics: love2d, love2d-framework, lua
- Language: Lua
- Homepage:
- Size: 322 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Amore
## Status
This project is in the early stages of development. It is not yet ready for use.## Description
Amore is a simple 2D game engine built on top of Love2D. It is designed to be simple and easy to use, while still providing a lot of flexibility.## Example
```lua
local resources = {
images = {
love2dwhale = { path = "assets/love2dwhale.png" }
}
}local love_whale = {
type = "sprite",
visible = true,
paint = {
texture = "love2dwhale",
},
transform = {
position = { x = 300, y = 300 },
origin = { x = 174/2, y = 174/2 }
},
events = {
update = function(app, node, dt)
node.transform.rotation = (node.transform.rotation or 0) + 0.01
end
}
}START(resources, love_whale)
```