Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Commit

Permalink
Fixed assignPathAnimation typo
Browse files Browse the repository at this point in the history
  • Loading branch information
megamaz committed Feb 13, 2021
1 parent 4fc1d7a commit d3e734d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion noodleExtensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def animateTrack(self, data:AnimateTrack):
return data.event


def assignPathAnimation(self, data:AassignPathAnimation):
def assignPathAnimation(self, data:AssignPathAnimation):
'''Create a new AssignPathAnimation event. (Event will be overwritten if path is already being animated.)
### PARAMETERS
Expand Down
2 changes: 1 addition & 1 deletion noodleExtensions/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def fromDict(cls, data:dict):
'''Construcs a new AnimateTrack object from a dictionary.'''
return super().__init__(data["_time"], data["_data"]["_track"], data["_data"]["_duration"], **data["_data"])

class AassignPathAnimation:
class AssignPathAnimation:
def __init__(self, beat, track, duration, **properties):
'''an Assign Path Animation object which contains info on an assignPathAnimation event.\n
`beat` - The beat at which the event should start.
Expand Down

0 comments on commit d3e734d

Please sign in to comment.