(MIGRATION) Rearrange assembly structure
This commit is contained in:
@@ -7,10 +7,7 @@
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": true,
|
||||
"precompiledReferences": [
|
||||
"VRCSDKBase.dll",
|
||||
"VRCSDK3A.dll"
|
||||
],
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
fileFormatVersion: 2
|
||||
guid: 21dee7794a6343ccbdcd48b92f941953
|
||||
timeCreated: 1645911687
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
||||
@@ -7,7 +7,7 @@ using VRC.SDK3.Avatars.Components;
|
||||
using Random = UnityEngine.Random;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace AnimatorAsCode.V0
|
||||
namespace AnimatorAsCode.V1
|
||||
{
|
||||
public static class AacV0
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace AnimatorAsCode.V0
|
||||
namespace AnimatorAsCode.V1
|
||||
{
|
||||
public abstract class AacAnimatorNode
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using UnityEngine;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace AnimatorAsCode.V0
|
||||
namespace AnimatorAsCode.V1
|
||||
{
|
||||
public interface IAacDefaultsProvider
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@ using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace AnimatorAsCode.V0
|
||||
namespace AnimatorAsCode.V1
|
||||
{
|
||||
public readonly struct AacFlClip
|
||||
{
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEditor.Animations;
|
||||
using static AnimatorAsCode.V0.AacFlConditionSimple;
|
||||
using static AnimatorAsCode.V1.AacFlConditionSimple;
|
||||
using static UnityEditor.Animations.AnimatorConditionMode;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace AnimatorAsCode.V0
|
||||
namespace AnimatorAsCode.V1
|
||||
{
|
||||
class AacFlConditionSimple : IAacFlCondition
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@ using UnityEditor.Animations;
|
||||
using UnityEngine;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace AnimatorAsCode.V0
|
||||
namespace AnimatorAsCode.V1
|
||||
{
|
||||
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
|
||||
}
|
||||
+2
-3
@@ -1,7 +1,6 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4f15b08a8b9feec438a880160d34c332
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
guid: 7b32145194168e0409534fc5052b85ce
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e74e8e407b5c59a4ab34d51e9135e598
|
||||
guid: 66ebd405827ca5e4196746595ec463fb
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
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
-1
@@ -1,4 +1,4 @@
|
||||
namespace AnimatorAsCode.V0.Extensions.VRChat
|
||||
namespace AnimatorAsCode.V1.Extensions.VRChat
|
||||
{
|
||||
public enum TrackingElement
|
||||
{
|
||||
+1
-1
@@ -2,7 +2,7 @@ using System;
|
||||
using VRC.SDK3.Avatars.Components;
|
||||
using VRC.SDKBase;
|
||||
|
||||
namespace AnimatorAsCode.V0.Extensions.VRChat
|
||||
namespace AnimatorAsCode.V1.Extensions.VRChat
|
||||
{
|
||||
public static class VRChatExtensions
|
||||
{
|
||||
Reference in New Issue
Block a user