-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.2.7] - 2018-08-07 Toolbar drop-down will no longer show up when package is uninstalled.
- Loading branch information
Unity Technologies
committed
Aug 7, 2018
1 parent
a4de08c
commit 36581f0
Showing
51 changed files
with
2,796 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Unity.CollabProxy.Dependencies</id> | ||
<version>1.1.0-experimental</version> | ||
<authors>Rohit Garg</authors> | ||
<description>Dependencies for the CollabProxy package</description> | ||
</metadata> | ||
</package> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
using System.Runtime.CompilerServices; | ||
using UnityEngine; | ||
|
||
[assembly: InternalsVisibleTo("Unity.CollabProxy.EditorTests")] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using UnityEditor; | ||
using UnityEditor.Collaboration; | ||
using UnityEngine; | ||
|
||
namespace CollabProxy.UI | ||
{ | ||
[InitializeOnLoad] | ||
public class Bootstrap | ||
{ | ||
private const float kCollabToolbarButtonWidth = 78.0f; | ||
|
||
static Bootstrap() | ||
{ | ||
Collab.ShowHistoryWindow = CollabHistoryWindow.ShowHistoryWindow; | ||
Collab.ShowToolbarAtPosition = CollabToolbarWindow.ShowCenteredAtPosition; | ||
Collab.IsToolbarVisible = CollabToolbarWindow.IsVisible; | ||
Collab.CloseToolbar = CollabToolbarWindow.CloseToolbar; | ||
Toolbar.AddSubToolbar(new CollabToolbarButton | ||
{ | ||
Width = kCollabToolbarButtonWidth | ||
}); | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
|
||
namespace UnityEditor.Collaboration | ||
{ | ||
internal static class CollabAnalytics | ||
{ | ||
[Serializable] | ||
private struct CollabUserActionAnalyticsEvent | ||
{ | ||
public string category; | ||
public string action; | ||
} | ||
|
||
public static void SendUserAction(string category, string action) | ||
{ | ||
EditorAnalytics.SendCollabUserAction(new CollabUserActionAnalyticsEvent() { category = category, action = action }); | ||
} | ||
|
||
public static readonly string historyCategoryString = "History"; | ||
}; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.