Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit db52127

Browse files
Removed JTools Editor Code
- Removed JTools editor code from the multi scene editor.
1 parent 5158b0d commit db52127

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

Core/Editor/MultiSceneManagerEditor.cs

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
// ----------------------------------------------------------------------------
2-
// MultiSceneManagerEditor.cs
3-
//
4-
// Author: Jonathan Carter (A.K.A. J)
5-
// Date: 10/11/2021
6-
// ----------------------------------------------------------------------------
7-
8-
using System;
9-
using System.Collections.Generic;
10-
using System.IO;
1+
using System.Collections.Generic;
112
using System.Linq;
12-
using JTools.Editor;
133
using UnityEditor;
144
using UnityEditor.SceneManagement;
155
using UnityEngine;
@@ -29,8 +19,16 @@ private void OnEnable()
2919

3020
public override void OnInspectorGUI()
3121
{
32-
Button.ColourButton("Load All In Editor (Will throw editor error, ignore it)", Colours.Green, LoadActiveSceneGroupInEditor);
33-
Button.ColourButton("Load All Additive In Editor", Colours.Yellow, LoadAdditiveActiveSceneGroupInEditor);
22+
if (GUILayout.Button("Load All In Editor (Will throw editor error, ignore it)"))
23+
{
24+
LoadActiveSceneGroupInEditor();
25+
}
26+
27+
if (GUILayout.Button("Load All Additive In Editor"))
28+
{
29+
LoadAdditiveActiveSceneGroupInEditor();
30+
}
31+
3432
base.OnInspectorGUI();
3533
}
3634

0 commit comments

Comments
 (0)