107 lines
3.9 KiB
Lua
107 lines
3.9 KiB
Lua
local ScriptedAnimations =
|
|
{
|
|
Name = "ScriptedAnimations",
|
|
Type = "System",
|
|
Namespace = "C_ScriptedAnimations",
|
|
|
|
Functions =
|
|
{
|
|
{
|
|
Name = "GetAllScriptedAnimationEffects",
|
|
Type = "Function",
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "scriptedAnimationEffects", Type = "table", InnerType = "ScriptedAnimationEffect", Nilable = false },
|
|
},
|
|
},
|
|
},
|
|
|
|
Events =
|
|
{
|
|
},
|
|
|
|
Tables =
|
|
{
|
|
{
|
|
Name = "ScriptedAnimationBehavior",
|
|
Type = "Enumeration",
|
|
NumValues = 6,
|
|
MinValue = 0,
|
|
MaxValue = 5,
|
|
Fields =
|
|
{
|
|
{ Name = "None", Type = "ScriptedAnimationBehavior", EnumValue = 0 },
|
|
{ Name = "TargetShake", Type = "ScriptedAnimationBehavior", EnumValue = 1 },
|
|
{ Name = "TargetKnockBack", Type = "ScriptedAnimationBehavior", EnumValue = 2 },
|
|
{ Name = "SourceRecoil", Type = "ScriptedAnimationBehavior", EnumValue = 3 },
|
|
{ Name = "SourceCollideWithTarget", Type = "ScriptedAnimationBehavior", EnumValue = 4 },
|
|
{ Name = "UIParentShake", Type = "ScriptedAnimationBehavior", EnumValue = 5 },
|
|
},
|
|
},
|
|
{
|
|
Name = "ScriptedAnimationFlags",
|
|
Type = "Enumeration",
|
|
NumValues = 1,
|
|
MinValue = 1,
|
|
MaxValue = 1,
|
|
Fields =
|
|
{
|
|
{ Name = "UseTargetAsSource", Type = "ScriptedAnimationFlags", EnumValue = 1 },
|
|
},
|
|
},
|
|
{
|
|
Name = "ScriptedAnimationTrajectory",
|
|
Type = "Enumeration",
|
|
NumValues = 7,
|
|
MinValue = 0,
|
|
MaxValue = 6,
|
|
Fields =
|
|
{
|
|
{ Name = "AtSource", Type = "ScriptedAnimationTrajectory", EnumValue = 0 },
|
|
{ Name = "AtTarget", Type = "ScriptedAnimationTrajectory", EnumValue = 1 },
|
|
{ Name = "Straight", Type = "ScriptedAnimationTrajectory", EnumValue = 2 },
|
|
{ Name = "CurveLeft", Type = "ScriptedAnimationTrajectory", EnumValue = 3 },
|
|
{ Name = "CurveRight", Type = "ScriptedAnimationTrajectory", EnumValue = 4 },
|
|
{ Name = "CurveRandom", Type = "ScriptedAnimationTrajectory", EnumValue = 5 },
|
|
{ Name = "HalfwayBetween", Type = "ScriptedAnimationTrajectory", EnumValue = 6 },
|
|
},
|
|
},
|
|
{
|
|
Name = "ScriptedAnimationEffect",
|
|
Type = "Structure",
|
|
Fields =
|
|
{
|
|
{ Name = "id", Type = "number", Nilable = false },
|
|
{ Name = "visual", Type = "fileID", Nilable = false },
|
|
{ Name = "visualScale", Type = "number", Nilable = false },
|
|
{ Name = "duration", Type = "number", Nilable = false },
|
|
{ Name = "trajectory", Type = "ScriptedAnimationTrajectory", Nilable = false },
|
|
{ Name = "yawRadians", Type = "number", Nilable = false },
|
|
{ Name = "pitchRadians", Type = "number", Nilable = false },
|
|
{ Name = "rollRadians", Type = "number", Nilable = false },
|
|
{ Name = "offsetX", Type = "number", Nilable = false },
|
|
{ Name = "offsetY", Type = "number", Nilable = false },
|
|
{ Name = "offsetZ", Type = "number", Nilable = false },
|
|
{ Name = "animation", Type = "number", Nilable = false },
|
|
{ Name = "animationSpeed", Type = "number", Nilable = false },
|
|
{ Name = "alpha", Type = "number", Nilable = false },
|
|
{ Name = "useTargetAsSource", Type = "bool", Nilable = false },
|
|
{ Name = "startBehavior", Type = "ScriptedAnimationBehavior", Nilable = true },
|
|
{ Name = "startSoundKitID", Type = "number", Nilable = true },
|
|
{ Name = "finishEffectID", Type = "number", Nilable = true },
|
|
{ Name = "finishBehavior", Type = "ScriptedAnimationBehavior", Nilable = true },
|
|
{ Name = "finishSoundKitID", Type = "number", Nilable = true },
|
|
{ Name = "startAlphaFade", Type = "number", Nilable = true },
|
|
{ Name = "startAlphaFadeDuration", Type = "number", Nilable = true },
|
|
{ Name = "endAlphaFade", Type = "number", Nilable = true },
|
|
{ Name = "endAlphaFadeDuration", Type = "number", Nilable = true },
|
|
{ Name = "animationStartOffset", Type = "number", Nilable = true },
|
|
{ Name = "loopingSoundKitID", Type = "number", Nilable = true },
|
|
{ Name = "particleOverrideScale", Type = "number", Nilable = true },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
APIDocumentation:AddDocumentationTable(ScriptedAnimations); |