Rearrange directory structures to support Assembly Definition Files. Add asmdef files

This commit is contained in:
yutopp
2019-01-29 18:07:48 +09:00
parent c5155caf12
commit ad0de15096
121 changed files with 344 additions and 46 deletions

View File

@@ -0,0 +1,16 @@
{
"name": "VRM.Samples.Editor.Tests",
"references": [
"VRM",
"VRM.Samples",
"UniVRM.Editor.Tests"
],
"optionalUnityReferences": [
"TestAssemblies"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 5ffcc719f517f144ab5737582b96a73f
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,11 @@
{
"name": "VRM.Samples",
"references": [
"VRM",
"UniHumanoid"
],
"optionalUnityReferences": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 627491ce4646ac8469d7689ab146358b
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,3 @@
{
"name": "DepthFirstScheduler"
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 3c1b656429ea86147a4d76b21be3f0c0
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +1,6 @@
fileFormatVersion: 2
guid: 458bc5bc1e011b247849b92ae7709de7
guid: 09d89e608be4dc847bde82a73a9d2d2d
folderAsset: yes
timeCreated: 1518293117
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:

View File

@@ -0,0 +1,15 @@
{
"name": "DepthFirstScheduler.Editor.Tests",
"references": [
"VRM",
"DepthFirstScheduler"
],
"optionalUnityReferences": [
"TestAssemblies"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 68dc264f14f3454489a3339633e115f9
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +1,6 @@
fileFormatVersion: 2
guid: 269b9c7394d16084a9e55528470e2ac7
guid: 13108e3e41e195b40a05e62715bd5a50
folderAsset: yes
timeCreated: 1517404636
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:

View File

@@ -0,0 +1,14 @@
{
"name": "UniGLTF.Editor.Tests",
"references": [
"VRM"
],
"optionalUnityReferences": [
"TestAssemblies"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: defaf82877bdaee4994325c29625b5ea
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,12 @@
{
"name": "UniGLTF.Editor",
"references": [
"VRM"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: cabd88168fd8c5448ab52737c175806a
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,4 +1,6 @@
Shader "UniGLTF/StandardVColor" {
// Upgrade NOTE: upgraded instancing buffer 'Props' to new syntax.
Shader "UniGLTF/StandardVColor" {
Properties {
_Color ("Color", Color) = (1,1,1,1)
_MainTex ("Albedo (RGB)", 2D) = "white" {}
@@ -30,9 +32,9 @@
// Add instancing support for this shader. You need to check 'Enable Instancing' on materials that use the shader.
// See https://docs.unity3d.com/Manual/GPUInstancing.html for more information about instancing.
// #pragma instancing_options assumeuniformscaling
UNITY_INSTANCING_CBUFFER_START(Props)
UNITY_INSTANCING_BUFFER_START(Props)
// put more per-instance properties here
UNITY_INSTANCING_CBUFFER_END
UNITY_INSTANCING_BUFFER_END(Props)
void vert(inout appdata_full v, out Input o){
UNITY_INITIALIZE_OUTPUT(Input, o);

View File

@@ -0,0 +1,15 @@
{
"name": "UniHumanoid.Editor.Tests",
"references": [
"VRM",
"UniHumanoid"
],
"optionalUnityReferences": [
"TestAssemblies"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: a76492d20b4f8464894b3a249f0759af
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,13 @@
{
"name": "UniHumanoid.Editor",
"references": [
"VRM",
"UniHumanoid"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 1bd512e806d329b4c9f7fe1abe65e9db
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,3 @@
{
"name": "UniHumanoid"
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: b7aa47b240b57de44a4b2021c143c9bf
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,14 @@
{
"name": "UniJSON.Editor.Tests",
"references": [
"VRM"
],
"optionalUnityReferences": [
"TestAssemblies"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 96fc039f80992a14a8b7b93aa81a3112
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +1,6 @@
fileFormatVersion: 2
guid: 37a5b86b0d204ea49b66dba21b239b22
guid: 92f8492893093234995cd80054d69cdd
folderAsset: yes
timeCreated: 1517119647
licenseType: Free
DefaultImporter:
userData:
assetBundleName:

View File

@@ -0,0 +1,12 @@
{
"name": "UniUnlit.Editor",
"references": [
"UniUnlit"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 529ce3a240c1a7a4bbbb220bbd59686b
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,3 @@
{
"name": "UniUnlit"
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 60c8346e00a8ddd4cafc5a02eceeec57
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,12 @@
{
"name": "UniVRM.DevOnly.Editor",
"references": [
"VRM"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 9fb72ff565df8da48b61531daac6a726
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +1,6 @@
fileFormatVersion: 2
guid: 2637cbc8109b52647b5e364a411c0bb0
guid: 9e31b30e42902a44f94793be121d2479
folderAsset: yes
timeCreated: 1518194696
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:

View File

@@ -1,8 +1,6 @@
fileFormatVersion: 2
guid: f24b76911d4f68844b9d12721ba1bb06
guid: f5e58f0fdf4d1c9488760d699fa491ef
folderAsset: yes
timeCreated: 1517308497
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 127df51bf554ee64cbe91b05e14a9266
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 11125e99ded1b2941b4e6742fca5be7b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 04a204174b44d7a499298d6ca0cde1cc
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Some files were not shown because too many files have changed in this diff Show More