Hi, this was a bug that i patched recently, Check if you have the most recent version
Isnāt it already compatible with the emote wheel? Itās made by Roblox so I doubt you can change it to use SimpleAnimate, or if thereās even a point of that.
Dunno, it doesnt work when I try it. Could just be some unrelated bug
Iāve got the 20 February version, which is the latest, isnāt it?
No, the latest was 26th
Ill update the download link when i get home
Hello, Iāve updated the download link. Let me know if you still canāt get the latest version
Hello
I updated but now i get this
ReplicatedStorage.Scripts.AnimationController.Core.PoseController:74: attempt to index nil with āPlayā
I havenāt changed my code
local simpleAnim = require(game.ReplicatedStorage.Scripts.AnimationController)
local animNames = {
Idle = {
{ id = "180435571", weight = 9 },
{ id = "180435792", weight = 1 }
},
Walk = {
{ id = "180426354", weight = 10 }
}
}
local animator = simpleAnim.new(script.Parent.Parent, animNames)
If you can help me, thanks!
Hi, youre removing all the other core animations by setting it to that, I suggest doing SimpleAnimate.getCopyOfAnimsList() and editing that instead so you retain the other keys
Hi, sorry to bother you again
I tried what you told me but I couldnāt find the function, I tried to look a bit in the code but I didnāt see it either
I searched a little bit what can cause that and found that if i do print(self:GetRandomAnim(pose))
in play animation it just return nil even if the animation is in the table i dont know if itās intended
Hi, Iāll try updating the download link xd, please be patient
Hi, the download link has been updated to the newest version, let me know if you still experience issues (if so itās probably a real bug)
Hello, so I updated the mod and core animations works again thanks !!
but i still get attempt to concatenate string with nil
local outfloorAnimInfo = {
outFloor = {
{id="10274503988254", weight = 10}
}
}
local outFloor = animator.Action:Create("outFloor", outfloorAnimInfo, Enum.AnimationPriority.Action4)
outFloor:Play()
maybe I did something wrong ?
You have to do Action:Play(āActionNameā): (AnimationTrack)
i cant do action:play outside of outFloor if i try animator.action:play the method doesnt exist
Actions are created with an ID or an Animation Instance.
I actually updated it to accept a list of animation infos {{id: string, weight: number, anim: AnimationTrack?}}, I should update the docs xd
Action:GetRandomActionAnim(name):Play(), this is to make it more similar to the Core
animations
So we can create action animations in bulk?
No, Action:Create()
still needs a name to access the array of animations, will be adding Action:BulkCreate()
in the next update along with Action:PauseAll()
and docstrings for the modules other than PoseController