Owl.Reflection.GetControllerInfo(name: string): ControllerInfo | nil
Client OnlyInspects a client-side controller and returns details about its dependencies, lifecycle hooks, metrics and version.
Parameters
name*string | Name identifier of the controller to inspect. |
Returns
Related Types
local hudInfo = Owl.Reflection.GetControllerInfo("HUDController")
if hudInfo then
print("HUDController started status:", hudInfo.Started)
end