(List<Actor> list, Actor a)
| 192 | } |
| 193 | |
| 194 | internal static void GetActorsTree(List<Actor> list, Actor a) |
| 195 | { |
| 196 | list.Add(a); |
| 197 | int cnt = a.ChildrenCount; |
| 198 | for (int i = 0; i < cnt; i++) |
| 199 | { |
| 200 | GetActorsTree(list, a.GetChild(i)); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | /// <summary> |
| 205 | /// Clones the value. handles non-value types (such as arrays) that need deep value cloning. |
no test coverage detected