From ebe4eb14bdca3f0f553b86c609bb9a20454c2640 Mon Sep 17 00:00:00 2001 From: max Date: Mon, 2 Nov 2020 20:56:18 +0100 Subject: [PATCH] Setup. --- Documentation~/PACKAGENAME.md | 3 --- Documentation~/VertexAnimation.md | 3 +++ Editor/EditorExample.cs | 2 +- ..._outsource.vertex_animation.Editor.asmdef} | 4 +-- LICENSE.md | 2 +- README.md | 4 +-- Runtime/RuntimeExample.cs | 2 +- ...ech_art_outsource.vertex_animation.asmdef} | 2 +- ...OMPANYNAME.PACKAGENAME.Editor.Tests.asmdef | 20 -------------- Tests/Editor/TestEditorExample.cs | 26 ------------------- .../COMPANYNAME.PACKAGENAME.Tests.asmdef | 17 ------------ Tests/Runtime/TestRuntimeExample.cs | 25 ------------------ package.json | 14 +++++----- 13 files changed, 17 insertions(+), 107 deletions(-) delete mode 100644 Documentation~/PACKAGENAME.md create mode 100644 Documentation~/VertexAnimation.md rename Editor/{COMPANYNAME.PACKAGENAME.Editor.asmdef => tech_art_outsource.vertex_animation.Editor.asmdef} (73%) rename Runtime/{COMPANYNAME.PACKAGENAME.asmdef => tech_art_outsource.vertex_animation.asmdef} (83%) delete mode 100644 Tests/Editor/COMPANYNAME.PACKAGENAME.Editor.Tests.asmdef delete mode 100644 Tests/Editor/TestEditorExample.cs delete mode 100644 Tests/Runtime/COMPANYNAME.PACKAGENAME.Tests.asmdef delete mode 100644 Tests/Runtime/TestRuntimeExample.cs 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/Documentation~/VertexAnimation.md b/Documentation~/VertexAnimation.md new file mode 100644 index 0000000..4417e0a --- /dev/null +++ b/Documentation~/VertexAnimation.md @@ -0,0 +1,3 @@ +# VertexAnimation + +Documentation. \ No newline at end of file diff --git a/Editor/EditorExample.cs b/Editor/EditorExample.cs index 7bf43e5..6e0a006 100644 --- a/Editor/EditorExample.cs +++ b/Editor/EditorExample.cs @@ -1,6 +1,6 @@ using UnityEngine; using UnityEditor; -namespace COMPANYNAME.PACKAGENAME.Editor +namespace tech_art_outsource.vertex_animation.Editor { } \ No newline at end of file diff --git a/Editor/COMPANYNAME.PACKAGENAME.Editor.asmdef b/Editor/tech_art_outsource.vertex_animation.Editor.asmdef similarity index 73% rename from Editor/COMPANYNAME.PACKAGENAME.Editor.asmdef rename to Editor/tech_art_outsource.vertex_animation.Editor.asmdef index 2c9e8f1..59984fb 100644 --- a/Editor/COMPANYNAME.PACKAGENAME.Editor.asmdef +++ b/Editor/tech_art_outsource.vertex_animation.Editor.asmdef @@ -1,7 +1,7 @@ { - "name": "COMPANYNAME.PACKAGENAME.Editor", + "name": "tech_art_outsource.vertex_animation.Editor", "references": [ - "COMPANYNAME.PACKAGENAME" + "tech_art_outsource.vertex_animation" ], "includePlatforms": [ "Editor" diff --git a/LICENSE.md b/LICENSE.md index 7bbabf9..8a9f2df 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 COMPANYNAME +Copyright (c) 2020 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/README.md b/README.md index d1a57a1..424529d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# [COMPANYNAME]() - PACKAGENAME +# TECH ART OUTSOURCE - VertexAnimation Description. @@ -6,8 +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 diff --git a/Runtime/RuntimeExample.cs b/Runtime/RuntimeExample.cs index 9315689..6b0aa1b 100644 --- a/Runtime/RuntimeExample.cs +++ b/Runtime/RuntimeExample.cs @@ -1,5 +1,5 @@ using UnityEngine; -namespace COMPANYNAME.PACKAGENAME +namespace tech_art_outsource.vertex_animation { } \ No newline at end of file diff --git a/Runtime/COMPANYNAME.PACKAGENAME.asmdef b/Runtime/tech_art_outsource.vertex_animation.asmdef similarity index 83% rename from Runtime/COMPANYNAME.PACKAGENAME.asmdef rename to Runtime/tech_art_outsource.vertex_animation.asmdef index 39855df..8fc7f31 100644 --- a/Runtime/COMPANYNAME.PACKAGENAME.asmdef +++ b/Runtime/tech_art_outsource.vertex_animation.asmdef @@ -1,5 +1,5 @@ { - "name": "COMPANYNAME.PACKAGENAME", + "name": "tech_art_outsource.vertex_animation", "references": [], "includePlatforms": [], "excludePlatforms": [], 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..42afbd6 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "com.COMPANYNAME.PACKAGENAME", - "displayName": "Template Unity Package", + "name": "com.tech_art_outsource.vertex_animation", + "displayName": "TAO Vertex Animation", "version": "0.1.0", - "unity": "2019.3", - "unityRelease": "7f1", - "description": "This is a template package, used as a basis to build a bigger one.", + "unity": "2019.4", + "unityRelease": "10f1", + "description": "Vertex animation shaders and tools.", "category": "Tool", "type": "tool", "license": "MIT", @@ -17,8 +17,8 @@ "com.maxartz15.package1": "0.1.0" }, "keywords": [ - "COMPANYNAME", - "PACKAGENAME" + "tech art outsource", + "vertex animation" ], "samples": [ {