Metadata-Version: 2.1
Name: NoodleExtensions
Version: 2.0.0
Summary: Edit Beat Saber Noodle Extensions level easily using this library.
Home-page: https://github.com/megamaz/NoodleExtensions-python
Author: megamaz
Author-email: raphael.mazuel@gmail.com
License: MIT license
Project-URL: Bug Reports, https://github.com/megamaz/NoodleExtensions-python/issues
Description: # Python Noodle Extensions Editor (PNEE)
        Current Version: 2.0.0\
        Check your installed version by doing `pip show NoodleExtensions`. If you are not on 2.0.0, do `pip install --ugprade NoodleExtensions`.
        ```
        PPPPPPPPPPPPPPPPP   NNNNNNNN        NNNNNNNNEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
        P::::::::::::::::P  N:::::::N       N::::::NE::::::::::::::::::::EE::::::::::::::::::::E
        P::::::PPPPPP:::::P N::::::::N      N::::::NE::::::::::::::::::::EE::::::::::::::::::::E
        PP:::::P     P:::::PN:::::::::N     N::::::NEE::::::EEEEEEEEE::::EEE::::::EEEEEEEEE::::E
          P::::P     P:::::PN::::::::::N    N::::::N  E:::::E       EEEEEE  E:::::E       EEEEEE
          P::::P     P:::::PN:::::::::::N   N::::::N  E:::::E               E:::::E             
          P::::PPPPPP:::::P N:::::::N::::N  N::::::N  E::::::EEEEEEEEEE     E::::::EEEEEEEEEE   
          P:::::::::::::PP  N::::::N N::::N N::::::N  E:::::::::::::::E     E:::::::::::::::E   
          P::::PPPPPPPPP    N::::::N  N::::N:::::::N  E:::::::::::::::E     E:::::::::::::::E   
          P::::P            N::::::N   N:::::::::::N  E::::::EEEEEEEEEE     E::::::EEEEEEEEEE   
          P::::P            N::::::N    N::::::::::N  E:::::E               E:::::E             
          P::::P            N::::::N     N:::::::::N  E:::::E       EEEEEE  E:::::E       EEEEEE
        PP::::::PP          N::::::N      N::::::::NEE::::::EEEEEEEE:::::EEE::::::EEEEEEEE:::::E
        P::::::::P          N::::::N       N:::::::NE::::::::::::::::::::EE::::::::::::::::::::E
        P::::::::P          N::::::N        N::::::NE::::::::::::::::::::EE::::::::::::::::::::E
        PPPPPPPPPP          NNNNNNNN         NNNNNNNEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
        ```
        ## my to-do list
        If you want to know what's currently on my to-do list, you can go [here](https://trello.com/b/yA5qQTs7)! Pull requests, feedback, issues, and more are appreciated. If you'd like to contact me, you can do so on discord at `megamaz#1020`
        ## What is it?
        This is a Python Noodle Extensions Editor for Beat Saber levels. Manually editing a JSON file over a long period of time can get really annoying, so this should speed up the process!\
        ### The docs are still a work in progress. If you have any questions on how to use the script or need help, you can contact me on discord at `megamaz#1020`
        
        ## Sample
        ```py
        import noodleExtensions as NE
        
        editor = NE.NoodleExtensions(r"level.datpath")
        
        # assign to a new track
        dropNote = NE.Note(5, 1, 0, 0, 8, _track="FallDownTrack")
        editor.createNote(dropNote)
        
        FallDownTrack = NE.AnimateTrack(2, "FallDownTrack", 2, _position=[
          [0, 100, 0, 0], # be in the sky before it appears
          [0, 0, 0, 0.75, "easeOutBounce"], # fall down in front of player and finish animation just in time for the player to hit it
        ])
        editor.animateTrack(FallDownTrack)
        
        # push events to the level.dat so it can be ready to play
        editor.pushChanges()
        ```
        # Pull Request
        To make a pull request, please test your code either using [pytest](https://docs.pytest.org/en/stable/) or your python testing env. of your choice.\
        I will not be accepting any form of pull request if the test files have not been modified to fit your modifications.
        1. Fork this project
        2. Edit code 
        3. *Test* your code
        4. If check 3 is done, move on to step 5
        5. Make the pull request
        ## Current Issues:
        None (Contact me at `megamaz#1020` if you run into any issues)
        #### Currently testing features (checked features have been tested and are working)
        * [X] updateDependencies
        * [X] pushChanges
        * [X] getNote
        * [X] getWall
        * [X] editNote
        * [X] editWall
        * [X] animateTrack
        * [X] assignPathAnimation
        * [X] assignTrackParent
        * [X] assignPlayerToTrack
Keywords: Beat Saber,Noodle Extensions
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
