This commit is contained in:
max 2020-11-02 20:56:18 +01:00
parent 8e737f84df
commit ebe4eb14bd
13 changed files with 17 additions and 107 deletions

View File

@ -1,3 +0,0 @@
# PACKAGENAME
Documentation.

View File

@ -0,0 +1,3 @@
# VertexAnimation
Documentation.

View File

@ -1,6 +1,6 @@
using UnityEngine; using UnityEngine;
using UnityEditor; using UnityEditor;
namespace COMPANYNAME.PACKAGENAME.Editor namespace tech_art_outsource.vertex_animation.Editor
{ {
} }

View File

@ -1,7 +1,7 @@
{ {
"name": "COMPANYNAME.PACKAGENAME.Editor", "name": "tech_art_outsource.vertex_animation.Editor",
"references": [ "references": [
"COMPANYNAME.PACKAGENAME" "tech_art_outsource.vertex_animation"
], ],
"includePlatforms": [ "includePlatforms": [
"Editor" "Editor"

View File

@ -1,6 +1,6 @@
MIT License 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 Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,4 +1,4 @@
# [COMPANYNAME]() - PACKAGENAME # TECH ART OUTSOURCE - VertexAnimation
Description. Description.
@ -6,8 +6,6 @@ Description.
[Installing from a Git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html) [Installing from a Git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html)
[Unitypackage](https://github.com/COMPANYNAME/PACKAGENAME/releases)
## LICENSE ## LICENSE

View File

@ -1,5 +1,5 @@
using UnityEngine; using UnityEngine;
namespace COMPANYNAME.PACKAGENAME namespace tech_art_outsource.vertex_animation
{ {
} }

View File

@ -1,5 +1,5 @@
{ {
"name": "COMPANYNAME.PACKAGENAME", "name": "tech_art_outsource.vertex_animation",
"references": [], "references": [],
"includePlatforms": [], "includePlatforms": [],
"excludePlatforms": [], "excludePlatforms": [],

View File

@ -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"
]
}

View File

@ -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;
}
}
}

View File

@ -1,17 +0,0 @@
{
"name": "COMPANYNAME.PACKAGENAME.Tests",
"references": [
"COMPANYNAME.PACKAGENAME"
],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"optionalUnityReferences": [
"TestAssemblies"
]
}

View File

@ -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;
}
}
}

View File

@ -1,10 +1,10 @@
{ {
"name": "com.COMPANYNAME.PACKAGENAME", "name": "com.tech_art_outsource.vertex_animation",
"displayName": "Template Unity Package", "displayName": "TAO Vertex Animation",
"version": "0.1.0", "version": "0.1.0",
"unity": "2019.3", "unity": "2019.4",
"unityRelease": "7f1", "unityRelease": "10f1",
"description": "This is a template package, used as a basis to build a bigger one.", "description": "Vertex animation shaders and tools.",
"category": "Tool", "category": "Tool",
"type": "tool", "type": "tool",
"license": "MIT", "license": "MIT",
@ -17,8 +17,8 @@
"com.maxartz15.package1": "0.1.0" "com.maxartz15.package1": "0.1.0"
}, },
"keywords": [ "keywords": [
"COMPANYNAME", "tech art outsource",
"PACKAGENAME" "vertex animation"
], ],
"samples": [ "samples": [
{ {