Metadata-Version: 2.1
Name: Asciin.py
Version: 0.1.4
Summary: Featherweight 3D / 2D ascii game engine for Python 2.7+ with no external dependencies and written in Python and optimized in C.
Home-page: https://github.com/Rickaym/Asciin.py
Author: Rickaym
License: MIT
Project-URL: Documentation, https://asciipy.readthedocs.io/en/latest/
Project-URL: Issue tracker, https://github.com/Rickaym/Asciin.py/issues
Description: # Asciin.py
        
        ![logo](https://raw.githubusercontent.com/Rickaym/Asciin.py/main/assets/inverted_logo.png)
        
        A 2D and 3D Ascii game engine written for performance (still under development)
        
        Current docs: **https://asciipy.readthedocs.io/en/latest/**
        
        pypi project: **https://pypi.org/project/Asciin.py/**
        
        ### Status Demo
        
        1. **Matrixes Patterns**
           <br> An example in working with PixelPainters.
        
        ![demo](https://raw.githubusercontent.com/Rickaym/Asciin.py/main/assets/LuckyDevStuff_render.gif)
        
        Credits to LuckyDevStuff for the examples ~
        
        More examples [here](https://github.com/Rickaym/Asciin.py/tree/main/examples/).
        
        ### Installing
        
        **Python 2.7 or higher is required**
        
        ```js
        // Windows
        py -m pip install -U asciin.py
        
        // Linux/macOS
        python -m pip install -U asciin.py
        ```
        
        ### Simple Example
        
        ```py
        from Asciinpy import Square, Displayable, Window, Resolutions
        
        # Define a window
        window = Window(resolution=Resolutions._60c)
        
        @window.loop()
        def game_loop(screen):
           # type: (Displayable) -> None
           coordinate = (0, 0)
           length = 8
           texture = "%"
           Square = Square(coordinate, length, texture)
           while True:
              screen.blit(Square)
              screen.refresh()
        
        window.run()
        ```
        
        Contact me at Neo#1844 for inquiries.
        
Platform: UNKNOWN
Requires-Python: >=2.7
Description-Content-Type: text/markdown
