Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

libsgd

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libsgd

Simple Game Development library

  • 0.17.1
  • PyPI
  • Socket score

Maintainers
1

LibSGD

Simple Game Development Library

LibSGD is a game development library that provides a high level, easy to use 'scene graph' style API for writing games and apps.

LibSGD is open source software licensed under the Zlib/PNG license.

Feel free to drop in to the LibSGD community here: https://skirmish-dev.net/forum

The API reference can be found here: https://skirmish-dev.net/libsgd/help/html/index.html

You can support the LibSGD project through its Patreon page: https://www.patreon.com/libsgd

The LibSGD github repository is here: https://github.com/blitz-research/libsgd

Here is an example of a minimal LibSGD app:

from libsgd import sgd

sgd.init()

sgd.createWindow(640, 480, "Hello World!", sgd.WINDOW_FLAGS_CENTERED | sgd.WINDOW_FLAGS_RESIZABLE)

sgd.setClearColor(1,.5,0,1)

while not (sgd.pollEvents() & sgd.EVENT_MASK_CLOSE_CLICKED):

	if sgd.isKeyHit(sgd.KEY_ESCAPE):
		break

	sgd.renderScene()

	sgd.present()

sgd.terminate()

LibSGD is not yet at V1.0 so please be aware that there will be changes made before then, although hopefully nothing major!

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc