A downloadable tool for Windows, macOS, Linux, and Android

Download NowName your own price

Planimeter Game Engine 2D

Designed for multiplayer-first game experiences.

Fork me on GitHub


Examples

Planimeter Game Engine 2D lets you jump straight into game logic.

Making a HUD element

class "gui.hudhealth" ( "gui.panel" )
local hudhealth = gui.hudhealth
function hudhealth:draw()
    love.graphics.print( localplayer:getHealth() )
    gui.panel.draw( self )
end

Making an entity

class "npc_monster" ( "npc" )
function npc_monster:npc_monster()
    npc.npc( self )
    self:setSprite( "images/monster.png" )
end
entities.linkToClassname( npc_monster, "npc_monster" )

Playing a sound from an entity

function npc_monster:onTakeDamage()
    npc.onTakeDamage( self )
    self:emitSound( "sounds/cry.wav" )
end







Copyright © Planimeter. All rights reserved.

Planimeter
StatusReleased
CategoryTool
PlatformsWindows, macOS, Linux, Android
Publisher
Rating
Rated 4.7 out of 5 stars
(3 total ratings)
AuthorAndrew McWatters
Made withLÖVE
Tags2D, Game engine, LÖVE, Moddable, Pixel Art, Retro, Sprites, Tilemap
Code licenseMIT License
Average sessionA few minutes
LanguagesEnglish
InputsKeyboard, Mouse, Xbox controller, Gamepad (any), Joystick, Touchscreen, Smartphone
AccessibilityConfigurable controls
MultiplayerLocal multiplayer, Server-based networked multiplayer
LinksHomepage, Source code

Download

Download NowName your own price

Click download now to get access to the following files:

master.zip
External