-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
d76d2ff
commit f93ac34
Showing
217 changed files
with
12,960 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
## Unity ## | ||
|
||
*.cs diff=csharp text | ||
*.cginc text | ||
*.shader text | ||
|
||
*.mat merge=unityyamlmerge eol=lf | ||
*.anim merge=unityyamlmerge eol=lf | ||
*.unity merge=unityyamlmerge eol=lf | ||
*.prefab merge=unityyamlmerge eol=lf | ||
*.physicsMaterial2D merge=unityyamlmerge eol=lf | ||
*.physicMaterial merge=unityyamlmerge eol=lf | ||
*.asset merge=unityyamlmerge eol=lf | ||
*.meta merge=unityyamlmerge eol=lf | ||
*.controller merge=unityyamlmerge eol=lf | ||
|
||
|
||
## git-lfs ## | ||
|
||
#Image | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.jpeg filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.gif filter=lfs diff=lfs merge=lfs -text | ||
*.psd filter=lfs diff=lfs merge=lfs -text | ||
*.ai filter=lfs diff=lfs merge=lfs -text | ||
|
||
#Audio | ||
*.mp3 filter=lfs diff=lfs merge=lfs -text | ||
*.wav filter=lfs diff=lfs merge=lfs -text | ||
*.ogg filter=lfs diff=lfs merge=lfs -text | ||
|
||
#Video | ||
*.mp4 filter=lfs diff=lfs merge=lfs -text | ||
*.mov filter=lfs diff=lfs merge=lfs -text | ||
|
||
#3D Object | ||
*.FBX filter=lfs diff=lfs merge=lfs -text | ||
*.fbx filter=lfs diff=lfs merge=lfs -text | ||
*.blend filter=lfs diff=lfs merge=lfs -text | ||
*.obj filter=lfs diff=lfs merge=lfs -text | ||
|
||
#ETC | ||
*.a filter=lfs diff=lfs merge=lfs -text | ||
*.exr filter=lfs diff=lfs merge=lfs -text | ||
*.tga filter=lfs diff=lfs merge=lfs -text | ||
*.pdf filter=lfs diff=lfs merge=lfs -text | ||
*.zip filter=lfs diff=lfs merge=lfs -text | ||
*.dll filter=lfs diff=lfs merge=lfs -text | ||
*.unitypackage filter=lfs diff=lfs merge=lfs -text | ||
*.lfs.asset filter=lfs diff=lfs merge=lfs -text | ||
*.aif filter=lfs diff=lfs merge=lfs -text | ||
*.ttf filter=lfs diff=lfs merge=lfs -text | ||
*.rns filter=lfs diff=lfs merge=lfs -text | ||
*.reason filter=lfs diff=lfs merge=lfs -text | ||
*.lxo filter=lfs diff=lfs merge=lfs -text | ||
*.framework filter=lfs diff=lfs merge=lfs -text | ||
*.so filter=lfs diff=lfs merge=lfs -text |
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,12 @@ | ||
artifacts/** | ||
build/** | ||
.build_script/** | ||
node_modules/** | ||
.DS_Store | ||
.npmrc | ||
!Documentation~ | ||
!.Documentation | ||
npm-debug.log | ||
build.sh.meta | ||
build.bat.meta | ||
.idea/ |
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,19 @@ | ||
artifacts/** | ||
build/** | ||
.build_script/** | ||
node_modules/** | ||
Documentation/ApiDocs/** | ||
Documentation~/ApiDocs/** | ||
.DS_Store | ||
.npmrc | ||
.npmignore | ||
.gitignore | ||
CONTRIBUTING.md | ||
CONTRIBUTING.md.meta | ||
QAReport.md | ||
QAReport.md.meta | ||
.gitlab-ci.yml | ||
build.sh | ||
build.sh.meta | ||
build.bat | ||
build.bat.meta |
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,53 @@ | ||
using UnityEditor; | ||
using UnityEngine; | ||
using System; | ||
using AssetStoreTools.Uploader; | ||
using AssetStoreTools.Validator; | ||
using AssetStoreTools.Utility; | ||
|
||
namespace AssetStoreTools | ||
{ | ||
internal class AssetStoreTools : EditorWindow | ||
{ | ||
[MenuItem("Asset Store Tools/Asset Store Uploader", false, 0)] | ||
public static void ShowAssetStoreToolsUploader() | ||
{ | ||
Type inspectorType = Type.GetType("UnityEditor.InspectorWindow,UnityEditor.dll"); | ||
var wnd = GetWindow<AssetStoreUploader>(inspectorType); | ||
wnd.Show(); | ||
} | ||
|
||
|
||
[MenuItem("Asset Store Tools/Asset Store Validator", false, 1)] | ||
public static void ShowAssetStoreToolsValidator() | ||
{ | ||
Type inspectorType = Type.GetType("UnityEditor.InspectorWindow,UnityEditor.dll"); | ||
var wnd = GetWindow<AssetStoreValidation>(typeof(AssetStoreUploader), inspectorType); | ||
wnd.Show(); | ||
} | ||
|
||
[MenuItem("Asset Store Tools/Publisher Portal", false, 20)] | ||
public static void OpenPublisherPortal() | ||
{ | ||
Application.OpenURL("https://publisher.unity.com/"); | ||
} | ||
|
||
[MenuItem("Asset Store Tools/Submission Guidelines", false, 21)] | ||
public static void OpenSubmissionGuidelines() | ||
{ | ||
Application.OpenURL("https://assetstore.unity.com/publishing/submission-guidelines/"); | ||
} | ||
|
||
[MenuItem("Asset Store Tools/Provide Feedback", false, 22)] | ||
public static void OpenFeedback() | ||
{ | ||
Application.OpenURL("https://forum.unity.com/threads/new-asset-store-tools-version-coming-july-20th-2022.1310939/"); | ||
} | ||
|
||
[MenuItem("Asset Store Tools/Settings", false, 50)] | ||
public static void OpenSettings() | ||
{ | ||
ASToolsPreferencesProvider.OpenSettings(); | ||
} | ||
} | ||
} |
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,22 @@ | ||
using UnityEditor; | ||
using UnityEngine; | ||
using System; | ||
|
||
namespace AssetStoreTools | ||
{ | ||
public abstract class AssetStoreToolsWindow : EditorWindow | ||
{ | ||
protected abstract string WindowTitle { get; } | ||
|
||
protected virtual void Init() | ||
{ | ||
titleContent = new GUIContent(WindowTitle); | ||
} | ||
|
||
private void OnEnable() | ||
{ | ||
Init(); | ||
} | ||
|
||
} | ||
} |
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.
Oops, something went wrong.