You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EditorGUILayout.HelpBox($"These settings are serialized into MRTKSettings.asset in {MRTKFiles.GeneratedFolderPath}.\nThis file can be checked into source control to maintain consistent settings across collaborators.",MessageType.Info);
54
+
EditorGUILayout.HelpBox($"These settings are serialized into MRTKSettings.asset in {MRTKFiles.GetOrCreateGeneratedFolderPath()}.\nThis file can be checked into source control to maintain consistent settings across collaborators.",MessageType.Info);
$"The new subsystem will be created in your project's {Path.Combine(MRTKFiles.GeneratedFolderPath,subsystemGenerator.SubsystemName)} folder.",
250
+
$"The new subsystem will be created in your project's {Path.Combine(MRTKFiles.GetOrCreateGeneratedFolderPath(),subsystemGenerator.SubsystemName)} folder.",
sb.AppendLine($" {step}. In the Project view, navigate to {Path.Combine(MRTKFiles.GeneratedFolderPath,subsystemGenerator.SubsystemName)}");
348
+
sb.AppendLine($" {step}. In the Project view, navigate to {Path.Combine(MRTKFiles.GetOrCreateGeneratedFolderPath(),subsystemGenerator.SubsystemName)}");
349
349
step++;
350
350
sb.AppendLine($" {step}. Open {subsystemGenerator.DescriptorName}.cs");
0 commit comments