All Projects → poke1024 → Tove2d

poke1024 / Tove2d

Licence: other
Animated vector graphics for LÖVE.

Projects that are alternatives of or similar to Tove2d

Goluwa
a game framework written in luajit
Stars: ✭ 173 (+53.1%)
Mutual labels:  game-development, love2d
Lovetoys
🍌 a full-featured Entity-Component-System framework for making games with lua
Stars: ✭ 252 (+123.01%)
Mutual labels:  game-development, love2d
Awesome Love2d
A curated list of amazingly awesome LÖVE libraries, resources and shiny things.
Stars: ✭ 2,191 (+1838.94%)
Mutual labels:  game-development, love2d
Boipushy
Input module for LÖVE
Stars: ✭ 138 (+22.12%)
Mutual labels:  game-development, love2d
Grid Sdk
The Grid SDK - Game engine for Lua
Stars: ✭ 612 (+441.59%)
Mutual labels:  game-development, love2d
lovector
A pure-lua vector graphics processing and rendering library for LÖVE 2D
Stars: ✭ 29 (-74.34%)
Mutual labels:  love2d, vector-graphics
Stalker X
Camera module for LÖVE
Stars: ✭ 212 (+87.61%)
Mutual labels:  game-development, love2d
Zabuyaki
Zabuyaki, old-school side-scrolling beat 'em up
Stars: ✭ 91 (-19.47%)
Mutual labels:  game-development, love2d
Blog
gamedev blog
Stars: ✭ 3,076 (+2622.12%)
Mutual labels:  game-development, love2d
Windfield
Physics module for LÖVE
Stars: ✭ 254 (+124.78%)
Mutual labels:  game-development, love2d
Bytepath
A replayable arcade shooter with a focus on build theorycrafting made using Lua and LÖVE.
Stars: ✭ 1,119 (+890.27%)
Mutual labels:  game-development, love2d
Love
LÖVE is an awesome 2D game framework for Lua.
Stars: ✭ 1,305 (+1054.87%)
Mutual labels:  game-development, love2d
Astray
Astray is a lua based maze, room and dungeon generation library for dungeon crawlers and rougelike video games
Stars: ✭ 99 (-12.39%)
Mutual labels:  love2d
Dotgame
.GAME is a show hosted on Channel 9 that is dedicated to game development with a primary focus on .NET technology. Each episode will focus on tutorials, cover helpful tips/tricks, or feature an interview with an industry expert.
Stars: ✭ 107 (-5.31%)
Mutual labels:  game-development
Entitas Sync Framework
Networking framework for Entitas ECS. Targeted at turnbased games or other slow-paced genres.
Stars: ✭ 98 (-13.27%)
Mutual labels:  game-development
Love2dcs
C# Wrapper for LÖVE, a 2d game engine
Stars: ✭ 97 (-14.16%)
Mutual labels:  love2d
Awesome Opengl
A curated list of awesome OpenGL libraries, debuggers and resources.
Stars: ✭ 1,577 (+1295.58%)
Mutual labels:  game-development
Awesome Gamedev
A collection of free software and free culture resources for making amazing games. (mirror)
Stars: ✭ 1,571 (+1290.27%)
Mutual labels:  game-development
Ropework
a visual novel framework template for Yarn Spinner / Unity C#
Stars: ✭ 97 (-14.16%)
Mutual labels:  game-development
Bouncing Balls
Bouncing balls simulation using plain JavaScript
Stars: ✭ 96 (-15.04%)
Mutual labels:  game-development

TÖVE

Animated vector graphics for LÖVE.

Description

TÖVE is a vector drawing canvas for LÖVE, think HTML5's <canvas> or OpenFL's Graphics. Which you can animate. Efficiently.

Background

There have been various libraries for drawing vector graphics out there, but few of them are built for drawing or even animating complex scenes and most of them stopped at the most basic features.

As an example, take the HTML5 <canvas> tag: it's great in terms of quality, yet it's slow for animation or games, as it doesn't know how to keep its graphics data retained on the GPU: indeed, it will do a full redraw of the whole scene on each frame.

You can use WebGL, but then you lose vector graphics. There have been attempts to fix this by implementing vector graphics on top of WebGL, such as PIXI SVG and the ThreeJS SVG Loader. TÖVE is exactly like these, only more comprehensive. And for LÖVE.

Features

Getting Started

Releases are available for macOS, Linux and Windows: https://github.com/poke1024/tove2d/releases.

Some tutorials and general information on TÖVE are found in TÖVE's documentation.

Be sure to check out TÖVE's API documentation, which gives you detailed information on classes and functions.

Note: on Windows, in order to run the demos, you need to call setup.bat once (this will fix the links to the lib and asset folders, so you can run e.g. love demos/blob).

Building TÖVE Yourself

On Linux and macOS

git clone --recurse-submodules https://github.com/poke1024/tove2d
cd tove2d
scons
love demos/hearts

On Windows

# in git bash:
git clone --recurse-submodules https://github.com/poke1024/tove2d
cd tove2d

# in regular cmd shell:
cd path/to/tove2d
setup.bat /C

Take a look inside setup.bat to learn more about installing a compiler environment.

Experimental

Use scons --arch=sandybridge or scons --arch=haswell to compile for a custom CPU architecture. On Windows, this enables AVX extensions, which mainly speeds up the rasterizer dithering code.

On POSIX, in addition, you can enable hardware intrinsics for 16-bit floating point operations by using scons --f16c. These intrinsics might give small performance benefits in the gpux mode.

Since enabling custom options causes crashes on some CPUs (https://github.com/poke1024/tove2d/issues/24), I strongly recommend sticking to the defaults, as they ensure that your binary will run on many CPUs.

Roadmap

I keep my ideas of what might eventually end up in TÖVE in TÖVE's Public Trello Board.

License

TÖVE is licensed under the MIT license.

Details and the licenses of the included third party code are found in the LICENSE file.

Credits

TÖVE owes a lot to Mikko Mononen's excellent NanoSVG. Not only does TÖVE call NanoSVG in various places, it has also inherited some of its code.

TÖVE's API was inspired by EaselJS and PlotDevice.

The graphics you see in the tutorials and demos are by Mike Mac, Kenney and Chris Hildenbrand. The font in the demos is "amatic" by Vernon Adams.

About the Name

TÖVE is a portmanteau of LÖVE, Towards Vector Graphics and Tove Jansson, the Swedish author and illustrator of the Moomins.

Similar Projects

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].