Skip to content

Kivy is an Open source Python library used for rapid development of applications that that comprise of innovative user interfaces, such as multi-touch apps. This Project creates a two-player ping pong gaming application.

Notifications You must be signed in to change notification settings

Chinmayeegade/Kivy-Pong-Game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Kivy-Pong-Game

  • Kivy is an Open source Python library used for rapid development of applications that that comprise of innovative user interfaces, such as multi-touch apps.
  • https://kivy.org/#home
  • This Project creates a two-player ping pong gaming application.
  • Any kivy project requires 2 main files:
  • #main.py : Serves the backend development:
    #Requisites:
    import kivy
    from kivy.app import App
    from kivy.uix.widget import Widget (or Layouts)
    class WidgetorLayoutName(Widget/Layout):
      pass
    class AppNameApp(App):
      pass
    AppNameApp().run()
    
  • #AppName.kv : Serves the frontend development
    #Requisites:
    WidgetorLayoutName
    <WidgetorLayoutName>:
    

Game Preview

Untitled.design.1.mp4

About

Kivy is an Open source Python library used for rapid development of applications that that comprise of innovative user interfaces, such as multi-touch apps. This Project creates a two-player ping pong gaming application.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages