diff --git a/CHANGELOG.md.meta b/CHANGELOG.md.meta new file mode 100644 index 0000000..57bd69b --- /dev/null +++ b/CHANGELOG.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: faff02a994352cd44bffab8186292c24 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Documentation~/PACKAGENAME.md b/Documentation~/PACKAGENAME.md deleted file mode 100644 index 119e48a..0000000 --- a/Documentation~/PACKAGENAME.md +++ /dev/null @@ -1,3 +0,0 @@ -# PACKAGENAME - -Documentation. \ No newline at end of file diff --git a/Editor.meta b/Editor.meta new file mode 100644 index 0000000..dc2aa8b --- /dev/null +++ b/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d002223d09060414ead2a01de0607108 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Editor/EditorExample.cs b/Editor/EditorExample.cs deleted file mode 100644 index 7bf43e5..0000000 --- a/Editor/EditorExample.cs +++ /dev/null @@ -1,6 +0,0 @@ -using UnityEngine; -using UnityEditor; - -namespace COMPANYNAME.PACKAGENAME.Editor -{ -} \ No newline at end of file diff --git a/Editor/SceneDebugViewerWindow.cs b/Editor/SceneDebugViewerWindow.cs new file mode 100644 index 0000000..476fb04 --- /dev/null +++ b/Editor/SceneDebugViewerWindow.cs @@ -0,0 +1,20 @@ +using UnityEngine; +using UnityEditor; + +namespace TAO.SceneDebugViewer.Editor +{ + public class SceneDebugViewerWindow : EditorWindow + { + [MenuItem("Window/SceneDebugViewer")] + static void Init() + { + SceneDebugViewerWindow window = (SceneDebugViewerWindow)EditorWindow.GetWindow(typeof(SceneDebugViewerWindow)); + window.Show(); + } + + private void OnGUI() + { + + } + } +} diff --git a/Editor/SceneDebugViewerWindow.cs.meta b/Editor/SceneDebugViewerWindow.cs.meta new file mode 100644 index 0000000..4e0f91a --- /dev/null +++ b/Editor/SceneDebugViewerWindow.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: af04cbc3f49c9e84dbab665498c4f129 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Editor/COMPANYNAME.PACKAGENAME.Editor.asmdef b/Editor/TAO.SceneDebugViewer.Editor.asmdef similarity index 57% rename from Editor/COMPANYNAME.PACKAGENAME.Editor.asmdef rename to Editor/TAO.SceneDebugViewer.Editor.asmdef index 2c9e8f1..6431c69 100644 --- a/Editor/COMPANYNAME.PACKAGENAME.Editor.asmdef +++ b/Editor/TAO.SceneDebugViewer.Editor.asmdef @@ -1,8 +1,7 @@ { - "name": "COMPANYNAME.PACKAGENAME.Editor", - "references": [ - "COMPANYNAME.PACKAGENAME" - ], + "name": "TAO.SceneDebugViewer.Editor", + "rootNamespace": "TAO.SceneDebugViewer.Editor", + "references": [], "includePlatforms": [ "Editor" ], @@ -12,5 +11,6 @@ "precompiledReferences": [], "autoReferenced": true, "defineConstraints": [], - "versionDefines": [] + "versionDefines": [], + "noEngineReferences": false } \ No newline at end of file diff --git a/Editor/TAO.SceneDebugViewer.Editor.asmdef.meta b/Editor/TAO.SceneDebugViewer.Editor.asmdef.meta new file mode 100644 index 0000000..4d32fed --- /dev/null +++ b/Editor/TAO.SceneDebugViewer.Editor.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 778ffa231d7ba7643ab27125fb9fcb5f +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/LICENSE.md b/LICENSE.md index 7bbabf9..c0e53ea 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 COMPANYNAME +Copyright (c) 2021 Tech Art Outsource Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE.md.meta b/LICENSE.md.meta new file mode 100644 index 0000000..d93e0dd --- /dev/null +++ b/LICENSE.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f220b21308ebb3d49848cd0820b90c82 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/README.md b/README.md index d1a57a1..058af2d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# [COMPANYNAME]() - PACKAGENAME +# TAO - Scene Debug Viewer Description. @@ -6,9 +6,6 @@ Description. [Installing from a Git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html) -[Unitypackage](https://github.com/COMPANYNAME/PACKAGENAME/releases) - - ## LICENSE Overall package is licensed under [MIT](/LICENSE.md), unless otherwise noted in the [3rd party licenses](/THIRD%20PARTY%20NOTICES.md) file and/or source code. \ No newline at end of file diff --git a/README.md.meta b/README.md.meta new file mode 100644 index 0000000..c686b25 --- /dev/null +++ b/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 349271a24b25f334a81784049276756f +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime.meta b/Runtime.meta new file mode 100644 index 0000000..2477765 --- /dev/null +++ b/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 07afbfa91a4739c4190e2d29fd062e7e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/COMPANYNAME.PACKAGENAME.asmdef b/Runtime/COMPANYNAME.PACKAGENAME.asmdef deleted file mode 100644 index 39855df..0000000 --- a/Runtime/COMPANYNAME.PACKAGENAME.asmdef +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "COMPANYNAME.PACKAGENAME", - "references": [], - "includePlatforms": [], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [], - "versionDefines": [] -} \ No newline at end of file diff --git a/Runtime/RuntimeExample.cs b/Runtime/RuntimeExample.cs deleted file mode 100644 index 9315689..0000000 --- a/Runtime/RuntimeExample.cs +++ /dev/null @@ -1,5 +0,0 @@ -using UnityEngine; - -namespace COMPANYNAME.PACKAGENAME -{ -} \ No newline at end of file diff --git a/Runtime/TAO.SceneDebugViewer.asmdef b/Runtime/TAO.SceneDebugViewer.asmdef new file mode 100644 index 0000000..682eff0 --- /dev/null +++ b/Runtime/TAO.SceneDebugViewer.asmdef @@ -0,0 +1,31 @@ +{ + "name": "TAO.SceneDebugViewer", + "rootNamespace": "TAO.SceneDebugViewer", + "references": [], + "includePlatforms": [], + "excludePlatforms": [ + "Android", + "CloudRendering", + "Editor", + "iOS", + "LinuxStandalone64", + "Lumin", + "macOSStandalone", + "PS4", + "Stadia", + "Switch", + "tvOS", + "WSA", + "WebGL", + "WindowsStandalone32", + "WindowsStandalone64", + "XboxOne" + ], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Runtime/TAO.SceneDebugViewer.asmdef.meta b/Runtime/TAO.SceneDebugViewer.asmdef.meta new file mode 100644 index 0000000..b152358 --- /dev/null +++ b/Runtime/TAO.SceneDebugViewer.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 62d6ee72c9b782342854ecda4e07387c +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Samples~/Example1/Example.txt b/Samples~/Example1/Example.txt deleted file mode 100644 index d505ef0..0000000 --- a/Samples~/Example1/Example.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is just a template package with a template sample folder structure. -Import of this example file is successful! diff --git a/THIRD PARTY NOTICES.md.meta b/THIRD PARTY NOTICES.md.meta new file mode 100644 index 0000000..df928fa --- /dev/null +++ b/THIRD PARTY NOTICES.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3409e2d227b3e224b8ec5259c9cc0fa2 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tests/Editor/COMPANYNAME.PACKAGENAME.Editor.Tests.asmdef b/Tests/Editor/COMPANYNAME.PACKAGENAME.Editor.Tests.asmdef deleted file mode 100644 index ef6c99d..0000000 --- a/Tests/Editor/COMPANYNAME.PACKAGENAME.Editor.Tests.asmdef +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "COMPANYNAME.PACKAGENAME.Editor.Tests", - "references": [ - "COMPANYNAME.PACKAGENAME", - "COMPANYNAME.PACKAGENAME.Editor" - ], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [], - "versionDefines": [], - "optionalUnityReferences": [ - "TestAssemblies" - ] -} \ No newline at end of file diff --git a/Tests/Editor/TestEditorExample.cs b/Tests/Editor/TestEditorExample.cs deleted file mode 100644 index caf7bbb..0000000 --- a/Tests/Editor/TestEditorExample.cs +++ /dev/null @@ -1,26 +0,0 @@ -using UnityEngine; -using UnityEngine.TestTools; -using UnityEditor; -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework; - -namespace COMPANYNAME.PACKAGENAME.Editor.Tests -{ - public class TestEditorExample - { - [Test] - public void TestEditorExampleSimplePasses() - { - // Use the Assert class to test conditions - } - - [UnityTest] - public IEnumerator TestEditorExampleWithEnumeratorPasses() - { - // Use the Assert class to test conditions. - // Use yield to skip a frame. - yield return null; - } - } -} \ No newline at end of file diff --git a/Tests/Runtime/COMPANYNAME.PACKAGENAME.Tests.asmdef b/Tests/Runtime/COMPANYNAME.PACKAGENAME.Tests.asmdef deleted file mode 100644 index d6c0cd3..0000000 --- a/Tests/Runtime/COMPANYNAME.PACKAGENAME.Tests.asmdef +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "COMPANYNAME.PACKAGENAME.Tests", - "references": [ - "COMPANYNAME.PACKAGENAME" - ], - "includePlatforms": [], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [], - "versionDefines": [], - "optionalUnityReferences": [ - "TestAssemblies" - ] -} \ No newline at end of file diff --git a/Tests/Runtime/TestRuntimeExample.cs b/Tests/Runtime/TestRuntimeExample.cs deleted file mode 100644 index bb62108..0000000 --- a/Tests/Runtime/TestRuntimeExample.cs +++ /dev/null @@ -1,25 +0,0 @@ -using UnityEngine; -using UnityEngine.TestTools; -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework; - -namespace COMPANYNAME.PACKAGENAME.Tests -{ - public class TestRuntimeExample - { - [Test] - public void TestRuntimeExampleSimplePasses() - { - // Use the Assert class to test conditions - } - - [UnityTest] - public IEnumerator TestRuntimeExampleEnumeratorPasses() - { - // Use the Assert class to test conditions. - // Use yield to skip a frame. - yield return null; - } - } -} diff --git a/package.json b/package.json index 5c6f7f8..31f0255 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "com.COMPANYNAME.PACKAGENAME", - "displayName": "Template Unity Package", + "name": "com.tech_art_outsource.scene_debug_viewer", + "displayName": "TAO Scene Debug Viewer", "version": "0.1.0", "unity": "2019.3", "unityRelease": "7f1", - "description": "This is a template package, used as a basis to build a bigger one.", + "description": "View your scene with custom shaders to enhance debugging/development.", "category": "Tool", "type": "tool", "license": "MIT", @@ -13,18 +13,8 @@ "email": "info@maxartz15.com", "url": "https://www.maxartz15.com" }, - "dependencies": { - "com.maxartz15.package1": "0.1.0" - }, "keywords": [ - "COMPANYNAME", - "PACKAGENAME" - ], - "samples": [ - { - "displayName": "Example 1", - "description": "This sample is just an example", - "path": "Samples~/Example1" - } + "tech art outsource", + "debug viewer" ] -} +} \ No newline at end of file diff --git a/package.json.meta b/package.json.meta new file mode 100644 index 0000000..da7f57f --- /dev/null +++ b/package.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3467fbc0ec8cc25408345bcc70032990 +PackageManifestImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: