8000 GitHub - ViniciusPiresLopes/vge: VGE (Vini Game Engine) is a 2D game engine made with pygame. It supports Scene and Nodes, each node with its facility.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

VGE (Vini Game Engine) is a 2D game engine made with pygame. It supports Scene and Nodes, each node with its facility.

License

Notifications You must be signed in to change notification settings

ViniciusPiresLopes/vge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VGE

VGE (Vini Game Engine) is a 2D game engine made with pygame. It supports Scene and Nodes, each node with its facility.

Instalation

Avaliable soon...

Usage

from vge.core.engine import Engine
from vge.core.scene import Scene


class MyScene(Scene):
    def on_start(self):
        pass


class MyGame(Engine):
    def on_start(self):
        self.add_scene("MyScene", MyScene)
        self.make_current_scene("MyScene")


if __name__ == "__main__":
    MyGame().run()

License

VGE is released under the MIT license. See LICENSE for details.

About

VGE (Vini Game Engine) is a 2D game engine made with pygame. It supports Scene and Nodes, each node with its facility.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0