├── .gitattributes ├── .gitignore ├── .vsconfig ├── Assets ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta └── VRCAvatars3Tools │ ├── AnimationBindingSeparater.meta │ ├── AnimationBindingSeparater │ ├── Editor.meta │ └── Editor │ │ ├── AnimationBindingSeparater.cs │ │ └── AnimationBindingSeparater.cs.meta │ ├── AnimatorControllerCombiner.meta │ ├── AnimatorControllerCombiner │ ├── Editor.meta │ └── Editor │ │ ├── AnimatorControllerCombiner.cs │ │ └── AnimatorControllerCombiner.cs.meta │ ├── ExpressionParametersCombiner.meta │ ├── ExpressionParametersCombiner │ ├── Editor.meta │ └── Editor │ │ ├── ExpressionParametersCombiner.cs │ │ └── ExpressionParametersCombiner.cs.meta │ ├── LICENSE.txt │ ├── LICENSE.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Utilitys.meta │ ├── Utilitys │ ├── Editor.meta │ └── Editor │ │ ├── AnimatorControllerUtility.cs │ │ ├── AnimatorControllerUtility.cs.meta │ │ ├── VRCAssetUtility.cs │ │ └── VRCAssetUtility.cs.meta │ ├── VRCAssetCreator.meta │ ├── VRCAssetCreator │ ├── Editor.meta │ └── Editor │ │ ├── VRCAssetCreator.cs │ │ └── VRCAssetCreator.cs.meta │ ├── VRCAvatarConverterTo3.meta │ └── VRCAvatarConverterTo3 │ ├── Editor.meta │ └── Editor │ ├── ObjectSelectorWrapper.cs │ ├── ObjectSelectorWrapper.cs.meta │ ├── Plugins.meta │ ├── Plugins │ ├── YamlDotNet.meta │ └── YamlDotNet │ │ ├── Core.meta │ │ ├── Core │ │ ├── AnchorNotFoundException.cs │ │ ├── AnchorNotFoundException.cs.meta │ │ ├── CharacterAnalyzer.cs │ │ ├── CharacterAnalyzer.cs.meta │ │ ├── Constants.cs │ │ ├── Constants.cs.meta │ │ ├── Cursor.cs │ │ ├── Cursor.cs.meta │ │ ├── Emitter.cs │ │ ├── Emitter.cs.meta │ │ ├── EmitterState.cs │ │ ├── EmitterState.cs.meta │ │ ├── Events.meta │ │ ├── Events │ │ │ ├── AnchorAlias.cs │ │ │ ├── AnchorAlias.cs.meta │ │ │ ├── Comment.cs │ │ │ ├── Comment.cs.meta │ │ │ ├── DocumentEnd.cs │ │ │ ├── DocumentEnd.cs.meta │ │ │ ├── DocumentStart.cs │ │ │ ├── DocumentStart.cs.meta │ │ │ ├── EventType.cs │ │ │ ├── EventType.cs.meta │ │ │ ├── IParsingEventVisitor.cs │ │ │ ├── IParsingEventVisitor.cs.meta │ │ │ ├── MappingEnd.cs │ │ │ ├── MappingEnd.cs.meta │ │ │ ├── MappingStart.cs │ │ │ ├── MappingStart.cs.meta │ │ │ ├── MappingStyle.cs │ │ │ ├── MappingStyle.cs.meta │ │ │ ├── NodeEvent.cs │ │ │ ├── NodeEvent.cs.meta │ │ │ ├── ParsingEvent.cs │ │ │ ├── ParsingEvent.cs.meta │ │ │ ├── Scalar.cs │ │ │ ├── Scalar.cs.meta │ │ │ ├── SequenceEnd.cs │ │ │ ├── SequenceEnd.cs.meta │ │ │ ├── SequenceStart.cs │ │ │ ├── SequenceStart.cs.meta │ │ │ ├── SequenceStyle.cs │ │ │ ├── SequenceStyle.cs.meta │ │ │ ├── StreamEnd.cs │ │ │ ├── StreamEnd.cs.meta │ │ │ ├── StreamStart.cs │ │ │ └── StreamStart.cs.meta │ │ ├── FakeList.cs │ │ ├── FakeList.cs.meta │ │ ├── ForwardAnchorNotSupportedException.cs │ │ ├── ForwardAnchorNotSupportedException.cs.meta │ │ ├── HashCode.cs │ │ ├── HashCode.cs.meta │ │ ├── IEmitter.cs │ │ ├── IEmitter.cs.meta │ │ ├── ILookAheadBuffer.cs │ │ ├── ILookAheadBuffer.cs.meta │ │ ├── IParser.cs │ │ ├── IParser.cs.meta │ │ ├── IScanner.cs │ │ ├── IScanner.cs.meta │ │ ├── InsertionQueue.cs │ │ ├── InsertionQueue.cs.meta │ │ ├── LookAheadBuffer.cs │ │ ├── LookAheadBuffer.cs.meta │ │ ├── Mark.cs │ │ ├── Mark.cs.meta │ │ ├── MaximumRecursionLevelReachedException.cs │ │ ├── MaximumRecursionLevelReachedException.cs.meta │ │ ├── MergingParser.cs │ │ ├── MergingParser.cs.meta │ │ ├── Parser.cs │ │ ├── Parser.cs.meta │ │ ├── ParserExtensions.cs │ │ ├── ParserExtensions.cs.meta │ │ ├── ParserState.cs │ │ ├── ParserState.cs.meta │ │ ├── RecursionLevel.cs │ │ ├── RecursionLevel.cs.meta │ │ ├── ScalarStyle.cs │ │ ├── ScalarStyle.cs.meta │ │ ├── Scanner.cs │ │ ├── Scanner.cs.meta │ │ ├── SemanticErrorException.cs │ │ ├── SemanticErrorException.cs.meta │ │ ├── SimpleKey.cs │ │ ├── SimpleKey.cs.meta │ │ ├── StringLookAheadBuffer.cs │ │ ├── StringLookAheadBuffer.cs.meta │ │ ├── SyntaxErrorException.cs │ │ ├── SyntaxErrorException.cs.meta │ │ ├── TagDirectiveCollection.cs │ │ ├── TagDirectiveCollection.cs.meta │ │ ├── Tokens.meta │ │ ├── Tokens │ │ │ ├── Anchor.cs │ │ │ ├── Anchor.cs.meta │ │ │ ├── AnchorAlias.cs │ │ │ ├── AnchorAlias.cs.meta │ │ │ ├── BlockEnd.cs │ │ │ ├── BlockEnd.cs.meta │ │ │ ├── BlockEntry.cs │ │ │ ├── BlockEntry.cs.meta │ │ │ ├── BlockMappingStart.cs │ │ │ ├── BlockMappingStart.cs.meta │ │ │ ├── BlockSequenceStart.cs │ │ │ ├── BlockSequenceStart.cs.meta │ │ │ ├── Comment.cs │ │ │ ├── Comment.cs.meta │ │ │ ├── DocumentEnd.cs │ │ │ ├── DocumentEnd.cs.meta │ │ │ ├── DocumentStart.cs │ │ │ ├── DocumentStart.cs.meta │ │ │ ├── FlowEntry.cs │ │ │ ├── FlowEntry.cs.meta │ │ │ ├── FlowMappingEnd.cs │ │ │ ├── FlowMappingEnd.cs.meta │ │ │ ├── FlowMappingStart.cs │ │ │ ├── FlowMappingStart.cs.meta │ │ │ ├── FlowSequenceEnd.cs │ │ │ ├── FlowSequenceEnd.cs.meta │ │ │ ├── FlowSequenceStart.cs │ │ │ ├── FlowSequenceStart.cs.meta │ │ │ ├── Key.cs │ │ │ ├── Key.cs.meta │ │ │ ├── Scalar.cs │ │ │ ├── Scalar.cs.meta │ │ │ ├── StreamEnd.cs │ │ │ ├── StreamEnd.cs.meta │ │ │ ├── StreamStart.cs │ │ │ ├── StreamStart.cs.meta │ │ │ ├── Tag.cs │ │ │ ├── Tag.cs.meta │ │ │ ├── TagDirective.cs │ │ │ ├── TagDirective.cs.meta │ │ │ ├── Token.cs │ │ │ ├── Token.cs.meta │ │ │ ├── Value.cs │ │ │ ├── Value.cs.meta │ │ │ ├── VersionDirective.cs │ │ │ └── VersionDirective.cs.meta │ │ ├── Version.cs │ │ ├── Version.cs.meta │ │ ├── YamlException.cs │ │ └── YamlException.cs.meta │ │ ├── Examples.meta │ │ ├── Examples.unity │ │ ├── Examples.unity.meta │ │ ├── Examples │ │ ├── ConvertYamlToJson.cs │ │ ├── ConvertYamlToJson.cs.meta │ │ ├── DeserializeObjectGraph.cs │ │ ├── DeserializeObjectGraph.cs.meta │ │ ├── DeserializingMultipleDocuments.cs │ │ ├── DeserializingMultipleDocuments.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ │ ├── ExampleRunner.cs │ │ │ ├── ExampleRunner.cs.meta │ │ │ ├── SampleAttribute.cs │ │ │ ├── SampleAttribute.cs.meta │ │ │ ├── TestOutputHelperExtensions.cs │ │ │ └── TestOutputHelperExtensions.cs.meta │ │ ├── LoadingAYamlStream.cs │ │ ├── LoadingAYamlStream.cs.meta │ │ ├── SerializeObjectGraph.cs │ │ └── SerializeObjectGraph.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ ├── ExpressionExtensions.cs │ │ ├── ExpressionExtensions.cs.meta │ │ ├── GenericCollectionToNonGenericAdapter.cs │ │ ├── GenericCollectionToNonGenericAdapter.cs.meta │ │ ├── GenericDictionaryToNonGenericAdapter.cs │ │ ├── GenericDictionaryToNonGenericAdapter.cs.meta │ │ ├── ITestOutputHelper.cs │ │ ├── ITestOutputHelper.cs.meta │ │ ├── Portability.cs │ │ └── Portability.cs.meta │ │ ├── Readme.txt │ │ ├── Readme.txt.meta │ │ ├── RepresentationModel.meta │ │ ├── RepresentationModel │ │ ├── DocumentLoadingState.cs │ │ ├── DocumentLoadingState.cs.meta │ │ ├── EmitterState.cs │ │ ├── EmitterState.cs.meta │ │ ├── IYamlVisitor.cs │ │ ├── IYamlVisitor.cs.meta │ │ ├── YamlAliasNode.cs │ │ ├── YamlAliasNode.cs.meta │ │ ├── YamlDocument.cs │ │ ├── YamlDocument.cs.meta │ │ ├── YamlMappingNode.cs │ │ ├── YamlMappingNode.cs.meta │ │ ├── YamlNode.cs │ │ ├── YamlNode.cs.meta │ │ ├── YamlNodeIdentityEqualityComparer.cs │ │ ├── YamlNodeIdentityEqualityComparer.cs.meta │ │ ├── YamlNodeType.cs │ │ ├── YamlNodeType.cs.meta │ │ ├── YamlScalarNode.cs │ │ ├── YamlScalarNode.cs.meta │ │ ├── YamlSequenceNode.cs │ │ ├── YamlSequenceNode.cs.meta │ │ ├── YamlStream.cs │ │ ├── YamlStream.cs.meta │ │ ├── YamlVisitor.cs │ │ ├── YamlVisitor.cs.meta │ │ ├── YamlVisitorBase.cs │ │ └── YamlVisitorBase.cs.meta │ │ ├── Serialization.meta │ │ ├── Serialization │ │ ├── BuilderSkeleton.cs │ │ ├── BuilderSkeleton.cs.meta │ │ ├── Converters.meta │ │ ├── Converters │ │ │ ├── DateTimeConverter.cs │ │ │ ├── DateTimeConverter.cs.meta │ │ │ ├── GuidConverter.cs │ │ │ └── GuidConverter.cs.meta │ │ ├── Deserializer.cs │ │ ├── Deserializer.cs.meta │ │ ├── DeserializerBuilder.cs │ │ ├── DeserializerBuilder.cs.meta │ │ ├── EmissionPhaseObjectGraphVisitorArgs.cs │ │ ├── EmissionPhaseObjectGraphVisitorArgs.cs.meta │ │ ├── EventEmitters.meta │ │ ├── EventEmitters │ │ │ ├── ChainedEventEmitter.cs │ │ │ ├── ChainedEventEmitter.cs.meta │ │ │ ├── CustomTagEventEmitter.cs │ │ │ ├── CustomTagEventEmitter.cs.meta │ │ │ ├── JsonEventEmitter.cs │ │ │ ├── JsonEventEmitter.cs.meta │ │ │ ├── TypeAssigningEventEmitter.cs │ │ │ ├── TypeAssigningEventEmitter.cs.meta │ │ │ ├── WriterEventEmitter.cs │ │ │ └── WriterEventEmitter.cs.meta │ │ ├── EventInfo.cs │ │ ├── EventInfo.cs.meta │ │ ├── IAliasProvider.cs │ │ ├── IAliasProvider.cs.meta │ │ ├── IEventEmitter.cs │ │ ├── IEventEmitter.cs.meta │ │ ├── INamingConvention.cs │ │ ├── INamingConvention.cs.meta │ │ ├── INodeDeserializer.cs │ │ ├── INodeDeserializer.cs.meta │ │ ├── INodeTypeResolver.cs │ │ ├── INodeTypeResolver.cs.meta │ │ ├── IObjectDescriptor.cs │ │ ├── IObjectDescriptor.cs.meta │ │ ├── IObjectFactory.cs │ │ ├── IObjectFactory.cs.meta │ │ ├── IObjectGraphTraversalStrategy.cs │ │ ├── IObjectGraphTraversalStrategy.cs.meta │ │ ├── IObjectGraphVisitor.cs │ │ ├── IObjectGraphVisitor.cs.meta │ │ ├── IPropertyDescriptor.cs │ │ ├── IPropertyDescriptor.cs.meta │ │ ├── IRegistrationLocationSelectionSyntax.cs │ │ ├── IRegistrationLocationSelectionSyntax.cs.meta │ │ ├── ITypeInspector.cs │ │ ├── ITypeInspector.cs.meta │ │ ├── ITypeResolver.cs │ │ ├── ITypeResolver.cs.meta │ │ ├── IValueDeserializer.cs │ │ ├── IValueDeserializer.cs.meta │ │ ├── IValuePromise.cs │ │ ├── IValuePromise.cs.meta │ │ ├── IValueSerializer.cs │ │ ├── IValueSerializer.cs.meta │ │ ├── IYamlConvertible.cs │ │ ├── IYamlConvertible.cs.meta │ │ ├── IYamlSerializable.cs │ │ ├── IYamlSerializable.cs.meta │ │ ├── IYamlTypeConverter.cs │ │ ├── IYamlTypeConverter.cs.meta │ │ ├── LazyComponentRegistrationList.cs │ │ ├── LazyComponentRegistrationList.cs.meta │ │ ├── LazyComponentRegistrationListExtensions.cs │ │ ├── LazyComponentRegistrationListExtensions.cs.meta │ │ ├── NamingConventions.meta │ │ ├── NamingConventions │ │ │ ├── CamelCaseNamingConvention.cs │ │ │ ├── CamelCaseNamingConvention.cs.meta │ │ │ ├── HyphenatedNamingConvention.cs │ │ │ ├── HyphenatedNamingConvention.cs.meta │ │ │ ├── NullNamingConvention.cs │ │ │ ├── NullNamingConvention.cs.meta │ │ │ ├── PascalCaseNamingConvention.cs │ │ │ ├── PascalCaseNamingConvention.cs.meta │ │ │ ├── UnderscoredNamingConvention.cs │ │ │ └── UnderscoredNamingConvention.cs.meta │ │ ├── NodeDeserializers.meta │ │ ├── NodeDeserializers │ │ │ ├── ArrayNodeDeserializer.cs │ │ │ ├── ArrayNodeDeserializer.cs.meta │ │ │ ├── CollectionNodeDeserializer.cs │ │ │ ├── CollectionNodeDeserializer.cs.meta │ │ │ ├── DictionaryNodeDeserializer.cs │ │ │ ├── DictionaryNodeDeserializer.cs.meta │ │ │ ├── EnumerableNodeDeserializer.cs │ │ │ ├── EnumerableNodeDeserializer.cs.meta │ │ │ ├── NullNodeDeserializer.cs │ │ │ ├── NullNodeDeserializer.cs.meta │ │ │ ├── ObjectNodeDeserializer.cs │ │ │ ├── ObjectNodeDeserializer.cs.meta │ │ │ ├── ScalarNodeDeserializer.cs │ │ │ ├── ScalarNodeDeserializer.cs.meta │ │ │ ├── TypeConverterNodeDeserializer.cs │ │ │ ├── TypeConverterNodeDeserializer.cs.meta │ │ │ ├── YamlConvertibleNodeDeserializer.cs │ │ │ ├── YamlConvertibleNodeDeserializer.cs.meta │ │ │ ├── YamlSerializableNodeDeserializer.cs │ │ │ └── YamlSerializableNodeDeserializer.cs.meta │ │ ├── NodeTypeResolvers.meta │ │ ├── NodeTypeResolvers │ │ │ ├── DefaultContainersNodeTypeResolver.cs │ │ │ ├── DefaultContainersNodeTypeResolver.cs.meta │ │ │ ├── TagNodeTypeResolver.cs │ │ │ ├── TagNodeTypeResolver.cs.meta │ │ │ ├── TypeNameInTagNodeTypeResolver.cs │ │ │ ├── TypeNameInTagNodeTypeResolver.cs.meta │ │ │ ├── YamlConvertibleTypeResolver.cs │ │ │ ├── YamlConvertibleTypeResolver.cs.meta │ │ │ ├── YamlSerializableTypeResolver.cs │ │ │ └── YamlSerializableTypeResolver.cs.meta │ │ ├── Nothing.cs │ │ ├── Nothing.cs.meta │ │ ├── ObjectDescriptor.cs │ │ ├── ObjectDescriptor.cs.meta │ │ ├── ObjectFactories.meta │ │ ├── ObjectFactories │ │ │ ├── DefaultObjectFactory.cs │ │ │ ├── DefaultObjectFactory.cs.meta │ │ │ ├── LambdaObjectFactory.cs │ │ │ └── LambdaObjectFactory.cs.meta │ │ ├── ObjectGraphTraversalStrategies.meta │ │ ├── ObjectGraphTraversalStrategies │ │ │ ├── FullObjectGraphTraversalStrategy.cs │ │ │ ├── FullObjectGraphTraversalStrategy.cs.meta │ │ │ ├── RoundtripObjectGraphTraversalStrategy.cs │ │ │ └── RoundtripObjectGraphTraversalStrategy.cs.meta │ │ ├── ObjectGraphVisitors.meta │ │ ├── ObjectGraphVisitors │ │ │ ├── AnchorAssigner.cs │ │ │ ├── AnchorAssigner.cs.meta │ │ │ ├── AnchorAssigningObjectGraphVisitor.cs │ │ │ ├── AnchorAssigningObjectGraphVisitor.cs.meta │ │ │ ├── ChainedObjectGraphVisitor.cs │ │ │ ├── ChainedObjectGraphVisitor.cs.meta │ │ │ ├── CustomSerializationObjectGraphVisitor.cs │ │ │ ├── CustomSerializationObjectGraphVisitor.cs.meta │ │ │ ├── DefaultExclusiveObjectGraphVisitor.cs │ │ │ ├── DefaultExclusiveObjectGraphVisitor.cs.meta │ │ │ ├── EmittingObjectGraphVisitor.cs │ │ │ ├── EmittingObjectGraphVisitor.cs.meta │ │ │ ├── PreProcessingPhaseObjectGraphVisitorSkeleton.cs │ │ │ └── PreProcessingPhaseObjectGraphVisitorSkeleton.cs.meta │ │ ├── PropertyDescriptor.cs │ │ ├── PropertyDescriptor.cs.meta │ │ ├── SerializationOptions.cs │ │ ├── SerializationOptions.cs.meta │ │ ├── Serializer.cs │ │ ├── Serializer.cs.meta │ │ ├── SerializerBuilder.cs │ │ ├── SerializerBuilder.cs.meta │ │ ├── StreamFragment.cs │ │ ├── StreamFragment.cs.meta │ │ ├── TagMappings.cs │ │ ├── TagMappings.cs.meta │ │ ├── TypeInspectors.meta │ │ ├── TypeInspectors │ │ │ ├── CachedTypeInspector.cs │ │ │ ├── CachedTypeInspector.cs.meta │ │ │ ├── NamingConventionTypeInspector.cs │ │ │ ├── NamingConventionTypeInspector.cs.meta │ │ │ ├── ReadableAndWritablePropertiesTypeInspector.cs │ │ │ ├── ReadableAndWritablePropertiesTypeInspector.cs.meta │ │ │ ├── ReadablePropertiesTypeInspector.cs │ │ │ ├── ReadablePropertiesTypeInspector.cs.meta │ │ │ ├── TypeInspectorSkeleton.cs │ │ │ └── TypeInspectorSkeleton.cs.meta │ │ ├── TypeResolvers.meta │ │ ├── TypeResolvers │ │ │ ├── DynamicTypeResolver.cs │ │ │ ├── DynamicTypeResolver.cs.meta │ │ │ ├── StaticTypeResolver.cs │ │ │ └── StaticTypeResolver.cs.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── IPostDeserializationCallback.cs │ │ │ ├── IPostDeserializationCallback.cs.meta │ │ │ ├── ObjectAnchorCollection.cs │ │ │ ├── ObjectAnchorCollection.cs.meta │ │ │ ├── ReflectionUtility.cs │ │ │ ├── ReflectionUtility.cs.meta │ │ │ ├── SerializerState.cs │ │ │ ├── SerializerState.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── TypeConverter.cs │ │ │ └── TypeConverter.cs.meta │ │ ├── ValueDeserializers.meta │ │ ├── ValueDeserializers │ │ │ ├── AliasValueDeserializer.cs │ │ │ ├── AliasValueDeserializer.cs.meta │ │ │ ├── NodeValueDeserializer.cs │ │ │ └── NodeValueDeserializer.cs.meta │ │ ├── YamlAttributeOverrides.cs │ │ ├── YamlAttributeOverrides.cs.meta │ │ ├── YamlAttributeOverridesInspector.cs │ │ ├── YamlAttributeOverridesInspector.cs.meta │ │ ├── YamlAttributesTypeInspector.cs │ │ ├── YamlAttributesTypeInspector.cs.meta │ │ ├── YamlFormatter.cs │ │ ├── YamlFormatter.cs.meta │ │ ├── YamlIgnoreAttribute.cs │ │ ├── YamlIgnoreAttribute.cs.meta │ │ ├── YamlMember.cs │ │ └── YamlMember.cs.meta │ │ ├── YamlDotNet.license.txt │ │ └── YamlDotNet.license.txt.meta │ ├── Resources.meta │ ├── Resources │ ├── Controllers.meta │ └── Controllers │ │ ├── vrc_AvatarV3ActionLayer_VRCAV3T.controller │ │ └── vrc_AvatarV3ActionLayer_VRCAV3T.controller.meta │ ├── VRCAvatarConverterTo3.cs │ ├── VRCAvatarConverterTo3.cs.meta │ ├── VRCAvatarDescripterDeserializedObject.cs │ └── VRCAvatarDescripterDeserializedObject.cs.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimationBindingSeparater.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimationBindingSeparater.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimationBindingSeparater/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimationBindingSeparater/Editor.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimationBindingSeparater/Editor/AnimationBindingSeparater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimationBindingSeparater/Editor/AnimationBindingSeparater.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimationBindingSeparater/Editor/AnimationBindingSeparater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimationBindingSeparater/Editor/AnimationBindingSeparater.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimatorControllerCombiner.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimatorControllerCombiner.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimatorControllerCombiner/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimatorControllerCombiner/Editor.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimatorControllerCombiner/Editor/AnimatorControllerCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimatorControllerCombiner/Editor/AnimatorControllerCombiner.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/AnimatorControllerCombiner/Editor/AnimatorControllerCombiner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/AnimatorControllerCombiner/Editor/AnimatorControllerCombiner.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/ExpressionParametersCombiner.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/ExpressionParametersCombiner.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/ExpressionParametersCombiner/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/ExpressionParametersCombiner/Editor.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/ExpressionParametersCombiner/Editor/ExpressionParametersCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/ExpressionParametersCombiner/Editor/ExpressionParametersCombiner.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/ExpressionParametersCombiner/Editor/ExpressionParametersCombiner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/ExpressionParametersCombiner/Editor/ExpressionParametersCombiner.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/LICENSE.txt -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/README.md -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/README.md.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/Utilitys.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/Utilitys.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/Utilitys/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/Utilitys/Editor.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/Utilitys/Editor/AnimatorControllerUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/Utilitys/Editor/AnimatorControllerUtility.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/Utilitys/Editor/AnimatorControllerUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/Utilitys/Editor/AnimatorControllerUtility.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/Utilitys/Editor/VRCAssetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/Utilitys/Editor/VRCAssetUtility.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/Utilitys/Editor/VRCAssetUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/Utilitys/Editor/VRCAssetUtility.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAssetCreator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAssetCreator.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAssetCreator/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAssetCreator/Editor.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAssetCreator/Editor/VRCAssetCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAssetCreator/Editor/VRCAssetCreator.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAssetCreator/Editor/VRCAssetCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAssetCreator/Editor/VRCAssetCreator.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/ObjectSelectorWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/ObjectSelectorWrapper.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/ObjectSelectorWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/ObjectSelectorWrapper.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/AnchorNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/AnchorNotFoundException.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/AnchorNotFoundException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/AnchorNotFoundException.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/CharacterAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/CharacterAnalyzer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/CharacterAnalyzer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/CharacterAnalyzer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Constants.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Constants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Constants.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Cursor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Cursor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Cursor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Emitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Emitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Emitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/EmitterState.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/EmitterState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/EmitterState.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/AnchorAlias.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/AnchorAlias.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/AnchorAlias.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Comment.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Comment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Comment.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/DocumentStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/EventType.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/EventType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/EventType.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/IParsingEventVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/IParsingEventVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/IParsingEventVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/IParsingEventVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStyle.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStyle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/MappingStyle.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/NodeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/NodeEvent.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/NodeEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/NodeEvent.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/ParsingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/ParsingEvent.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/ParsingEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/ParsingEvent.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Scalar.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Scalar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/Scalar.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStyle.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStyle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/SequenceStyle.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Events/StreamStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/FakeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/FakeList.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/FakeList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/FakeList.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/HashCode.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/HashCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/HashCode.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ILookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ILookAheadBuffer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ILookAheadBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ILookAheadBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IParser.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IParser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IParser.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IScanner.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IScanner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/IScanner.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/InsertionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/InsertionQueue.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/InsertionQueue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/InsertionQueue.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/LookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/LookAheadBuffer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/LookAheadBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/LookAheadBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Mark.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Mark.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Mark.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MaximumRecursionLevelReachedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MaximumRecursionLevelReachedException.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MaximumRecursionLevelReachedException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MaximumRecursionLevelReachedException.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MergingParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MergingParser.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MergingParser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/MergingParser.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Parser.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Parser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Parser.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserExtensions.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserState.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ParserState.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/RecursionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/RecursionLevel.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/RecursionLevel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/RecursionLevel.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ScalarStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ScalarStyle.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ScalarStyle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/ScalarStyle.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Scanner.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Scanner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Scanner.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SemanticErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SemanticErrorException.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SemanticErrorException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SemanticErrorException.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SimpleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SimpleKey.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SimpleKey.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SimpleKey.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/StringLookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/StringLookAheadBuffer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/StringLookAheadBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/StringLookAheadBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SyntaxErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SyntaxErrorException.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SyntaxErrorException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/SyntaxErrorException.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/TagDirectiveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/TagDirectiveCollection.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/TagDirectiveCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/TagDirectiveCollection.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Anchor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Anchor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Anchor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/AnchorAlias.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/AnchorAlias.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/AnchorAlias.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEntry.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockEntry.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockMappingStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockMappingStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockMappingStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockSequenceStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockSequenceStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/BlockSequenceStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Comment.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Comment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Comment.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/DocumentStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowEntry.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowEntry.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowMappingStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/FlowSequenceStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Key.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Key.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Key.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Scalar.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Scalar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Scalar.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamEnd.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamEnd.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamStart.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamStart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/StreamStart.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Tag.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Tag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Tag.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/TagDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/TagDirective.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/TagDirective.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/TagDirective.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Token.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Token.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Token.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Value.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Value.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/Value.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/VersionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/VersionDirective.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/VersionDirective.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Tokens/VersionDirective.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Version.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Version.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/Version.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/YamlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/YamlException.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/YamlException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Core/YamlException.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples.unity -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples.unity.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/ConvertYamlToJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/ConvertYamlToJson.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/ConvertYamlToJson.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/ConvertYamlToJson.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializeObjectGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializeObjectGraph.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializeObjectGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializeObjectGraph.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializingMultipleDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializingMultipleDocuments.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializingMultipleDocuments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/DeserializingMultipleDocuments.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/ExampleRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/ExampleRunner.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/ExampleRunner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/ExampleRunner.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/SampleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/SampleAttribute.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/SampleAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/SampleAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/TestOutputHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/TestOutputHelperExtensions.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/TestOutputHelperExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/Helpers/TestOutputHelperExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/LoadingAYamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/LoadingAYamlStream.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/LoadingAYamlStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/LoadingAYamlStream.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/SerializeObjectGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/SerializeObjectGraph.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/SerializeObjectGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Examples/SerializeObjectGraph.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ExpressionExtensions.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ExpressionExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ExpressionExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericCollectionToNonGenericAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericCollectionToNonGenericAdapter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericCollectionToNonGenericAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericCollectionToNonGenericAdapter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericDictionaryToNonGenericAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericDictionaryToNonGenericAdapter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericDictionaryToNonGenericAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/GenericDictionaryToNonGenericAdapter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ITestOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ITestOutputHelper.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ITestOutputHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/ITestOutputHelper.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/Portability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/Portability.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/Portability.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Helpers/Portability.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Readme.txt -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Readme.txt.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/DocumentLoadingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/DocumentLoadingState.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/DocumentLoadingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/DocumentLoadingState.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/EmitterState.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/EmitterState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/EmitterState.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/IYamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/IYamlVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/IYamlVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/IYamlVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlAliasNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlAliasNode.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlAliasNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlAliasNode.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlDocument.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlDocument.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlDocument.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlMappingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlMappingNode.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlMappingNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlMappingNode.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNode.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNode.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeType.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlNodeType.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlScalarNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlScalarNode.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlScalarNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlScalarNode.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlSequenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlSequenceNode.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlSequenceNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlSequenceNode.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlStream.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlStream.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitorBase.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitorBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/RepresentationModel/YamlVisitorBase.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/BuilderSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/BuilderSkeleton.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/BuilderSkeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/BuilderSkeleton.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/DateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/DateTimeConverter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/DateTimeConverter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/DateTimeConverter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/GuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/GuidConverter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/GuidConverter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Converters/GuidConverter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Deserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Deserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Deserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/DeserializerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/DeserializerBuilder.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/DeserializerBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/DeserializerBuilder.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EmissionPhaseObjectGraphVisitorArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EmissionPhaseObjectGraphVisitorArgs.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EmissionPhaseObjectGraphVisitorArgs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EmissionPhaseObjectGraphVisitorArgs.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/CustomTagEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/CustomTagEventEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/CustomTagEventEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/CustomTagEventEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventInfo.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/EventInfo.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IAliasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IAliasProvider.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IAliasProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IAliasProvider.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IEventEmitter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IEventEmitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IEventEmitter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INamingConvention.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INamingConvention.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INamingConvention.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/INodeTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectDescriptor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectDescriptor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectDescriptor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectFactory.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectFactory.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IObjectGraphVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IPropertyDescriptor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IPropertyDescriptor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IPropertyDescriptor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IRegistrationLocationSelectionSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IRegistrationLocationSelectionSyntax.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IRegistrationLocationSelectionSyntax.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IRegistrationLocationSelectionSyntax.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ITypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValuePromise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValuePromise.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValuePromise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValuePromise.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueSerializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueSerializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IValueSerializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlConvertible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlConvertible.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlConvertible.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlConvertible.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlSerializable.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlSerializable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlSerializable.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlTypeConverter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlTypeConverter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/IYamlTypeConverter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationList.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationList.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationListExtensions.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationListExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/LazyComponentRegistrationListExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/CollectionNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/CollectionNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/CollectionNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/CollectionNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/DictionaryNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/DictionaryNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/DictionaryNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/DictionaryNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlConvertibleNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlConvertibleNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlConvertibleNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlConvertibleNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlSerializableNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlSerializableNodeDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlSerializableNodeDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeDeserializers/YamlSerializableNodeDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlConvertibleTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlConvertibleTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlConvertibleTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlConvertibleTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlSerializableTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlSerializableTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlSerializableTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/NodeTypeResolvers/YamlSerializableTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Nothing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Nothing.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Nothing.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Nothing.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectDescriptor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectDescriptor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectDescriptor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/PreProcessingPhaseObjectGraphVisitorSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/PreProcessingPhaseObjectGraphVisitorSkeleton.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/PreProcessingPhaseObjectGraphVisitorSkeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ObjectGraphVisitors/PreProcessingPhaseObjectGraphVisitorSkeleton.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/PropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/PropertyDescriptor.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/PropertyDescriptor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/PropertyDescriptor.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializationOptions.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializationOptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializationOptions.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Serializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Serializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Serializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializerBuilder.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializerBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/SerializerBuilder.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/StreamFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/StreamFragment.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/StreamFragment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/StreamFragment.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TagMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TagMappings.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TagMappings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TagMappings.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ReflectionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ReflectionUtility.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ReflectionUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/ReflectionUtility.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/SerializerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/SerializerState.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/SerializerState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/SerializerState.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/StringExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/StringExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/TypeConverter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/TypeConverter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/Utilities/TypeConverter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverrides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverrides.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverrides.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverrides.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverridesInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverridesInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverridesInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributeOverridesInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlFormatter.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlFormatter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlFormatter.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlIgnoreAttribute.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlIgnoreAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlIgnoreAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlMember.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlMember.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/Serialization/YamlMember.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/YamlDotNet.license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/YamlDotNet.license.txt -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/YamlDotNet.license.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Plugins/YamlDotNet/YamlDotNet.license.txt.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources/Controllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources/Controllers.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources/Controllers/vrc_AvatarV3ActionLayer_VRCAV3T.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources/Controllers/vrc_AvatarV3ActionLayer_VRCAV3T.controller -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources/Controllers/vrc_AvatarV3ActionLayer_VRCAV3T.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/Resources/Controllers/vrc_AvatarV3ActionLayer_VRCAV3T.controller.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarConverterTo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarConverterTo3.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarConverterTo3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarConverterTo3.cs.meta -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarDescripterDeserializedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarDescripterDeserializedObject.cs -------------------------------------------------------------------------------- /Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarDescripterDeserializedObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Assets/VRCAvatars3Tools/VRCAvatarConverterTo3/Editor/VRCAvatarDescripterDeserializedObject.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatosyocora/VRCAvatars3Tools/HEAD/README.md --------------------------------------------------------------------------------