本文整理汇总了C#中Sim.ResetAllAnimation方法的典型用法代码示例。如果您正苦于以下问题:C# Sim.ResetAllAnimation方法的具体用法?C# Sim.ResetAllAnimation怎么用?C# Sim.ResetAllAnimation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sim
的用法示例。
在下文中一共展示了Sim.ResetAllAnimation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Pose
public static bool Pose(Sim actor, CmoPoseBox poseBox, String poseName)
{
if (poseName == null || poseName == "")
{
return false;
}
SetCurrentPose(actor, poseName);
actor.OverlayComponent.UpdateInteractionFreeParts(AwarenessLevel.OverlayNone);
actor.LookAtManager.DisableLookAts();
poseBox.PlaySoloAnimation(actor.SimDescription.IsHuman, actor, poseName, true, ProductVersion.BaseGame);
actor.ResetAllAnimation();
poseBox.PlaySoloAnimation(actor.SimDescription.IsHuman, actor, poseName, true, ProductVersion.BaseGame);
actor.ResetAllAnimation();
actor.WaitForExitReason(3.40282347E+38f, ExitReason.UserCanceled);
actor.LookAtManager.EnableLookAts();
return true;
}