| 117 | } |
| 118 | |
| 119 | AnimGraphInstanceData::OutgoingEvent AnimGraphInstanceData::ActiveEvent::End(AnimatedModel* actor) const |
| 120 | { |
| 121 | OutgoingEvent out; |
| 122 | out.Instance = Instance; |
| 123 | out.Actor = actor; |
| 124 | out.Anim = Anim; |
| 125 | out.Time = 0.0f; |
| 126 | out.DeltaTime = 0.0f; |
| 127 | out.Type = OutgoingEvent::OnEnd; |
| 128 | return out; |
| 129 | } |
| 130 | |
| 131 | AnimGraphNode::~AnimGraphNode() |
| 132 | { |
no outgoing calls
no test coverage detected