| 455 | } |
| 456 | |
| 457 | void AnimGraphExecutor::InitNodes(AnimGraphImpulse* nodes) const |
| 458 | { |
| 459 | const auto& emptyNodes = Context.Get()->EmptyNodes; |
| 460 | Platform::MemoryCopy(nodes->Nodes.Get(), emptyNodes.Nodes.Get(), sizeof(Transform) * _skeletonNodesCount); |
| 461 | nodes->RootMotion = emptyNodes.RootMotion; |
| 462 | nodes->Position = emptyNodes.Position; |
| 463 | nodes->Length = emptyNodes.Length; |
| 464 | } |
| 465 | |
| 466 | void AnimGraphExecutor::ResetBuckets(AnimGraphContext& context, AnimGraphBase* graph) |
| 467 | { |
no test coverage detected