Animator
Animator : Instance
Overview
Properties
EvaluationThrottled
bool
Currently not supported.
Code Samples
PreferLodEnabled
bool
Currently not supported.
Code Samples
RootMotion
CFrame
Currently not supported.
Code Samples
RootMotionWeight
number
Currently not supported.
Code Samples
Methods
ApplyJointVelocities
Currently not supported.
Parameters
Value
motors
Return
void
Code Samples
GetPlayingAnimationTracks
Currently not supported.
Parameters
Return
array
Code Samples
LoadAnimation
The LoadAnimation
method loads an Animation object and creates a corresponding AnimationTrack.
Parameters
Animation
InAnimation
The Animation object to be loaded
Return
AnimationTrack
Code Samples
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
repeat wait() until LocalPlayer.Character
local Character = LocalPlayer.Character
local Humanoid = Character:WaitForChild("Humanoid")
local Animation = Instance.new("Animation")
Animation.AnimationId = "ovdrassetid://18850100" -- WinAnimation01
local Animator = Humanoid:FindFirstChild("Animator")
local AnimationTrack = Animator:LoadAnimation(Animation)
AnimationTrack:Play()
RegisterEvaluationParallelCallback
Currently not supported.
Parameters
Value
InFunction
Return
void
Code Samples
StepAnimations
Currently not supported.
Parameters
number
InDeltaTime
Return
void
Code Samples
Events
See also
Character AnimationLast updated