Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chinmayeegade/kivy-tiled-perspective-for-motion-gaming-applications
Infinite layout of randomly generated white tiles, useful repetitive gaming applications.
https://github.com/chinmayeegade/kivy-tiled-perspective-for-motion-gaming-applications
kivy python
Last synced: 2 days ago
JSON representation
Infinite layout of randomly generated white tiles, useful repetitive gaming applications.
- Host: GitHub
- URL: https://github.com/chinmayeegade/kivy-tiled-perspective-for-motion-gaming-applications
- Owner: Chinmayeegade
- Created: 2021-12-25T16:30:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-05T15:57:51.000Z (about 3 years ago)
- Last Synced: 2024-11-11T23:28:28.948Z (2 months ago)
- Topics: kivy, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kivy-Tiled-Perspective-for-Motion-Gaming-Applications
- 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 an infinite layout of randomly generated white tiles, useful repetitive gaming applications.
- The layout is operated by the right and left arrow keys.
- 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
:
## Project Previewhttps://user-images.githubusercontent.com/96294811/148248238-bf5a2004-b420-4ec4-a335-38dddd2e9257.mp4