Fix wrong animator binding names

This commit is contained in:
DBotThePony 2025-01-01 09:40:55 +07:00
parent b223d6ea6c
commit 0c169e58ec
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -271,8 +271,8 @@ fun provideAnimatorBindings(self: Animator, lua: LuaThread) {
lua.pushBinding(self, "rotateGroup", ::rotateGroup)
lua.pushBinding(self, "currentRotationAngle", ::currentRotationAngle)
lua.pushBinding(self, "targetRotationAngle", ::targetRotationAngle)
lua.pushBinding(self, "translateTransformGroup", ::translateTransformGroup)
lua.pushBinding(self, "rotateTransformGroup", ::rotateTransformGroup)
lua.pushBinding(self, "translateTransformationGroup", ::translateTransformGroup)
lua.pushBinding(self, "rotateTransformationGroup", ::rotateTransformGroup)
lua.pushBinding(self, "scaleTransformationGroup", ::scaleTransformationGroup)
lua.pushBinding(self, "transformTransformationGroup", ::transformTransformationGroup)
lua.pushBinding(self, "resetTransformationGroup", ::resetTransformationGroup)