Finds the child actor of the given type. Type of the actor to search for. Includes any actors derived from the type. The child actor or null if failed to find.
()
| 152 | /// <typeparam name="T">Type of the actor to search for. Includes any actors derived from the type.</typeparam> |
| 153 | /// <returns>The child actor or null if failed to find.</returns> |
| 154 | public T GetChild<T>() where T : Actor |
| 155 | { |
| 156 | return GetChild(typeof(T)) as T; |
| 157 | } |
| 158 | |
| 159 | /// <summary> |
| 160 | /// Tries to the child actor of the given type. |
nothing calls this directly
no test coverage detected