(MIGRATION) Rearrange assembly structure

This commit is contained in:
Haï~
2023-10-02 04:47:51 +02:00
parent 3bfcb763a1
commit c4174120b9
44 changed files with 78 additions and 19 deletions
+1 -4
View File
@@ -7,10 +7,7 @@
"excludePlatforms": [], "excludePlatforms": [],
"allowUnsafeCode": false, "allowUnsafeCode": false,
"overrideReferences": true, "overrideReferences": true,
"precompiledReferences": [ "precompiledReferences": [],
"VRCSDKBase.dll",
"VRCSDK3A.dll"
],
"autoReferenced": true, "autoReferenced": true,
"defineConstraints": [], "defineConstraints": [],
"versionDefines": [], "versionDefines": [],
@@ -1,3 +1,7 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 21dee7794a6343ccbdcd48b92f941953 guid: 21dee7794a6343ccbdcd48b92f941953
timeCreated: 1645911687 AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
+1 -1
View File
@@ -7,7 +7,7 @@ using VRC.SDK3.Avatars.Components;
using Random = UnityEngine.Random; using Random = UnityEngine.Random;
// ReSharper disable once CheckNamespace // ReSharper disable once CheckNamespace
namespace AnimatorAsCode.V0 namespace AnimatorAsCode.V1
{ {
public static class AacV0 public static class AacV0
{ {
+1 -1
View File
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine; using UnityEngine;
// ReSharper disable once CheckNamespace // ReSharper disable once CheckNamespace
namespace AnimatorAsCode.V0 namespace AnimatorAsCode.V1
{ {
public abstract class AacAnimatorNode public abstract class AacAnimatorNode
{ {
+1 -1
View File
@@ -2,7 +2,7 @@
using UnityEngine; using UnityEngine;
// ReSharper disable once CheckNamespace // ReSharper disable once CheckNamespace
namespace AnimatorAsCode.V0 namespace AnimatorAsCode.V1
{ {
public interface IAacDefaultsProvider public interface IAacDefaultsProvider
{ {
+1 -1
View File
@@ -5,7 +5,7 @@ using UnityEditor;
using UnityEngine; using UnityEngine;
// ReSharper disable once CheckNamespace // ReSharper disable once CheckNamespace
namespace AnimatorAsCode.V0 namespace AnimatorAsCode.V1
{ {
public readonly struct AacFlClip public readonly struct AacFlClip
{ {
+2 -2
View File
@@ -2,11 +2,11 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using UnityEditor.Animations; using UnityEditor.Animations;
using static AnimatorAsCode.V0.AacFlConditionSimple; using static AnimatorAsCode.V1.AacFlConditionSimple;
using static UnityEditor.Animations.AnimatorConditionMode; using static UnityEditor.Animations.AnimatorConditionMode;
// ReSharper disable once CheckNamespace // ReSharper disable once CheckNamespace
namespace AnimatorAsCode.V0 namespace AnimatorAsCode.V1
{ {
class AacFlConditionSimple : IAacFlCondition class AacFlConditionSimple : IAacFlCondition
{ {
+1 -1
View File
@@ -5,7 +5,7 @@ using UnityEditor.Animations;
using UnityEngine; using UnityEngine;
// ReSharper disable once CheckNamespace // ReSharper disable once CheckNamespace
namespace AnimatorAsCode.V0 namespace AnimatorAsCode.V1
{ {
internal class AacBackingAnimator internal class AacBackingAnimator
{ {
@@ -0,0 +1,15 @@
{
"name": "AnimatorAsCodeFramework.V1",
"references": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": true,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}
@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 7b32145194168e0409534fc5052b85ce
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e74e8e407b5c59a4ab34d51e9135e598 guid: 66ebd405827ca5e4196746595ec463fb
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
@@ -0,0 +1,20 @@
{
"name": "AnimatorAsCodeFramework.V1VRC",
"references": [
"GUID:7b32145194168e0409534fc5052b85ce"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": true,
"precompiledReferences": [
"VRCSDKBase.dll",
"VRCSDK3A.dll"
],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}
@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 48fffcc53a10b8c4aa717d6dea5d87c5
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,4 +1,4 @@
namespace AnimatorAsCode.V0.Extensions.VRChat namespace AnimatorAsCode.V1.Extensions.VRChat
{ {
public enum TrackingElement public enum TrackingElement
{ {
@@ -2,7 +2,7 @@ using System;
using VRC.SDK3.Avatars.Components; using VRC.SDK3.Avatars.Components;
using VRC.SDKBase; using VRC.SDKBase;
namespace AnimatorAsCode.V0.Extensions.VRChat namespace AnimatorAsCode.V1.Extensions.VRChat
{ {
public static class VRChatExtensions public static class VRChatExtensions
{ {
@@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4f15b08a8b9feec438a880160d34c332 guid: 2f30100b4c328384b893342ed6dcdb02
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
@@ -3,7 +3,7 @@
"references": [ "references": [
"UnityEngine.TestRunner", "UnityEngine.TestRunner",
"UnityEditor.TestRunner", "UnityEditor.TestRunner",
"AnimatorAsCodeFramework" "AnimatorAsCodeFramework.V1"
], ],
"includePlatforms": [ "includePlatforms": [
"Editor" "Editor"
+8
View File
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4640dd95c9fe21e43b64f04e582c080d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -3,7 +3,8 @@
"references": [ "references": [
"UnityEngine.TestRunner", "UnityEngine.TestRunner",
"UnityEditor.TestRunner", "UnityEditor.TestRunner",
"AnimatorAsCodeFramework" "AnimatorAsCodeFramework.V1",
"AnimatorAsCodeFramework.V1VRC"
], ],
"includePlatforms": [], "includePlatforms": [],
"excludePlatforms": [], "excludePlatforms": [],