private Object GetObjectWithThisIssue() { Object result = null; if (Location == RecordLocation.Scene) { var scene = CSSceneTools.GetSceneByPath(Path); result = CSObjectTools.FindGameObjectInScene(scene, objectId, transformPath); } else { //var assetFile = AssetsMap.GetAssetInfoWithPath(path); var prefabRoot = CSPrefabTools.GetPrefabAssetRoot(Path); if (prefabRoot != null) { result = CSObjectTools.FindChildGameObjectRecursive(prefabRoot.transform, objectId, prefabRoot.transform.name, transformPath); } } return(result); }