├── .gitattributes ├── .gitignore ├── .readme-images ├── HowItWorksInside1.gif ├── HowItWorksInside2.gif ├── HowItWorksInside3.gif └── PCG.Terrain.gif ├── Assets ├── Data.meta ├── Data │ ├── LightweightRenderPipelineAsset.asset │ ├── LightweightRenderPipelineAsset.asset.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Skybox.mat │ │ ├── Skybox.mat.meta │ │ ├── Terrain.mat │ │ └── Terrain.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── SliderObject.prefab │ │ └── SliderObject.prefab.meta │ ├── ShaderGraphs.meta │ ├── ShaderGraphs │ │ ├── Terain.shadergraph │ │ └── Terain.shadergraph.meta │ ├── Textures.meta │ └── Textures │ │ ├── Skybox.meta │ │ └── Skybox │ │ ├── Back_Tex.png │ │ ├── Back_Tex.png.meta │ │ ├── Down_Tex.png │ │ ├── Down_Tex.png.meta │ │ ├── Front_Tex.png │ │ ├── Front_Tex.png.meta │ │ ├── Left_Tex.png │ │ ├── Left_Tex.png.meta │ │ ├── Right_Tex.png │ │ ├── Right_Tex.png.meta │ │ ├── Up_Tex.png │ │ └── Up_Tex.png.meta ├── PCG.Terrain.meta ├── PCG.Terrain │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.cs.meta │ ├── Common.meta │ ├── Common │ │ ├── Collections.meta │ │ ├── Collections │ │ │ ├── NativeCounter.cs │ │ │ ├── NativeCounter.cs.meta │ │ │ ├── NativeUnit.cs │ │ │ ├── NativeUnit.cs.meta │ │ │ ├── Unsafe.meta │ │ │ └── Unsafe │ │ │ │ ├── IUnsafeCollections.cs │ │ │ │ ├── IUnsafeCollections.cs.meta │ │ │ │ ├── MemoryManager.cs │ │ │ │ ├── MemoryManager.cs.meta │ │ │ │ ├── UnsafeArrayList.cs │ │ │ │ └── UnsafeArrayList.cs.meta │ │ ├── Enumerators.meta │ │ ├── Enumerators │ │ │ ├── NativeHashMapEnumerator.cs │ │ │ ├── NativeHashMapEnumerator.cs.meta │ │ │ ├── NativeMultiHashMapEnumerator.cs │ │ │ └── NativeMultiHashMapEnumerator.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── ComponentSystemBaseExtensions.cs │ │ │ ├── ComponentSystemBaseExtensions.cs.meta │ │ │ ├── DefaultMemoryManagerExtensions.cs │ │ │ ├── DefaultMemoryManagerExtensions.cs.meta │ │ │ ├── IJobParallelForGridExtensions.cs │ │ │ ├── IJobParallelForGridExtensions.cs.meta │ │ │ ├── ListExtensions.cs │ │ │ ├── ListExtensions.cs.meta │ │ │ ├── NativeArrayExtensions.cs │ │ │ ├── NativeArrayExtensions.cs.meta │ │ │ ├── NativeHashMapExtensions.cs │ │ │ ├── NativeHashMapExtensions.cs.meta │ │ │ ├── NativeMultiHashMapExtensions.cs │ │ │ ├── NativeMultiHashMapExtensions.cs.meta │ │ │ ├── SliderExtensions.cs │ │ │ ├── SliderExtensions.cs.meta │ │ │ ├── SliderValueExtensions.cs │ │ │ ├── SliderValueExtensions.cs.meta │ │ │ ├── UnsafeCollectionsExtensions.cs │ │ │ ├── UnsafeCollectionsExtensions.cs.meta │ │ │ ├── WorldExtensions.cs │ │ │ └── WorldExtensions.cs.meta │ │ ├── Grid.meta │ │ ├── Grid │ │ │ ├── Derivative.cs │ │ │ ├── Derivative.cs.meta │ │ │ ├── Location.cs │ │ │ ├── Location.cs.meta │ │ │ ├── MeshAbout.cs │ │ │ ├── MeshAbout.cs.meta │ │ │ ├── MeshCreator.cs │ │ │ ├── MeshCreator.cs.meta │ │ │ ├── NativeGradient.cs │ │ │ └── NativeGradient.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ │ ├── HashMapHelpers.cs │ │ │ ├── HashMapHelpers.cs.meta │ │ │ ├── NoAllocHelpers.cs │ │ │ ├── NoAllocHelpers.cs.meta │ │ │ ├── UnsafeCollectionsHelpers.cs │ │ │ └── UnsafeCollectionsHelpers.cs.meta │ │ ├── Impostors.meta │ │ ├── Impostors │ │ │ ├── NativeHashMapDataImpostor.cs │ │ │ ├── NativeHashMapDataImpostor.cs.meta │ │ │ ├── NativeHashMapImpostor.cs │ │ │ ├── NativeHashMapImpostor.cs.meta │ │ │ ├── NativeMultiHashMapImpostor.cs │ │ │ └── NativeMultiHashMapImpostor.cs.meta │ │ ├── Jobs.meta │ │ ├── Jobs │ │ │ ├── IJobParallelForGrid.cs │ │ │ └── IJobParallelForGrid.cs.meta │ │ ├── Memory.meta │ │ └── Memory │ │ │ ├── NoiseDataHandling.cs │ │ │ ├── NoiseDataHandling.cs.meta │ │ │ ├── VerticesDataHandling.cs │ │ │ └── VerticesDataHandling.cs.meta │ ├── Config.cs │ ├── Config.cs.meta │ ├── Core.meta │ ├── Core │ │ ├── Bootstrap.cs │ │ ├── Bootstrap.cs.meta │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── ArchetypeChunkCalculationIndicator.cs │ │ │ ├── ArchetypeChunkCalculationIndicator.cs.meta │ │ │ ├── ArchetypeChunkNoiseMetaInfo.cs │ │ │ ├── ArchetypeChunkNoiseMetaInfo.cs.meta │ │ │ ├── FollowTarget.cs │ │ │ ├── FollowTarget.cs.meta │ │ │ ├── Hybrid.meta │ │ │ ├── Hybrid │ │ │ │ ├── FollowTargetProxy.cs │ │ │ │ └── FollowTargetProxy.cs.meta │ │ │ ├── NoiseCalculation.cs │ │ │ ├── NoiseCalculation.cs.meta │ │ │ ├── VerticesData.cs │ │ │ └── VerticesData.cs.meta │ │ ├── DataTypes.meta │ │ ├── DataTypes │ │ │ ├── CalculationIndicator.cs │ │ │ ├── CalculationIndicator.cs.meta │ │ │ ├── NoiseMetaInfo.cs │ │ │ ├── NoiseMetaInfo.cs.meta │ │ │ ├── Offset.cs │ │ │ ├── Offset.cs.meta │ │ │ ├── SliderValue.cs │ │ │ ├── SliderValue.cs.meta │ │ │ ├── SliderValueCode.cs │ │ │ ├── SliderValueCode.cs.meta │ │ │ ├── SliderValueMessage.cs │ │ │ └── SliderValueMessage.cs.meta │ │ ├── Systems.meta │ │ ├── Systems │ │ │ ├── BaseSystem.cs │ │ │ ├── BaseSystem.cs.meta │ │ │ ├── CalculateNoise.cs │ │ │ ├── CalculateNoise.cs.meta │ │ │ ├── CleanUpSystem.cs │ │ │ ├── CleanUpSystem.cs.meta │ │ │ ├── CreateSystem.cs │ │ │ ├── CreateSystem.cs.meta │ │ │ ├── CullingLoader.cs │ │ │ ├── CullingLoader.cs.meta │ │ │ ├── IdentifyChange.cs │ │ │ ├── IdentifyChange.cs.meta │ │ │ ├── InitSystem.cs │ │ │ ├── InitSystem.cs.meta │ │ │ ├── RenderAssignment.cs │ │ │ ├── RenderAssignment.cs.meta │ │ │ ├── TerrainSystem.cs │ │ │ └── TerrainSystem.cs.meta │ │ ├── TerrainController.cs │ │ ├── TerrainController.cs.meta │ │ ├── TerrainSystemManager.cs │ │ └── TerrainSystemManager.cs.meta │ ├── PCG.Terrain.asmdef │ ├── PCG.Terrain.asmdef.meta │ ├── Performance.meta │ ├── Performance │ │ ├── PCG.Terrain.Performance.asmdef │ │ ├── PCG.Terrain.Performance.asmdef.meta │ │ ├── Pokus.meta │ │ ├── TerrainConstruction.cs │ │ ├── TerrainConstruction.cs.meta │ │ ├── TestCase.meta │ │ ├── TestCase │ │ │ ├── Base.meta │ │ │ ├── Base │ │ │ │ ├── ITerrainCreator.cs │ │ │ │ ├── ITerrainCreator.cs.meta │ │ │ │ ├── PerformanceCreator.cs │ │ │ │ ├── PerformanceCreator.cs.meta │ │ │ │ ├── TerrainCreator.cs │ │ │ │ └── TerrainCreator.cs.meta │ │ │ ├── CreateSystem.cs │ │ │ ├── CreateSystem.cs.meta │ │ │ ├── GeneralCreateSystem.cs │ │ │ ├── GeneralCreateSystem.cs.meta │ │ │ ├── InitSystem.cs │ │ │ ├── InitSystem.cs.meta │ │ │ ├── TerrainSystem.cs │ │ │ └── TerrainSystem.cs.meta │ │ ├── Utils.meta │ │ └── Utils │ │ │ ├── BaseTestTerrain.cs │ │ │ ├── BaseTestTerrain.cs.meta │ │ │ ├── Common.cs │ │ │ ├── Common.cs.meta │ │ │ ├── ITestSettings.cs │ │ │ ├── ITestSettings.cs.meta │ │ │ ├── ResourcesData.cs │ │ │ ├── ResourcesData.cs.meta │ │ │ ├── TestSettings.cs │ │ │ └── TestSettings.cs.meta │ ├── Settings.meta │ ├── Settings │ │ ├── ITerrainSettings.cs │ │ ├── ITerrainSettings.cs.meta │ │ ├── MeshSettings.cs │ │ ├── MeshSettings.cs.meta │ │ ├── NoiseSettings.cs │ │ ├── NoiseSettings.cs.meta │ │ ├── TerrainSettings.cs │ │ └── TerrainSettings.cs.meta │ ├── TerrainCreatorType.cs │ ├── TerrainCreatorType.cs.meta │ ├── Tests.meta │ ├── Tests │ │ ├── HashMapHelpers.cs │ │ ├── HashMapHelpers.cs.meta │ │ ├── NativeHashMapEnumeratorTest.cs │ │ ├── NativeHashMapEnumeratorTest.cs.meta │ │ ├── NativeMultiHashMapEnumeratorTest.cs │ │ ├── NativeMultiHashMapEnumeratorTest.cs.meta │ │ ├── PCG.Terrain.Tests.asmdef │ │ └── PCG.Terrain.Tests.asmdef.meta │ ├── Utilities.meta │ └── Utilities │ │ ├── Noise.cs │ │ └── Noise.cs.meta ├── Plugins.meta ├── Plugins │ ├── Editor.meta │ ├── NaughtyAttributes.meta │ ├── NaughtyAttributes │ │ ├── README.html │ │ ├── README.html.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ ├── ConditionOperator.cs │ │ │ ├── ConditionOperator.cs.meta │ │ │ ├── DrawConditionAttributes.meta │ │ │ ├── DrawConditionAttributes │ │ │ │ ├── DrawConditionAttribute.cs │ │ │ │ ├── DrawConditionAttribute.cs.meta │ │ │ │ ├── HideIfAttribute.cs │ │ │ │ ├── HideIfAttribute.cs.meta │ │ │ │ ├── ShowIfAttribute.cs │ │ │ │ └── ShowIfAttribute.cs.meta │ │ │ ├── DrawerAttributes.meta │ │ │ ├── DrawerAttributes │ │ │ │ ├── ButtonAttribute.cs │ │ │ │ ├── ButtonAttribute.cs.meta │ │ │ │ ├── DisableIfAttribute.cs │ │ │ │ ├── DisableIfAttribute.cs.meta │ │ │ │ ├── DrawerAttribute.cs │ │ │ │ ├── DrawerAttribute.cs.meta │ │ │ │ ├── DropdownAttribute.cs │ │ │ │ ├── DropdownAttribute.cs.meta │ │ │ │ ├── EnableIfAttribute.cs │ │ │ │ ├── EnableIfAttribute.cs.meta │ │ │ │ ├── LabelAttribute.cs │ │ │ │ ├── LabelAttribute.cs.meta │ │ │ │ ├── MinMaxSliderAttribute.cs │ │ │ │ ├── MinMaxSliderAttribute.cs.meta │ │ │ │ ├── ProgressBarAttribute.cs │ │ │ │ ├── ProgressBarAttribute.cs.meta │ │ │ │ ├── ReadOnlyAttribute.cs │ │ │ │ ├── ReadOnlyAttribute.cs.meta │ │ │ │ ├── ReorderableListAttribute.cs │ │ │ │ ├── ReorderableListAttribute.cs.meta │ │ │ │ ├── ResizableTextAreaAttribute.cs │ │ │ │ ├── ResizableTextAreaAttribute.cs.meta │ │ │ │ ├── ShowAssetPreviewAttribute.cs │ │ │ │ ├── ShowAssetPreviewAttribute.cs.meta │ │ │ │ ├── ShowNativePropertyAttribute.cs │ │ │ │ ├── ShowNativePropertyAttribute.cs.meta │ │ │ │ ├── ShowNonSerializedFieldAttribute.cs │ │ │ │ ├── ShowNonSerializedFieldAttribute.cs.meta │ │ │ │ ├── SliderAttribute.cs │ │ │ │ ├── SliderAttribute.cs.meta │ │ │ │ ├── TagAttribute.cs │ │ │ │ └── TagAttribute.cs.meta │ │ │ ├── GroupAttributes.meta │ │ │ ├── GroupAttributes │ │ │ │ ├── BoxGroupAttribute.cs │ │ │ │ ├── BoxGroupAttribute.cs.meta │ │ │ │ ├── GroupAttribute.cs │ │ │ │ └── GroupAttribute.cs.meta │ │ │ ├── MetaAttributes.meta │ │ │ ├── MetaAttributes │ │ │ │ ├── InfoBoxAttribute.cs │ │ │ │ ├── InfoBoxAttribute.cs.meta │ │ │ │ ├── MetaAttribute.cs │ │ │ │ ├── MetaAttribute.cs.meta │ │ │ │ ├── OnValueChangedAttribute.cs │ │ │ │ └── OnValueChangedAttribute.cs.meta │ │ │ ├── NaughtyAttribute.cs │ │ │ ├── NaughtyAttribute.cs.meta │ │ │ ├── NaughtyAttributes.Core.asmdef │ │ │ ├── NaughtyAttributes.Core.asmdef.meta │ │ │ ├── ValidatorAttributes.meta │ │ │ └── ValidatorAttributes │ │ │ │ ├── MaxValueAttribute.cs │ │ │ │ ├── MaxValueAttribute.cs.meta │ │ │ │ ├── MinValueAttribute.cs │ │ │ │ ├── MinValueAttribute.cs.meta │ │ │ │ ├── RequiredAttribute.cs │ │ │ │ ├── RequiredAttribute.cs.meta │ │ │ │ ├── ValidateInputAttribute.cs │ │ │ │ ├── ValidateInputAttribute.cs.meta │ │ │ │ ├── ValidatorAttribute.cs │ │ │ │ └── ValidatorAttribute.cs.meta │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ ├── BaseAttribute.cs │ │ │ ├── BaseAttribute.cs.meta │ │ │ ├── FieldDrawerAttribute.cs │ │ │ ├── FieldDrawerAttribute.cs.meta │ │ │ ├── IAttribute.cs │ │ │ ├── IAttribute.cs.meta │ │ │ ├── MethodDrawerAttribute.cs │ │ │ ├── MethodDrawerAttribute.cs.meta │ │ │ ├── NativePropertyDrawerAttribute.cs │ │ │ ├── NativePropertyDrawerAttribute.cs.meta │ │ │ ├── PropertyDrawConditionAttribute.cs │ │ │ ├── PropertyDrawConditionAttribute.cs.meta │ │ │ ├── PropertyDrawerAttribute.cs │ │ │ ├── PropertyDrawerAttribute.cs.meta │ │ │ ├── PropertyGrouperAttribute.cs │ │ │ ├── PropertyGrouperAttribute.cs.meta │ │ │ ├── PropertyMetaAttribute.cs │ │ │ ├── PropertyMetaAttribute.cs.meta │ │ │ ├── PropertyValidatorAttribute.cs │ │ │ └── PropertyValidatorAttribute.cs.meta │ │ │ ├── CodeGeneration.meta │ │ │ ├── CodeGeneration │ │ │ ├── CodeGenerator.cs │ │ │ ├── CodeGenerator.cs.meta │ │ │ ├── FieldDrawerDatabase.cs │ │ │ ├── FieldDrawerDatabase.cs.meta │ │ │ ├── MethodDrawerDatabase.cs │ │ │ ├── MethodDrawerDatabase.cs.meta │ │ │ ├── NativePropertyDrawerDatabase.cs │ │ │ ├── NativePropertyDrawerDatabase.cs.meta │ │ │ ├── PropertyDrawConditionDatabase.cs │ │ │ ├── PropertyDrawConditionDatabase.cs.meta │ │ │ ├── PropertyDrawerDatabase.cs │ │ │ ├── PropertyDrawerDatabase.cs.meta │ │ │ ├── PropertyGrouperDatabase.cs │ │ │ ├── PropertyGrouperDatabase.cs.meta │ │ │ ├── PropertyMetaDatabase.cs │ │ │ ├── PropertyMetaDatabase.cs.meta │ │ │ ├── PropertyValidatorDatabase.cs │ │ │ ├── PropertyValidatorDatabase.cs.meta │ │ │ ├── Templates.meta │ │ │ └── Templates │ │ │ │ ├── FieldDrawerDatabaseTemplate.txt │ │ │ │ ├── FieldDrawerDatabaseTemplate.txt.meta │ │ │ │ ├── MethodDrawerDatabaseTemplate.txt │ │ │ │ ├── MethodDrawerDatabaseTemplate.txt.meta │ │ │ │ ├── NativePropertyDrawerDbTemplate.txt │ │ │ │ ├── NativePropertyDrawerDbTemplate.txt.meta │ │ │ │ ├── PropertyDrawConditionDatabaseTemplate.txt │ │ │ │ ├── PropertyDrawConditionDatabaseTemplate.txt.meta │ │ │ │ ├── PropertyDrawerDatabaseTemplate.txt │ │ │ │ ├── PropertyDrawerDatabaseTemplate.txt.meta │ │ │ │ ├── PropertyGrouperDatabaseTemplate.txt │ │ │ │ ├── PropertyGrouperDatabaseTemplate.txt.meta │ │ │ │ ├── PropertyMetaDatabaseTemplate.txt │ │ │ │ ├── PropertyMetaDatabaseTemplate.txt.meta │ │ │ │ ├── PropertyValidatorDatabaseTemplate.txt │ │ │ │ └── PropertyValidatorDatabaseTemplate.txt.meta │ │ │ ├── Editors.meta │ │ │ ├── Editors │ │ │ ├── InspectorEditor.cs │ │ │ └── InspectorEditor.cs.meta │ │ │ ├── FieldDrawers.meta │ │ │ ├── FieldDrawers │ │ │ ├── FieldDrawer.cs │ │ │ ├── FieldDrawer.cs.meta │ │ │ ├── ShowNonSerializedFieldFieldDrawer.cs │ │ │ └── ShowNonSerializedFieldFieldDrawer.cs.meta │ │ │ ├── MethodDrawers.meta │ │ │ ├── MethodDrawers │ │ │ ├── ButtonMethodDrawer.cs │ │ │ ├── ButtonMethodDrawer.cs.meta │ │ │ ├── MethodDrawer.cs │ │ │ └── MethodDrawer.cs.meta │ │ │ ├── NativePropertyDrawers.meta │ │ │ ├── NativePropertyDrawers │ │ │ ├── NativePropertyDrawer.cs │ │ │ ├── NativePropertyDrawer.cs.meta │ │ │ ├── ShowNativePropertyNativePropertyDrawer.cs │ │ │ └── ShowNativePropertyNativePropertyDrawer.cs.meta │ │ │ ├── NaughtyAttributes.Editor.asmdef │ │ │ ├── NaughtyAttributes.Editor.asmdef.meta │ │ │ ├── PropertyDrawConditions.meta │ │ │ ├── PropertyDrawConditions │ │ │ ├── HideIfPropertyDrawCondition.cs │ │ │ ├── HideIfPropertyDrawCondition.cs.meta │ │ │ ├── PropertyDrawCondition.cs │ │ │ ├── PropertyDrawCondition.cs.meta │ │ │ ├── ShowIfPropertyDrawCondition.cs │ │ │ └── ShowIfPropertyDrawCondition.cs.meta │ │ │ ├── PropertyDrawers.meta │ │ │ ├── PropertyDrawers │ │ │ ├── DisableIfPropertyDrawer.cs │ │ │ ├── DisableIfPropertyDrawer.cs.meta │ │ │ ├── DropdownPropertyDrawer.cs │ │ │ ├── DropdownPropertyDrawer.cs.meta │ │ │ ├── EnableIfPropertyDrawer.cs │ │ │ ├── EnableIfPropertyDrawer.cs.meta │ │ │ ├── LabelPropertyDrawer.cs │ │ │ ├── LabelPropertyDrawer.cs.meta │ │ │ ├── MinMaxSliderPropertyDrawer.cs │ │ │ ├── MinMaxSliderPropertyDrawer.cs.meta │ │ │ ├── ProgressBarPropertyDrawer.cs │ │ │ ├── ProgressBarPropertyDrawer.cs.meta │ │ │ ├── PropertyDrawer.cs │ │ │ ├── PropertyDrawer.cs.meta │ │ │ ├── ReadOnlyPropertyDrawer.cs │ │ │ ├── ReadOnlyPropertyDrawer.cs.meta │ │ │ ├── ReorderableListPropertyDrawer.cs │ │ │ ├── ReorderableListPropertyDrawer.cs.meta │ │ │ ├── ResizableTextAreaPropertyDrawer.cs │ │ │ ├── ResizableTextAreaPropertyDrawer.cs.meta │ │ │ ├── ShowAssetPreviewPropertyDrawer.cs │ │ │ ├── ShowAssetPreviewPropertyDrawer.cs.meta │ │ │ ├── SliderPropertyDrawer.cs │ │ │ ├── SliderPropertyDrawer.cs.meta │ │ │ ├── TagPropertyDrawer.cs │ │ │ └── TagPropertyDrawer.cs.meta │ │ │ ├── PropertyGroupers.meta │ │ │ ├── PropertyGroupers │ │ │ ├── BoxGroupPropertyGrouper.cs │ │ │ ├── BoxGroupPropertyGrouper.cs.meta │ │ │ ├── PropertyGrouper.cs │ │ │ └── PropertyGrouper.cs.meta │ │ │ ├── PropertyMetas.meta │ │ │ ├── PropertyMetas │ │ │ ├── InfoBoxPropertyMeta.cs │ │ │ ├── InfoBoxPropertyMeta.cs.meta │ │ │ ├── OnValueChangedPropertyMeta.cs │ │ │ ├── OnValueChangedPropertyMeta.cs.meta │ │ │ ├── PropertyMeta.cs │ │ │ └── PropertyMeta.cs.meta │ │ │ ├── PropertyValidators.meta │ │ │ ├── PropertyValidators │ │ │ ├── MaxValuePropertyValidator.cs │ │ │ ├── MaxValuePropertyValidator.cs.meta │ │ │ ├── MinValuePropertyValidator.cs │ │ │ ├── MinValuePropertyValidator.cs.meta │ │ │ ├── PropertyValidator.cs │ │ │ ├── PropertyValidator.cs.meta │ │ │ ├── RequiredPropertyValidator.cs │ │ │ ├── RequiredPropertyValidator.cs.meta │ │ │ ├── ValidateInputPropertyValidator.cs │ │ │ └── ValidateInputPropertyValidator.cs.meta │ │ │ ├── Utility.meta │ │ │ └── Utility │ │ │ ├── EditorDrawUtility.cs │ │ │ ├── EditorDrawUtility.cs.meta │ │ │ ├── IOUtility.cs │ │ │ ├── IOUtility.cs.meta │ │ │ ├── PropertyUtility.cs │ │ │ ├── PropertyUtility.cs.meta │ │ │ ├── ReflectionUtility.cs │ │ │ └── ReflectionUtility.cs.meta │ ├── Standard Assets.meta │ ├── Standard Assets │ │ ├── Characters.meta │ │ └── Characters │ │ │ ├── Cameras.meta │ │ │ ├── Cameras │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── AbstractTargetFollower.cs │ │ │ │ ├── AbstractTargetFollower.cs.meta │ │ │ │ ├── AutoCam.cs │ │ │ │ ├── AutoCam.cs.meta │ │ │ │ ├── PivotBasedCameraRig.cs │ │ │ │ └── PivotBasedCameraRig.cs.meta │ │ │ ├── FirstPersonCharacter.meta │ │ │ └── FirstPersonCharacter │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── FirstPersonController.cs │ │ │ ├── FirstPersonController.cs.meta │ │ │ ├── MouseLook.cs │ │ │ ├── MouseLook.cs.meta │ │ │ ├── MovementSettings.cs │ │ │ └── MovementSettings.cs.meta │ ├── Tayx.meta │ ├── Tayx │ │ ├── Graphy - Ultimate Stats Monitor.meta │ │ └── Graphy - Ultimate Stats Monitor │ │ │ ├── Changelog.txt │ │ │ ├── Changelog.txt.meta │ │ │ ├── Font.meta │ │ │ ├── Font │ │ │ ├── Northwest-Bold.meta │ │ │ ├── Northwest-Bold │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta │ │ │ │ ├── NORTHWEST-B.otf │ │ │ │ └── NORTHWEST-B.otf.meta │ │ │ ├── Roboto.meta │ │ │ └── Roboto │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ └── Roboto-Regular.ttf.meta │ │ │ ├── GUI.meta │ │ │ ├── GUI │ │ │ ├── Graphy.guiskin │ │ │ └── Graphy.guiskin.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── Audio_Spectrum_Graph.mat │ │ │ ├── Audio_Spectrum_Graph.mat.meta │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat.meta │ │ │ ├── FPS_Graph.mat │ │ │ ├── FPS_Graph.mat.meta │ │ │ ├── RAM_Allocated_Graph.mat │ │ │ ├── RAM_Allocated_Graph.mat.meta │ │ │ ├── RAM_Mono_Graph.mat │ │ │ ├── RAM_Mono_Graph.mat.meta │ │ │ ├── RAM_Reserved_Graph.mat │ │ │ └── RAM_Reserved_Graph.mat.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ ├── [Graphy].prefab │ │ │ └── [Graphy].prefab.meta │ │ │ ├── Readme! - Graphy - Documentation.pdf │ │ │ ├── Readme! - Graphy - Documentation.pdf.meta │ │ │ ├── Scene.meta │ │ │ ├── Scene │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ │ ├── Morning_Dew.mp3 │ │ │ │ ├── Morning_Dew.mp3.meta │ │ │ │ ├── SFX.meta │ │ │ │ └── SFX │ │ │ │ │ ├── 158140__qubodup__epic-logo-intro-part-2-glass-and-machine_01.mp3 │ │ │ │ │ ├── 158140__qubodup__epic-logo-intro-part-2-glass-and-machine_01.mp3.meta │ │ │ │ │ ├── 170229__roachpowder__camera-shutter.aiff │ │ │ │ │ ├── 170229__roachpowder__camera-shutter.aiff.meta │ │ │ │ │ ├── 171697__nenadsimic__menu-selection-click.wav │ │ │ │ │ ├── 171697__nenadsimic__menu-selection-click.wav.meta │ │ │ │ │ ├── 269180__mickleness__chat-message-1-incoming-message_01.mp3 │ │ │ │ │ ├── 269180__mickleness__chat-message-1-incoming-message_01.mp3.meta │ │ │ │ │ ├── 349501__cabled-mess__triangle-open-01_01.mp3 │ │ │ │ │ └── 349501__cabled-mess__triangle-open-01_01.mp3.meta │ │ │ ├── Color Picker.meta │ │ │ ├── Color Picker │ │ │ │ ├── CUIColorPicker.prefab │ │ │ │ ├── CUIColorPicker.prefab.meta │ │ │ │ ├── G_CUIColorPicker.cs │ │ │ │ ├── G_CUIColorPicker.cs.meta │ │ │ │ ├── Transparency-Texture.png │ │ │ │ └── Transparency-Texture.png.meta │ │ │ ├── Customization Scripts.meta │ │ │ ├── Customization Scripts │ │ │ │ ├── CustomizeGraphy.cs │ │ │ │ ├── CustomizeGraphy.cs.meta │ │ │ │ ├── ForceSliderToMultipleOf3.cs │ │ │ │ ├── ForceSliderToMultipleOf3.cs.meta │ │ │ │ ├── ForceSliderToPowerOf2.cs │ │ │ │ ├── ForceSliderToPowerOf2.cs.meta │ │ │ │ ├── UpdateTextWithSliderValue.cs │ │ │ │ └── UpdateTextWithSliderValue.cs.meta │ │ │ ├── Customize Graphy.unity │ │ │ ├── Customize Graphy.unity.meta │ │ │ ├── Prefab.meta │ │ │ └── Prefab │ │ │ │ ├── [Graphy] - Customizer.prefab │ │ │ │ └── [Graphy] - Customizer.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── Advanced.meta │ │ │ ├── Advanced │ │ │ │ ├── G_AdvancedData.cs │ │ │ │ └── G_AdvancedData.cs.meta │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ │ ├── G_AudioGraph.cs │ │ │ │ ├── G_AudioGraph.cs.meta │ │ │ │ ├── G_AudioManager.cs │ │ │ │ ├── G_AudioManager.cs.meta │ │ │ │ ├── G_AudioMonitor.cs │ │ │ │ ├── G_AudioMonitor.cs.meta │ │ │ │ ├── G_AudioText.cs │ │ │ │ └── G_AudioText.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── GraphyDebuggerEditor.cs │ │ │ │ ├── GraphyDebuggerEditor.cs.meta │ │ │ │ ├── GraphyManagerEditor.cs │ │ │ │ └── GraphyManagerEditor.cs.meta │ │ │ ├── Fps.meta │ │ │ ├── Fps │ │ │ │ ├── G_FpsGraph.cs │ │ │ │ ├── G_FpsGraph.cs.meta │ │ │ │ ├── G_FpsManager.cs │ │ │ │ ├── G_FpsManager.cs.meta │ │ │ │ ├── G_FpsMonitor.cs │ │ │ │ ├── G_FpsMonitor.cs.meta │ │ │ │ ├── G_FpsText.cs │ │ │ │ └── G_FpsText.cs.meta │ │ │ ├── Graph.meta │ │ │ ├── Graph │ │ │ │ ├── G_Graph.cs │ │ │ │ └── G_Graph.cs.meta │ │ │ ├── GraphyDebugger.cs │ │ │ ├── GraphyDebugger.cs.meta │ │ │ ├── GraphyManager.cs │ │ │ ├── GraphyManager.cs.meta │ │ │ ├── Ram.meta │ │ │ ├── Ram │ │ │ │ ├── G_RamGraph.cs │ │ │ │ ├── G_RamGraph.cs.meta │ │ │ │ ├── G_RamManager.cs │ │ │ │ ├── G_RamManager.cs.meta │ │ │ │ ├── G_RamMonitor.cs │ │ │ │ ├── G_RamMonitor.cs.meta │ │ │ │ ├── G_RamText.cs │ │ │ │ └── G_RamText.cs.meta │ │ │ ├── Shader.meta │ │ │ ├── Shader │ │ │ │ ├── G_GraphShader.cs │ │ │ │ └── G_GraphShader.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── IModifiableState.cs │ │ │ │ ├── IModifiableState.cs.meta │ │ │ │ ├── IMovable.cs │ │ │ │ └── IMovable.cs.meta │ │ │ ├── Util.meta │ │ │ └── Util │ │ │ │ ├── G_ExtensionMethods.cs │ │ │ │ ├── G_ExtensionMethods.cs.meta │ │ │ │ ├── G_FloatString.cs │ │ │ │ ├── G_FloatString.cs.meta │ │ │ │ ├── G_Intstring.cs │ │ │ │ ├── G_Intstring.cs.meta │ │ │ │ ├── G_Singleton.cs │ │ │ │ └── G_Singleton.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── GraphMobile.shader │ │ │ ├── GraphMobile.shader.meta │ │ │ ├── GraphStandard.shader │ │ │ └── GraphStandard.shader.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── 2x2_Texture.png │ │ │ ├── 2x2_Texture.png.meta │ │ │ ├── Debugger_Logo_Dark.png │ │ │ ├── Debugger_Logo_Dark.png.meta │ │ │ ├── Debugger_Logo_White.png │ │ │ ├── Debugger_Logo_White.png.meta │ │ │ ├── Manager_Logo_Dark.png │ │ │ ├── Manager_Logo_Dark.png.meta │ │ │ ├── Manager_Logo_White.png │ │ │ └── Manager_Logo_White.png.meta │ ├── UniRx.meta │ └── UniRx │ │ ├── Examples.meta │ │ ├── Examples │ │ ├── Sample01_ObservableWWW.cs │ │ ├── Sample01_ObservableWWW.cs.meta │ │ ├── Sample02_ObservableTriggers.cs │ │ ├── Sample02_ObservableTriggers.cs.meta │ │ ├── Sample03_GameObjectAsObservable.cs │ │ ├── Sample03_GameObjectAsObservable.cs.meta │ │ ├── Sample04_ConvertFromUnityCallback.cs │ │ ├── Sample04_ConvertFromUnityCallback.cs.meta │ │ ├── Sample05_ConvertFromCoroutine.cs │ │ ├── Sample05_ConvertFromCoroutine.cs.meta │ │ ├── Sample06_ConvertToCoroutine.cs │ │ ├── Sample06_ConvertToCoroutine.cs.meta │ │ ├── Sample07_OrchestratIEnumerator.cs │ │ ├── Sample07_OrchestratIEnumerator.cs.meta │ │ ├── Sample08_DetectDoubleClick.cs │ │ ├── Sample08_DetectDoubleClick.cs.meta │ │ ├── Sample09_EventHandling.cs │ │ ├── Sample09_EventHandling.cs.meta │ │ ├── Sample10_MainThreadDispatcher.cs │ │ ├── Sample10_MainThreadDispatcher.cs.meta │ │ ├── Sample11_Logger.cs │ │ ├── Sample11_Logger.cs.meta │ │ ├── Sample12Scene.unity │ │ ├── Sample12Scene.unity.meta │ │ ├── Sample12_ReactiveProperty.cs │ │ ├── Sample12_ReactiveProperty.cs.meta │ │ ├── Sample13Scene.unity │ │ ├── Sample13Scene.unity.meta │ │ ├── Sample13_ToDoApp.cs │ │ ├── Sample13_ToDoApp.cs.meta │ │ ├── Sample13_ToDoItem.prefab │ │ ├── Sample13_ToDoItem.prefab.meta │ │ ├── UniRx.Examples.asmdef │ │ └── UniRx.Examples.asmdef.meta │ │ ├── ReadMe.txt │ │ ├── ReadMe.txt.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Async.meta │ │ ├── Async │ │ ├── AsyncUnit.cs │ │ ├── AsyncUnit.cs.meta │ │ ├── CancellationTokenEqualityComparer.cs │ │ ├── CancellationTokenEqualityComparer.cs.meta │ │ ├── CancellationTokenExtensions.cs │ │ ├── CancellationTokenExtensions.cs.meta │ │ ├── CancellationTokenSourceExtensions.cs │ │ ├── CancellationTokenSourceExtensions.cs.meta │ │ ├── CompilerServices.meta │ │ ├── CompilerServices │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ ├── AsyncMethodBuilderAttribute.cs.meta │ │ │ ├── AsyncUniTaskMethodBuilder.cs │ │ │ ├── AsyncUniTaskMethodBuilder.cs.meta │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs.meta │ │ │ ├── MoveNextRunner.cs │ │ │ └── MoveNextRunner.cs.meta │ │ ├── DiagnosticsExtensions.cs │ │ ├── DiagnosticsExtensions.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── SplitterGUILayout.cs │ │ │ ├── SplitterGUILayout.cs.meta │ │ │ ├── UniRx.Async.Editor.asmdef │ │ │ ├── UniRx.Async.Editor.asmdef.meta │ │ │ ├── UniTaskTrackerTreeView.cs │ │ │ ├── UniTaskTrackerTreeView.cs.meta │ │ │ ├── UniTaskTrackerWindow.cs │ │ │ └── UniTaskTrackerWindow.cs.meta │ │ ├── EnumerableAsyncExtensions.cs │ │ ├── EnumerableAsyncExtensions.cs.meta │ │ ├── EnumeratorAsyncExtensions.cs │ │ ├── EnumeratorAsyncExtensions.cs.meta │ │ ├── IAwaiter.cs │ │ ├── IAwaiter.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── ArrayPool.cs │ │ │ ├── ArrayPool.cs.meta │ │ │ ├── ArrayPoolUtil.cs │ │ │ ├── ArrayPoolUtil.cs.meta │ │ │ ├── ArrayUtil.cs │ │ │ ├── ArrayUtil.cs.meta │ │ │ ├── CancellationTokenHelper.cs │ │ │ ├── CancellationTokenHelper.cs.meta │ │ │ ├── ContinuationQueue.cs │ │ │ ├── ContinuationQueue.cs.meta │ │ │ ├── Error.cs │ │ │ ├── Error.cs.meta │ │ │ ├── Hack.cs │ │ │ ├── Hack.cs.meta │ │ │ ├── LazyPromise.cs │ │ │ ├── LazyPromise.cs.meta │ │ │ ├── MinimumQueue.cs │ │ │ ├── MinimumQueue.cs.meta │ │ │ ├── PlayerLoopRunner.cs │ │ │ ├── PlayerLoopRunner.cs.meta │ │ │ ├── PromiseHelper.cs │ │ │ ├── PromiseHelper.cs.meta │ │ │ ├── ReusablePromise.cs │ │ │ ├── ReusablePromise.cs.meta │ │ │ ├── RuntimeHelpersAbstraction.cs │ │ │ ├── RuntimeHelpersAbstraction.cs.meta │ │ │ ├── TaskTracker.cs │ │ │ ├── TaskTracker.cs.meta │ │ │ ├── WeakDictionary.cs │ │ │ └── WeakDictionary.cs.meta │ │ ├── PlayerLoopHelper.cs │ │ ├── PlayerLoopHelper.cs.meta │ │ ├── Progress.cs │ │ ├── Progress.cs.meta │ │ ├── Triggers.meta │ │ ├── Triggers │ │ │ ├── AsyncAnimatorTrigger.cs │ │ │ ├── AsyncAnimatorTrigger.cs.meta │ │ │ ├── AsyncAwakeTrigger.cs │ │ │ ├── AsyncAwakeTrigger.cs.meta │ │ │ ├── AsyncBeginDragTrigger.cs │ │ │ ├── AsyncBeginDragTrigger.cs.meta │ │ │ ├── AsyncCancelTrigger.cs │ │ │ ├── AsyncCancelTrigger.cs.meta │ │ │ ├── AsyncCanvasGroupChangedTrigger.cs │ │ │ ├── AsyncCanvasGroupChangedTrigger.cs.meta │ │ │ ├── AsyncCollision2DTrigger.cs │ │ │ ├── AsyncCollision2DTrigger.cs.meta │ │ │ ├── AsyncCollisionTrigger.cs │ │ │ ├── AsyncCollisionTrigger.cs.meta │ │ │ ├── AsyncDeselectTrigger.cs │ │ │ ├── AsyncDeselectTrigger.cs.meta │ │ │ ├── AsyncDestroyTrigger.cs │ │ │ ├── AsyncDestroyTrigger.cs.meta │ │ │ ├── AsyncDragTrigger.cs │ │ │ ├── AsyncDragTrigger.cs.meta │ │ │ ├── AsyncDropTrigger.cs │ │ │ ├── AsyncDropTrigger.cs.meta │ │ │ ├── AsyncEnableDisableTrigger.cs │ │ │ ├── AsyncEnableDisableTrigger.cs.meta │ │ │ ├── AsyncEndDragTrigger.cs │ │ │ ├── AsyncEndDragTrigger.cs.meta │ │ │ ├── AsyncEventTrigger.cs │ │ │ ├── AsyncEventTrigger.cs.meta │ │ │ ├── AsyncFixedUpdateTrigger.cs │ │ │ ├── AsyncFixedUpdateTrigger.cs.meta │ │ │ ├── AsyncInitializePotentialDragTrigger.cs │ │ │ ├── AsyncInitializePotentialDragTrigger.cs.meta │ │ │ ├── AsyncJointTrigger.cs │ │ │ ├── AsyncJointTrigger.cs.meta │ │ │ ├── AsyncLateUpdateTrigger.cs │ │ │ ├── AsyncLateUpdateTrigger.cs.meta │ │ │ ├── AsyncMouseTrigger.cs │ │ │ ├── AsyncMouseTrigger.cs.meta │ │ │ ├── AsyncMoveTrigger.cs │ │ │ ├── AsyncMoveTrigger.cs.meta │ │ │ ├── AsyncParticleTrigger.cs │ │ │ ├── AsyncParticleTrigger.cs.meta │ │ │ ├── AsyncPointerClickTrigger.cs │ │ │ ├── AsyncPointerClickTrigger.cs.meta │ │ │ ├── AsyncPointerDownTrigger.cs │ │ │ ├── AsyncPointerDownTrigger.cs.meta │ │ │ ├── AsyncPointerEnterTrigger.cs │ │ │ ├── AsyncPointerEnterTrigger.cs.meta │ │ │ ├── AsyncPointerExitTrigger.cs │ │ │ ├── AsyncPointerExitTrigger.cs.meta │ │ │ ├── AsyncPointerUpTrigger.cs │ │ │ ├── AsyncPointerUpTrigger.cs.meta │ │ │ ├── AsyncRectTransformTrigger.cs │ │ │ ├── AsyncRectTransformTrigger.cs.meta │ │ │ ├── AsyncScrollTrigger.cs │ │ │ ├── AsyncScrollTrigger.cs.meta │ │ │ ├── AsyncSelectTrigger.cs │ │ │ ├── AsyncSelectTrigger.cs.meta │ │ │ ├── AsyncStartTrigger.cs │ │ │ ├── AsyncStartTrigger.cs.meta │ │ │ ├── AsyncSubmitTrigger.cs │ │ │ ├── AsyncSubmitTrigger.cs.meta │ │ │ ├── AsyncTransformChangedTrigger.cs │ │ │ ├── AsyncTransformChangedTrigger.cs.meta │ │ │ ├── AsyncTrigger2DTrigger.cs │ │ │ ├── AsyncTrigger2DTrigger.cs.meta │ │ │ ├── AsyncTriggerBase.cs │ │ │ ├── AsyncTriggerBase.cs.meta │ │ │ ├── AsyncTriggerExtensions.cs │ │ │ ├── AsyncTriggerExtensions.cs.meta │ │ │ ├── AsyncTriggerTrigger.cs │ │ │ ├── AsyncTriggerTrigger.cs.meta │ │ │ ├── AsyncUpdateSelectedTrigger.cs │ │ │ ├── AsyncUpdateSelectedTrigger.cs.meta │ │ │ ├── AsyncUpdateTrigger.cs │ │ │ ├── AsyncUpdateTrigger.cs.meta │ │ │ ├── AsyncVisibleTrigger.cs │ │ │ └── AsyncVisibleTrigger.cs.meta │ │ ├── UniRx.Async.asmdef │ │ ├── UniRx.Async.asmdef.meta │ │ ├── UniTask.Bridge.cs │ │ ├── UniTask.Bridge.cs.meta │ │ ├── UniTask.Delay.cs │ │ ├── UniTask.Delay.cs.meta │ │ ├── UniTask.Factory.cs │ │ ├── UniTask.Factory.cs.meta │ │ ├── UniTask.Run.cs │ │ ├── UniTask.Run.cs.meta │ │ ├── UniTask.Threading.cs │ │ ├── UniTask.Threading.cs.meta │ │ ├── UniTask.WaitUntil.cs │ │ ├── UniTask.WaitUntil.cs.meta │ │ ├── UniTask.WhenAll.Generated.cs │ │ ├── UniTask.WhenAll.Generated.cs.meta │ │ ├── UniTask.WhenAll.cs │ │ ├── UniTask.WhenAll.cs.meta │ │ ├── UniTask.WhenAny.Generated.cs │ │ ├── UniTask.WhenAny.Generated.cs.meta │ │ ├── UniTask.WhenAny.cs │ │ ├── UniTask.WhenAny.cs.meta │ │ ├── UniTask.cs │ │ ├── UniTask.cs.meta │ │ ├── UniTaskCompletionSource.cs │ │ ├── UniTaskCompletionSource.cs.meta │ │ ├── UniTaskExtensions.Shorthand.cs │ │ ├── UniTaskExtensions.Shorthand.cs.meta │ │ ├── UniTaskExtensions.cs │ │ ├── UniTaskExtensions.cs.meta │ │ ├── UniTaskScheduler.cs │ │ ├── UniTaskScheduler.cs.meta │ │ ├── UniTaskVoid.cs │ │ ├── UniTaskVoid.cs.meta │ │ ├── UnityAsyncExtensions.Jobs.cs │ │ ├── UnityAsyncExtensions.Jobs.cs.meta │ │ ├── UnityAsyncExtensions.cs │ │ ├── UnityAsyncExtensions.cs.meta │ │ ├── UnityAsyncExtensions.uGUI.cs │ │ ├── UnityAsyncExtensions.uGUI.cs.meta │ │ ├── UnityEqualityComparer.cs │ │ └── UnityEqualityComparer.cs.meta │ │ ├── Asynchronous.meta │ │ ├── Asynchronous │ │ ├── WebRequestExtensions.cs │ │ └── WebRequestExtensions.cs.meta │ │ ├── Disposables.meta │ │ ├── Disposables │ │ ├── BooleanDisposable.cs │ │ ├── BooleanDisposable.cs.meta │ │ ├── CancellationDisposable.cs │ │ ├── CancellationDisposable.cs.meta │ │ ├── CompositeDisposable.cs │ │ ├── CompositeDisposable.cs.meta │ │ ├── DictionaryDisposable.cs │ │ ├── DictionaryDisposable.cs.meta │ │ ├── Disposable.cs │ │ ├── Disposable.cs.meta │ │ ├── DisposableExtensions.cs │ │ ├── DisposableExtensions.cs.meta │ │ ├── ICancelable.cs │ │ ├── ICancelable.cs.meta │ │ ├── MultipleAssignmentDisposable.cs │ │ ├── MultipleAssignmentDisposable.cs.meta │ │ ├── RefCountDisposable.cs │ │ ├── RefCountDisposable.cs.meta │ │ ├── ScheduledDisposable.cs │ │ ├── ScheduledDisposable.cs.meta │ │ ├── SerialDisposable.cs │ │ ├── SerialDisposable.cs.meta │ │ ├── SingleAssignmentDisposable.cs │ │ ├── SingleAssignmentDisposable.cs.meta │ │ ├── StableCompositeDisposable.cs │ │ └── StableCompositeDisposable.cs.meta │ │ ├── EventPattern.cs │ │ ├── EventPattern.cs.meta │ │ ├── InternalUtil.meta │ │ ├── InternalUtil │ │ ├── AscynLock.cs │ │ ├── AscynLock.cs.meta │ │ ├── ExceptionExtensions.cs │ │ ├── ExceptionExtensions.cs.meta │ │ ├── ImmutableList.cs │ │ ├── ImmutableList.cs.meta │ │ ├── ListObserver.cs │ │ ├── ListObserver.cs.meta │ │ ├── MicroCoroutine.cs │ │ ├── MicroCoroutine.cs.meta │ │ ├── PriorityQueue.cs │ │ ├── PriorityQueue.cs.meta │ │ ├── ScheduledItem.cs │ │ ├── ScheduledItem.cs.meta │ │ ├── ThreadSafeQueueWorker.cs │ │ └── ThreadSafeQueueWorker.cs.meta │ │ ├── Notification.cs │ │ ├── Notification.cs.meta │ │ ├── Notifiers.meta │ │ ├── Notifiers │ │ ├── BooleanNotifier.cs │ │ ├── BooleanNotifier.cs.meta │ │ ├── CountNotifier.cs │ │ ├── CountNotifier.cs.meta │ │ ├── MessageBroker.cs │ │ ├── MessageBroker.cs.meta │ │ ├── ScheduledNotifier.cs │ │ └── ScheduledNotifier.cs.meta │ │ ├── Observable.Aggregate.cs │ │ ├── Observable.Aggregate.cs.meta │ │ ├── Observable.Awaiter.cs │ │ ├── Observable.Awaiter.cs.meta │ │ ├── Observable.Binding.cs │ │ ├── Observable.Binding.cs.meta │ │ ├── Observable.Blocking.cs │ │ ├── Observable.Blocking.cs.meta │ │ ├── Observable.Concatenate.cs │ │ ├── Observable.Concatenate.cs.meta │ │ ├── Observable.Concurrency.cs │ │ ├── Observable.Concurrency.cs.meta │ │ ├── Observable.Conversions.cs │ │ ├── Observable.Conversions.cs.meta │ │ ├── Observable.Creation.cs │ │ ├── Observable.Creation.cs.meta │ │ ├── Observable.ErrorHandling.cs │ │ ├── Observable.ErrorHandling.cs.meta │ │ ├── Observable.Events.cs │ │ ├── Observable.Events.cs.meta │ │ ├── Observable.FromAsync.cs │ │ ├── Observable.FromAsync.cs.meta │ │ ├── Observable.Joins.cs │ │ ├── Observable.Joins.cs.meta │ │ ├── Observable.Paging.cs │ │ ├── Observable.Paging.cs.meta │ │ ├── Observable.Time.cs │ │ ├── Observable.Time.cs.meta │ │ ├── Observable.cs │ │ ├── Observable.cs.meta │ │ ├── Observer.cs │ │ ├── Observer.cs.meta │ │ ├── Operators.meta │ │ ├── Operators │ │ ├── Aggregate.cs │ │ ├── Aggregate.cs.meta │ │ ├── Amb.cs │ │ ├── Amb.cs.meta │ │ ├── AsObservable.cs │ │ ├── AsObservable.cs.meta │ │ ├── AsSingleUnitObservable.cs │ │ ├── AsSingleUnitObservable.cs.meta │ │ ├── AsUnitObservable.cs │ │ ├── AsUnitObservable.cs.meta │ │ ├── Buffer.cs │ │ ├── Buffer.cs.meta │ │ ├── Cast.cs │ │ ├── Cast.cs.meta │ │ ├── Catch.cs │ │ ├── Catch.cs.meta │ │ ├── CombineLatest.cs │ │ ├── CombineLatest.cs.meta │ │ ├── Concat.cs │ │ ├── Concat.cs.meta │ │ ├── ContinueWith.cs │ │ ├── ContinueWith.cs.meta │ │ ├── Create.cs │ │ ├── Create.cs.meta │ │ ├── DefaultIfEmpty.cs │ │ ├── DefaultIfEmpty.cs.meta │ │ ├── Defer.cs │ │ ├── Defer.cs.meta │ │ ├── Delay.cs │ │ ├── Delay.cs.meta │ │ ├── DelaySubscription.cs │ │ ├── DelaySubscription.cs.meta │ │ ├── Dematerialize.cs │ │ ├── Dematerialize.cs.meta │ │ ├── Distinct.cs │ │ ├── Distinct.cs.meta │ │ ├── DistinctUntilChanged.cs │ │ ├── DistinctUntilChanged.cs.meta │ │ ├── Do.cs │ │ ├── Do.cs.meta │ │ ├── Empty.cs │ │ ├── Empty.cs.meta │ │ ├── Finally.cs │ │ ├── Finally.cs.meta │ │ ├── First.cs │ │ ├── First.cs.meta │ │ ├── ForEachAsync.cs │ │ ├── ForEachAsync.cs.meta │ │ ├── FromEvent.cs │ │ ├── FromEvent.cs.meta │ │ ├── GroupBy.cs │ │ ├── GroupBy.cs.meta │ │ ├── IgnoreElements.cs │ │ ├── IgnoreElements.cs.meta │ │ ├── Last.cs │ │ ├── Last.cs.meta │ │ ├── Materialize.cs │ │ ├── Materialize.cs.meta │ │ ├── Merge.cs │ │ ├── Merge.cs.meta │ │ ├── Never.cs │ │ ├── Never.cs.meta │ │ ├── ObserveOn.cs │ │ ├── ObserveOn.cs.meta │ │ ├── OfType.cs │ │ ├── OfType.cs.meta │ │ ├── OperatorObservableBase.cs │ │ ├── OperatorObservableBase.cs.meta │ │ ├── OperatorObserverBase.cs │ │ ├── OperatorObserverBase.cs.meta │ │ ├── PairWise.cs │ │ ├── PairWise.cs.meta │ │ ├── Range.cs │ │ ├── Range.cs.meta │ │ ├── RefCount.cs │ │ ├── RefCount.cs.meta │ │ ├── Repeat.cs │ │ ├── Repeat.cs.meta │ │ ├── RepeatSafe.cs │ │ ├── RepeatSafe.cs.meta │ │ ├── Return.cs │ │ ├── Return.cs.meta │ │ ├── Sample.cs │ │ ├── Sample.cs.meta │ │ ├── Scan.cs │ │ ├── Scan.cs.meta │ │ ├── Select.cs │ │ ├── Select.cs.meta │ │ ├── SelectMany.cs │ │ ├── SelectMany.cs.meta │ │ ├── SelectWhere.cs │ │ ├── SelectWhere.cs.meta │ │ ├── Single.cs │ │ ├── Single.cs.meta │ │ ├── Skip.cs │ │ ├── Skip.cs.meta │ │ ├── SkipUntil.cs │ │ ├── SkipUntil.cs.meta │ │ ├── SkipWhile.cs │ │ ├── SkipWhile.cs.meta │ │ ├── Start.cs │ │ ├── Start.cs.meta │ │ ├── StartWith.cs │ │ ├── StartWith.cs.meta │ │ ├── SubscribeOn.cs │ │ ├── SubscribeOn.cs.meta │ │ ├── Switch.cs │ │ ├── Switch.cs.meta │ │ ├── Synchronize.cs │ │ ├── Synchronize.cs.meta │ │ ├── SynchronizedObserver.cs │ │ ├── SynchronizedObserver.cs.meta │ │ ├── Take.cs │ │ ├── Take.cs.meta │ │ ├── TakeLast.cs │ │ ├── TakeLast.cs.meta │ │ ├── TakeUntil.cs │ │ ├── TakeUntil.cs.meta │ │ ├── TakeWhile.cs │ │ ├── TakeWhile.cs.meta │ │ ├── Throttle.cs │ │ ├── Throttle.cs.meta │ │ ├── ThrottleFirst.cs │ │ ├── ThrottleFirst.cs.meta │ │ ├── Throw.cs │ │ ├── Throw.cs.meta │ │ ├── TimeInterval.cs │ │ ├── TimeInterval.cs.meta │ │ ├── Timeout.cs │ │ ├── Timeout.cs.meta │ │ ├── Timer.cs │ │ ├── Timer.cs.meta │ │ ├── Timestamp.cs │ │ ├── Timestamp.cs.meta │ │ ├── ToArray.cs │ │ ├── ToArray.cs.meta │ │ ├── ToList.cs │ │ ├── ToList.cs.meta │ │ ├── ToObservable.cs │ │ ├── ToObservable.cs.meta │ │ ├── Wait.cs │ │ ├── Wait.cs.meta │ │ ├── WhenAll.cs │ │ ├── WhenAll.cs.meta │ │ ├── Where.cs │ │ ├── Where.cs.meta │ │ ├── WhereSelect.cs │ │ ├── WhereSelect.cs.meta │ │ ├── WithLatestFrom.cs │ │ ├── WithLatestFrom.cs.meta │ │ ├── Zip.cs │ │ ├── Zip.cs.meta │ │ ├── ZipLatest.cs │ │ └── ZipLatest.cs.meta │ │ ├── Pair.cs │ │ ├── Pair.cs.meta │ │ ├── Schedulers.meta │ │ ├── Schedulers │ │ ├── CurrentThreadScheduler.cs │ │ ├── CurrentThreadScheduler.cs.meta │ │ ├── IScheduler.cs │ │ ├── IScheduler.cs.meta │ │ ├── ImmediateScheduler.cs │ │ ├── ImmediateScheduler.cs.meta │ │ ├── Scheduler.cs │ │ ├── Scheduler.cs.meta │ │ ├── ThreadPoolScheduler.cs │ │ └── ThreadPoolScheduler.cs.meta │ │ ├── Subjects.meta │ │ ├── Subjects │ │ ├── AsyncSubject.cs │ │ ├── AsyncSubject.cs.meta │ │ ├── BehaviorSubject.cs │ │ ├── BehaviorSubject.cs.meta │ │ ├── ConnectableObservable.cs │ │ ├── ConnectableObservable.cs.meta │ │ ├── ISubject.cs │ │ ├── ISubject.cs.meta │ │ ├── ReplaySubject.cs │ │ ├── ReplaySubject.cs.meta │ │ ├── Subject.cs │ │ ├── Subject.cs.meta │ │ ├── SubjectExtensions.cs │ │ └── SubjectExtensions.cs.meta │ │ ├── System.meta │ │ ├── System │ │ ├── IObservable.cs │ │ ├── IObservable.cs.meta │ │ ├── IObserver.cs │ │ ├── IObserver.cs.meta │ │ ├── IOptimizedObservable.cs │ │ ├── IOptimizedObservable.cs.meta │ │ ├── IProgress.cs │ │ ├── IProgress.cs.meta │ │ ├── Tuple.cs │ │ ├── Tuple.cs.meta │ │ ├── Unit.cs │ │ └── Unit.cs.meta │ │ ├── Tasks.meta │ │ ├── Tasks │ │ ├── TaskObservableExtensions.cs │ │ ├── TaskObservableExtensions.cs.meta │ │ ├── UniTaskObservableExtensions.cs │ │ └── UniTaskObservableExtensions.cs.meta │ │ ├── TimeInterval.cs │ │ ├── TimeInterval.cs.meta │ │ ├── Timestamped.cs │ │ ├── Timestamped.cs.meta │ │ ├── UniRx.asmdef │ │ ├── UniRx.asmdef.meta │ │ ├── UnityEngineBridge.meta │ │ ├── UnityEngineBridge │ │ ├── AsyncOperationExtensions.cs │ │ ├── AsyncOperationExtensions.cs.meta │ │ ├── CancellationToken.cs │ │ ├── CancellationToken.cs.meta │ │ ├── CoroutineAsyncBridge.cs │ │ ├── CoroutineAsyncBridge.cs.meta │ │ ├── Diagnostics.meta │ │ ├── Diagnostics │ │ │ ├── LogEntry.cs │ │ │ ├── LogEntry.cs.meta │ │ │ ├── LogEntryExtensions.cs │ │ │ ├── LogEntryExtensions.cs.meta │ │ │ ├── Logger.cs │ │ │ ├── Logger.cs.meta │ │ │ ├── ObservableDebugExtensions.cs │ │ │ ├── ObservableDebugExtensions.cs.meta │ │ │ ├── ObservableLogger.cs │ │ │ ├── ObservableLogger.cs.meta │ │ │ ├── UnityDebugSink.cs │ │ │ └── UnityDebugSink.cs.meta │ │ ├── FrameInterval.cs │ │ ├── FrameInterval.cs.meta │ │ ├── InspectableReactiveProperty.cs │ │ ├── InspectableReactiveProperty.cs.meta │ │ ├── InspectorDisplayDrawer.cs │ │ ├── InspectorDisplayDrawer.cs.meta │ │ ├── LifetimeDisposableExtensions.cs │ │ ├── LifetimeDisposableExtensions.cs.meta │ │ ├── MainThreadDispatcher.cs │ │ ├── MainThreadDispatcher.cs.meta │ │ ├── MainThreadScheduler.cs │ │ ├── MainThreadScheduler.cs.meta │ │ ├── Observable.Unity.cs │ │ ├── Observable.Unity.cs.meta │ │ ├── ObservableWWW.cs │ │ ├── ObservableWWW.cs.meta │ │ ├── ObserveExtensions.cs │ │ ├── ObserveExtensions.cs.meta │ │ ├── Operators.meta │ │ ├── Operators │ │ │ ├── BatchFrame.cs │ │ │ ├── BatchFrame.cs.meta │ │ │ ├── DelayFrame.cs │ │ │ ├── DelayFrame.cs.meta │ │ │ ├── DelayFrameSubscription.cs │ │ │ ├── DelayFrameSubscription.cs.meta │ │ │ ├── FrameInterval.cs │ │ │ ├── FrameInterval.cs.meta │ │ │ ├── FrameTimeInterval.cs │ │ │ ├── FrameTimeInterval.cs.meta │ │ │ ├── FromCoroutine.cs │ │ │ ├── FromCoroutine.cs.meta │ │ │ ├── RepeatUntil.cs │ │ │ ├── RepeatUntil.cs.meta │ │ │ ├── SampleFrame.cs │ │ │ ├── SampleFrame.cs.meta │ │ │ ├── SubscribeOnMainThread.cs │ │ │ ├── SubscribeOnMainThread.cs.meta │ │ │ ├── ThrottleFirstFrame.cs │ │ │ ├── ThrottleFirstFrame.cs.meta │ │ │ ├── ThrottleFrame.cs │ │ │ ├── ThrottleFrame.cs.meta │ │ │ ├── TimeoutFrame.cs │ │ │ └── TimeoutFrame.cs.meta │ │ ├── ReactiveCollection.cs │ │ ├── ReactiveCollection.cs.meta │ │ ├── ReactiveCommand.cs │ │ ├── ReactiveCommand.cs.meta │ │ ├── ReactiveDictionary.cs │ │ ├── ReactiveDictionary.cs.meta │ │ ├── ReactiveProperty.cs │ │ ├── ReactiveProperty.cs.meta │ │ ├── ReactivePropertyReusablePromise.cs │ │ ├── ReactivePropertyReusablePromise.cs.meta │ │ ├── ScenePlaybackDetector.cs │ │ ├── ScenePlaybackDetector.cs.meta │ │ ├── Toolkit.meta │ │ ├── Toolkit │ │ │ ├── ObjectPool.cs │ │ │ └── ObjectPool.cs.meta │ │ ├── Triggers.meta │ │ ├── Triggers │ │ │ ├── ObservableAnimatorTrigger.cs │ │ │ ├── ObservableAnimatorTrigger.cs.meta │ │ │ ├── ObservableBeginDragTrigger.cs │ │ │ ├── ObservableBeginDragTrigger.cs.meta │ │ │ ├── ObservableCancelTrigger.cs │ │ │ ├── ObservableCancelTrigger.cs.meta │ │ │ ├── ObservableCanvasGroupChangedTrigger.cs │ │ │ ├── ObservableCanvasGroupChangedTrigger.cs.meta │ │ │ ├── ObservableCollision2DTrigger.cs │ │ │ ├── ObservableCollision2DTrigger.cs.meta │ │ │ ├── ObservableCollisionTrigger.cs │ │ │ ├── ObservableCollisionTrigger.cs.meta │ │ │ ├── ObservableDeselectTrigger.cs │ │ │ ├── ObservableDeselectTrigger.cs.meta │ │ │ ├── ObservableDestroyTrigger.cs │ │ │ ├── ObservableDestroyTrigger.cs.meta │ │ │ ├── ObservableDragTrigger.cs │ │ │ ├── ObservableDragTrigger.cs.meta │ │ │ ├── ObservableDropTrigger.cs │ │ │ ├── ObservableDropTrigger.cs.meta │ │ │ ├── ObservableEnableTrigger.cs │ │ │ ├── ObservableEnableTrigger.cs.meta │ │ │ ├── ObservableEndDragTrigger.cs │ │ │ ├── ObservableEndDragTrigger.cs.meta │ │ │ ├── ObservableEventTrigger.cs │ │ │ ├── ObservableEventTrigger.cs.meta │ │ │ ├── ObservableFixedUpdateTrigger.cs │ │ │ ├── ObservableFixedUpdateTrigger.cs.meta │ │ │ ├── ObservableInitializePotentialDragTrigger.cs │ │ │ ├── ObservableInitializePotentialDragTrigger.cs.meta │ │ │ ├── ObservableJointTrigger.cs │ │ │ ├── ObservableJointTrigger.cs.meta │ │ │ ├── ObservableLateUpdateTrigger.cs │ │ │ ├── ObservableLateUpdateTrigger.cs.meta │ │ │ ├── ObservableMouseTrigger.cs │ │ │ ├── ObservableMouseTrigger.cs.meta │ │ │ ├── ObservableMoveTrigger.cs │ │ │ ├── ObservableMoveTrigger.cs.meta │ │ │ ├── ObservableParticleTrigger.cs │ │ │ ├── ObservableParticleTrigger.cs.meta │ │ │ ├── ObservablePointerClickTrigger.cs │ │ │ ├── ObservablePointerClickTrigger.cs.meta │ │ │ ├── ObservablePointerDownTrigger.cs │ │ │ ├── ObservablePointerDownTrigger.cs.meta │ │ │ ├── ObservablePointerEnterTrigger.cs │ │ │ ├── ObservablePointerEnterTrigger.cs.meta │ │ │ ├── ObservablePointerExitTrigger.cs │ │ │ ├── ObservablePointerExitTrigger.cs.meta │ │ │ ├── ObservablePointerUpTrigger.cs │ │ │ ├── ObservablePointerUpTrigger.cs.meta │ │ │ ├── ObservableRectTransformTrigger.cs │ │ │ ├── ObservableRectTransformTrigger.cs.meta │ │ │ ├── ObservableScrollTrigger.cs │ │ │ ├── ObservableScrollTrigger.cs.meta │ │ │ ├── ObservableSelectTrigger.cs │ │ │ ├── ObservableSelectTrigger.cs.meta │ │ │ ├── ObservableStateMachineTrigger.cs │ │ │ ├── ObservableStateMachineTrigger.cs.meta │ │ │ ├── ObservableSubmitTrigger.cs │ │ │ ├── ObservableSubmitTrigger.cs.meta │ │ │ ├── ObservableTransformChangedTrigger.cs │ │ │ ├── ObservableTransformChangedTrigger.cs.meta │ │ │ ├── ObservableTrigger2DTrigger.cs │ │ │ ├── ObservableTrigger2DTrigger.cs.meta │ │ │ ├── ObservableTriggerBase.cs │ │ │ ├── ObservableTriggerBase.cs.meta │ │ │ ├── ObservableTriggerExtensions.Component.cs │ │ │ ├── ObservableTriggerExtensions.Component.cs.meta │ │ │ ├── ObservableTriggerExtensions.cs │ │ │ ├── ObservableTriggerExtensions.cs.meta │ │ │ ├── ObservableTriggerTrigger.cs │ │ │ ├── ObservableTriggerTrigger.cs.meta │ │ │ ├── ObservableUpdateSelectedTrigger.cs │ │ │ ├── ObservableUpdateSelectedTrigger.cs.meta │ │ │ ├── ObservableUpdateTrigger.cs │ │ │ ├── ObservableUpdateTrigger.cs.meta │ │ │ ├── ObservableVisibleTrigger.cs │ │ │ └── ObservableVisibleTrigger.cs.meta │ │ ├── UnityEventExtensions.cs │ │ ├── UnityEventExtensions.cs.meta │ │ ├── UnityGraphicExtensions.cs │ │ ├── UnityGraphicExtensions.cs.meta │ │ ├── UnityUIComponentExtensions.cs │ │ ├── UnityUIComponentExtensions.cs.meta │ │ ├── YieldInstructionCache.cs │ │ └── YieldInstructionCache.cs.meta │ │ ├── UnityWinRTBridge.meta │ │ └── UnityWinRTBridge │ │ ├── Thread.cs │ │ ├── Thread.cs.meta │ │ ├── ThreadPoolScheduler_UnityWinRT.cs │ │ └── ThreadPoolScheduler_UnityWinRT.cs.meta ├── Resources.meta ├── Resources │ ├── TerrainSettings.asset │ ├── TerrainSettings.asset.meta │ ├── TestSettings.asset │ └── TestSettings.asset.meta ├── Scene.unity └── Scene.unity.meta ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── BurstAotSettings_StandaloneWindows64.json ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | 3 | *.cs text eol=lf diff=csharp 4 | *.shader text eol=lf 5 | *.cginc text eol=lf 6 | *.hlsl text eol=lf 7 | *.compute text eol=lf 8 | 9 | *.meta text eol=lf 10 | -------------------------------------------------------------------------------- /.readme-images/HowItWorksInside1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/.readme-images/HowItWorksInside1.gif -------------------------------------------------------------------------------- /.readme-images/HowItWorksInside2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/.readme-images/HowItWorksInside2.gif -------------------------------------------------------------------------------- /.readme-images/HowItWorksInside3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/.readme-images/HowItWorksInside3.gif -------------------------------------------------------------------------------- /.readme-images/PCG.Terrain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/.readme-images/PCG.Terrain.gif -------------------------------------------------------------------------------- /Assets/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a1ea5dcb9665844a96658b825c99d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/LightweightRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1685b9f71cef970448885860866aab95 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292b059f333237949a7f34149a33e232 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Materials/Skybox.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edbc1c15269a4ac4caa220cf4ed07991 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Materials/Terrain.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5a5cf56720fe634cac28f7eaea3e97f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc93b7b8d20579540b9f86c70021a182 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Prefabs/SliderObject.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36a143cb2263aa44f8d9cb508177ff5d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Data/ShaderGraphs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa02da5d1c0d22f4c956c0c3c9476226 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ShaderGraphs/Terain.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6106af2ea8aa94a8f0e7713dc19125 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 4800000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Data/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2388073bb1605740875402c3e192eec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae46afdc097271d40bf970e37bd7d912 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox/Back_Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Data/Textures/Skybox/Back_Tex.png -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox/Down_Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Data/Textures/Skybox/Down_Tex.png -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox/Front_Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Data/Textures/Skybox/Front_Tex.png -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox/Left_Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Data/Textures/Skybox/Left_Tex.png -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox/Right_Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Data/Textures/Skybox/Right_Tex.png -------------------------------------------------------------------------------- /Assets/Data/Textures/Skybox/Up_Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Data/Textures/Skybox/Up_Tex.png -------------------------------------------------------------------------------- /Assets/PCG.Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdfcd4c7969cf0b479d31fda90aa65f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("PCG.Terrain.Tests")] -------------------------------------------------------------------------------- /Assets/PCG.Terrain/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c3d8b86b8177344cb76eac274bf6b94 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5108f25c68b498eb56d53179705c74a 3 | timeCreated: 1549371768 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3875e9a7318141c986cf471d4178e165 3 | timeCreated: 1550487450 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/NativeCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c521d65617fc4a0ca1c9aae483da538a 3 | timeCreated: 1549980171 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/NativeUnit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76093419ad5a4a95abc0602b895ba572 3 | timeCreated: 1549530701 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/Unsafe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 025319a92fa4495abba38d11c41554a8 3 | timeCreated: 1551684306 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/Unsafe/IUnsafeCollections.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PCG.Terrain.Common.Collections.Unsafe 4 | { 5 | public interface IUnsafeCollections : IDisposable 6 | { 7 | bool IsCreated { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/Unsafe/IUnsafeCollections.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c51a3c63761c4e0882d24f6f8863d214 3 | timeCreated: 1550613934 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/Unsafe/MemoryManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5b7fbb0928c4781b47b397da8315b65 3 | timeCreated: 1550576588 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Collections/Unsafe/UnsafeArrayList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6a7715fcd534d9182fdcf00286bd2da 3 | timeCreated: 1550307146 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Enumerators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 076ac7abf0a7431a82fb7ab16a2d21b9 3 | timeCreated: 1549374103 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Enumerators/NativeHashMapEnumerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ffd26801166454e966f18db142a2396 3 | timeCreated: 1549375384 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Enumerators/NativeMultiHashMapEnumerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4c435d99ef344b3b669d175e7b7dd9f 3 | timeCreated: 1549982536 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 996cc238e8814146b4510c13d026f638 3 | timeCreated: 1549372169 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/ComponentSystemBaseExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 806f5993ae5e4d52aea074296efac83a 3 | timeCreated: 1552249063 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/DefaultMemoryManagerExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62ff86cdc38e4576bd2b793736f4812d 3 | timeCreated: 1550613301 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/IJobParallelForGridExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a2f8f8699bf49f59749e2892222beed 3 | timeCreated: 1549372173 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/ListExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ce6a9b9ad5f44a1875b5ed00a845784 3 | timeCreated: 1549372233 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/NativeArrayExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 787df4aab0f84687bbf5f4377d281bb8 3 | timeCreated: 1550091463 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/NativeHashMapExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b9d67156fa743758596a27adc0acf0f 3 | timeCreated: 1549375536 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/NativeMultiHashMapExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ce015f351ff4a659106772d6081cedb 3 | timeCreated: 1549374007 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/SliderExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc0bedb0ed70460fb0a497e8a40d63ce 3 | timeCreated: 1552514504 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/SliderValueExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21a782aec6dd4792addd874e3d98ef2f 3 | timeCreated: 1552514504 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/UnsafeCollectionsExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 563838f165674ff6b105d0b383c557e9 3 | timeCreated: 1550613934 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Extensions/WorldExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f115920127e423fb435d94fb984f499 3 | timeCreated: 1552515046 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Grid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 913d6c5ce5ea4b828786c497e2d5c704 3 | timeCreated: 1549372464 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Grid/Derivative.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d4a1771d077474d90cca54c3d21671f 3 | timeCreated: 1551277223 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Grid/Location.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 526155c8fbe048a6b99d81ff670dad88 3 | timeCreated: 1549364948 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Grid/MeshAbout.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70ad5d3c0abc47f9ac7c023d9a3df904 3 | timeCreated: 1549372584 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Grid/MeshCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa1c434685444950b9e5d727fa925580 3 | timeCreated: 1549372467 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Grid/NativeGradient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d39492d2dd3c46f1995d99d7c3a0de6a 3 | timeCreated: 1551187096 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91cb25bdd0c14760937b15fef0bf965d 3 | timeCreated: 1549365895 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Helpers/HashMapHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 728d2728299445e2bff7668c92aeeebf 3 | timeCreated: 1550490744 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Helpers/NoAllocHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7966928336c4f019421853d39f1f033 3 | timeCreated: 1549365828 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Helpers/UnsafeCollectionsHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d89c3aaac4bb478faf3bc387fc9eba71 3 | timeCreated: 1550502857 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Impostors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b298ef12f3c14e1ab28a1d65cbd73fe3 3 | timeCreated: 1549373002 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Impostors/NativeHashMapDataImpostor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 263c33f0a63742fbac6cd138c674cdb4 3 | timeCreated: 1549375580 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Impostors/NativeHashMapImpostor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1446f254fa24617b3719024411e1a04 3 | timeCreated: 1549375580 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Impostors/NativeMultiHashMapImpostor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9032da19c08e4582b3ea0f439bff4e46 3 | timeCreated: 1549372788 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Jobs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17890adc93d54f61bef1050abded7e68 3 | timeCreated: 1549372091 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Jobs/IJobParallelForGrid.cs: -------------------------------------------------------------------------------- 1 | using Unity.Jobs; 2 | 3 | namespace PCG.Terrain.Common.Jobs 4 | { 5 | public interface IJobParallelForGrid : IJobParallelFor 6 | { 7 | int GridSize { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Jobs/IJobParallelForGrid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b0e49dda31c42838866ac5c2cdc2ddd 3 | timeCreated: 1549372111 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Memory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4cf79f6a50e43f0902763dd894acd5d 3 | timeCreated: 1549378419 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Memory/NoiseDataHandling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a079cdac3f6f497bb22d7af3018cb6e3 3 | timeCreated: 1550496575 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Common/Memory/VerticesDataHandling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15aa7a8c7df2474389541e918281e85f 3 | timeCreated: 1549383889 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Config.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e13ff045bd3a41638ade5be5969fb498 3 | timeCreated: 1549371282 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f2bfc1950244a178002037412eeb20c 3 | timeCreated: 1551789325 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Bootstrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4bd4f38444448dd9490d7f117f6cd35 3 | timeCreated: 1551372217 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 730093772f7a4dac959d4e7d7e497d9a 3 | timeCreated: 1551789388 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/ArchetypeChunkCalculationIndicator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6363e4dc5e43483c9acb148a7d44d355 3 | timeCreated: 1551793086 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/ArchetypeChunkNoiseMetaInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25703b9b0a3642e3a6bae13bcdcb00b7 3 | timeCreated: 1551793086 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/FollowTarget.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Unity.Entities; 3 | 4 | namespace PCG.Terrain.Core.Components 5 | { 6 | [Serializable] 7 | public struct FollowTarget : IComponentData 8 | { 9 | } 10 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/FollowTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3f4e9bd1d8f4517a1745e404243458f 3 | timeCreated: 1551792813 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/Hybrid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35e2b6f59040480198d36f85873c5692 3 | timeCreated: 1551792804 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/Hybrid/FollowTargetProxy.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | using UnityEngine; 3 | 4 | namespace PCG.Terrain.Core.Components.Hybrid 5 | { 6 | [DisallowMultipleComponent] 7 | public class FollowTargetProxy : ComponentDataProxy 8 | { 9 | } 10 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/Hybrid/FollowTargetProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d6944868344399b4791a8ce3394584 3 | timeCreated: 1551350142 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/NoiseCalculation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2484468dce5f445db45971b14a95526f 3 | timeCreated: 1551793086 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Components/VerticesData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 733dcc818c404ec09ba9efea1b791905 3 | timeCreated: 1549295312 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcc5623df5b34b6eb890ada938062995 3 | timeCreated: 1551792995 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/CalculationIndicator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a988dbc6427248c098144adc59ae35c7 3 | timeCreated: 1551793050 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/NoiseMetaInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 072dd507785f4c4ca8657057fbd52c18 3 | timeCreated: 1551792962 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/Offset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abac355d1e9046d496165f9f616b27d6 3 | timeCreated: 1551793317 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/SliderValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ab6c7f62744325bb443bad8ea9020f 3 | timeCreated: 1552514504 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/SliderValueCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a888a58ba94ee9936c4e9a43c2b875 3 | timeCreated: 1552514504 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/SliderValueMessage.cs: -------------------------------------------------------------------------------- 1 | namespace PCG.Terrain.Core.DataTypes 2 | { 3 | public struct SliderValueMessage 4 | { 5 | public float Value; 6 | public SliderValueCode SliderValueCode; 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/DataTypes/SliderValueMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab71c455a544aa7ad2f60721e1cfab5 3 | timeCreated: 1552514504 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb58a5215f964e95988bc4b0e7bd511f 3 | timeCreated: 1551789333 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/BaseSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa7b307dfd874efda07449615167212d 3 | timeCreated: 1549295261 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/CalculateNoise.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e498ec2ab0a4e34bc7feac916e12d31 3 | timeCreated: 1549965696 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/CleanUpSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e14f08862b64b2393c2a22ce82ab0d0 3 | timeCreated: 1552249824 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/CreateSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05cbed024d734562a4908562470f69d5 3 | timeCreated: 1549362636 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/CullingLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c317088361a44250b8635e4c8138e5a1 3 | timeCreated: 1549628754 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/IdentifyChange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c85fd33da4844e0a479d07fa1e3e7cb 3 | timeCreated: 1549528437 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/InitSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 009de48c212849d4a9326851f5f863b4 3 | timeCreated: 1549377025 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/RenderAssignment.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e5f2d9e6e824b37b42d6f448d36f833 3 | timeCreated: 1549968207 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/Systems/TerrainSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd4ec8f75644aa8a2192e51a1b06d0b 3 | timeCreated: 1549469419 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/TerrainController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70737917409e8fb448c736f2b28c0fdf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Core/TerrainSystemManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5590d01473b4bcb8ec8a8c2d0d13bbe 3 | timeCreated: 1552517362 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/PCG.Terrain.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88b11fb01437a2a47bcf532dd10ad7ce 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8cc123962d5f294fbd6052408d69b9a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/PCG.Terrain.Performance.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adae9f0a3bfb78a4db9646a774dd6653 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Pokus.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b76f832558874f508da18a143396a483 3 | timeCreated: 1550668770 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TerrainConstruction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46f1f75456a6477d97dea090346f421d 3 | timeCreated: 1543053252 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 450879cd30b044baa9f6542b746d7362 3 | timeCreated: 1552599422 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8421dd7c14021f946a8130b0d37e59c1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/Base/ITerrainCreator.cs: -------------------------------------------------------------------------------- 1 | namespace PCG.Terrain.Performance.TestCase.Base 2 | { 3 | public interface ITerrainCreator 4 | { 5 | void SetUp(); 6 | void Run(); 7 | void CleanUp(); 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/Base/ITerrainCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9029f6cb044e470cb82aaf30a5eefe13 3 | timeCreated: 1545906034 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/Base/PerformanceCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fad97176bfb4cdaa5894b4739f5646f 3 | timeCreated: 1546427749 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/Base/TerrainCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1217165c6fe847779420377881658ef2 3 | timeCreated: 1545905917 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/CreateSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23be47f8c815456680bde426a7bf395a 3 | timeCreated: 1552655831 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/GeneralCreateSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b27c31ee3f7346568f74800092e5139b 3 | timeCreated: 1554384865 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/InitSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8e08149f564fb6a444f92bd921f75e 3 | timeCreated: 1552655842 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/TestCase/TerrainSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c537b0e7d3164b30ae350cfb22e9f0cf 3 | timeCreated: 1552655853 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d843f74cac67442487645a90f6f7cbfd 3 | timeCreated: 1543053849 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils/BaseTestTerrain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3407ff58660b40f6ada462a66e77bec7 3 | timeCreated: 1543007700 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils/Common.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b3da5653753452c9d638090ca145d8a 3 | timeCreated: 1537647877 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils/ITestSettings.cs: -------------------------------------------------------------------------------- 1 | using Unity.PerformanceTesting; 2 | 3 | namespace PCG.Terrain.Performance.Utils 4 | { 5 | public interface ITestSettings 6 | { 7 | int TotalRuns { get; } 8 | int WarmUpCount { get; } 9 | int ResultsPrecision { get; } 10 | SampleUnit SampleUnit { get; } 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils/ITestSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bd7e22f3d6e43f4da8ea85cbe075a4c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils/ResourcesData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd9357b505ee4b9d8bafe69f1936ed19 3 | timeCreated: 1546426968 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Performance/Utils/TestSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65a89fb3372cd4b4db1f94ff3a11befb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b826746cbd831894dac5725694f7f520 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Settings/ITerrainSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d62307a69254d7087a6226cec1e576b 3 | timeCreated: 1545905044 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Settings/MeshSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5728315213544e829ca60c8a89805130 3 | timeCreated: 1545909066 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Settings/NoiseSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5286a34e2020473ab2781d908c551eb1 3 | timeCreated: 1545905067 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Settings/TerrainSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3502273646ae4953835a7175704e8eba 3 | timeCreated: 1545905445 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/TerrainCreatorType.cs: -------------------------------------------------------------------------------- 1 | namespace PCG.Terrain 2 | { 3 | public enum TerrainCreatorType 4 | { 5 | Batching 6 | } 7 | } -------------------------------------------------------------------------------- /Assets/PCG.Terrain/TerrainCreatorType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7bae833d319cdd4aacef7809ce800e9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1414fb34e7b1aa458c99673377d78e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Tests/HashMapHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b490de19b84e82a6cef97a26f901ec 3 | timeCreated: 1550065440 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Tests/NativeHashMapEnumeratorTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6efea75933f43668e284204ab000da4 3 | timeCreated: 1550049347 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Tests/NativeMultiHashMapEnumeratorTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c4fcb7781e347d3a30998533b581040 3 | timeCreated: 1550065413 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Tests/PCG.Terrain.Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4817024dc03eb14baf87c426b91fc25 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1be9cfa32dd64f4b832c53984a732271 3 | timeCreated: 1549371957 -------------------------------------------------------------------------------- /Assets/PCG.Terrain/Utilities/Noise.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2937ac7146df4e2caddc9bae293ac17b 3 | timeCreated: 1549372535 -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6885766cc59b241458d67d7acaa120f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 166eaf17999096f4fae764ecc8a2baa2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ad0e668d9d1e441946a2133bc31bce 3 | folderAsset: yes 4 | timeCreated: 1507998703 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/README.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1c5c604e6d27cc4d86e81f45c704e11 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66686847ee1fa044bb15dfe473666178 3 | folderAsset: yes 4 | timeCreated: 1507995546 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f67e408a6d0adf4ab29d095ccd8b116 3 | folderAsset: yes 4 | timeCreated: 1507998942 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/ConditionOperator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | public enum ConditionOperator 6 | { 7 | And, 8 | Or 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/ConditionOperator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8da69fd2354ea264bb1c54362ee02938 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawConditionAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d8ad70d0e1e04248b1f5c5d5fb358f4 3 | folderAsset: yes 4 | timeCreated: 1508414568 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawConditionAttributes/DrawConditionAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | public class DrawConditionAttribute : NaughtyAttribute 6 | { 7 | 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c76425e719cd4424d868674bcfb233f2 3 | folderAsset: yes 4 | timeCreated: 1508151410 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/DisableIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dac53a514fd03bb48b3fae8d3d23bf78 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/DrawerAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | public abstract class DrawerAttribute : NaughtyAttribute 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/EnableIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3ef98b2c0ffe1b4c91fbec23d77898e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/LabelAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e58df0ada05db63488ddd96c571d7bc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ReadOnlyAttribute : DrawerAttribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/ReorderableListAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ReorderableListAttribute : DrawerAttribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/ResizableTextAreaAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ResizableTextAreaAttribute : DrawerAttribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/ShowNativePropertyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace NaughtyAttributes 5 | { 6 | [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] 7 | public class ShowNativePropertyAttribute : DrawerAttribute 8 | { 9 | 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/ShowNonSerializedFieldAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ShowNonSerializedFieldAttribute : DrawerAttribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/DrawerAttributes/TagAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad140cd5debdba44aa6db74894a5e913 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/GroupAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86ca4f90dd05bc448959ecd8f44097a7 3 | folderAsset: yes 4 | timeCreated: 1508330803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/MetaAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51ee806b39c5fb343ae7d268404d8c67 3 | folderAsset: yes 4 | timeCreated: 1508497398 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/MetaAttributes/MetaAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | public abstract class MetaAttribute : NaughtyAttribute 6 | { 7 | public int Order { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/NaughtyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | // The base class for all naughty attributes 6 | public class NaughtyAttribute : Attribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/NaughtyAttributes.Core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 776d03a35f1b52c4a9aed9f56d7b4229 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/ValidatorAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a655727c2e629a438ad94f60080b9ea 3 | folderAsset: yes 4 | timeCreated: 1508151410 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Core/ValidatorAttributes/ValidatorAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes 4 | { 5 | public abstract class ValidatorAttribute : NaughtyAttribute 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b76068e69df25a94ab378b0b6829c4f0 3 | folderAsset: yes 4 | timeCreated: 1507995613 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfd420e5bf6a25049b8fcea8b2f48c94 3 | folderAsset: yes 4 | timeCreated: 1508153828 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/FieldDrawerAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public class FieldDrawerAttribute : BaseAttribute 6 | { 7 | public FieldDrawerAttribute(Type targetAttributeType) : base(targetAttributeType) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/IAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public interface IAttribute 6 | { 7 | Type TargetAttributeType { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/MethodDrawerAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public class MethodDrawerAttribute : BaseAttribute 6 | { 7 | public MethodDrawerAttribute(Type targetAttributeType) : base(targetAttributeType) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/PropertyDrawerAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public class PropertyDrawerAttribute : BaseAttribute 6 | { 7 | public PropertyDrawerAttribute(Type targetAttributeType) : base(targetAttributeType) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/PropertyGrouperAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public class PropertyGrouperAttribute : BaseAttribute 6 | { 7 | public PropertyGrouperAttribute(Type targetAttributeType) : base(targetAttributeType) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/PropertyMetaAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public class PropertyMetaAttribute : BaseAttribute 6 | { 7 | public PropertyMetaAttribute(Type targetAttributeType) : base(targetAttributeType) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Attributes/PropertyValidatorAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public class PropertyValidatorAttribute : BaseAttribute 6 | { 7 | public PropertyValidatorAttribute(Type targetAttributeType) : base(targetAttributeType) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3876cb6aacfb99f46803d5e50eacdf2c 3 | folderAsset: yes 4 | timeCreated: 1508230862 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b15ea6695a69d74ab656006617d8d21 3 | folderAsset: yes 4 | timeCreated: 1508230862 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/FieldDrawerDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 943b4c41373856243996247275be2cd8 3 | timeCreated: 1508836344 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/MethodDrawerDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52d15465eb3439f4a9b95963a21d19b7 3 | timeCreated: 1508592495 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/NativePropertyDrawerDbTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b82f5f6bf1fd4314c93624a8bc8835fd 3 | timeCreated: 1510924467 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/PropertyDrawConditionDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b36f5858330c2d140a697f19ba6cc36b 3 | timeCreated: 1508414568 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/PropertyDrawerDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 136a96a904b577244b08be5d5542a77d 3 | timeCreated: 1508241102 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/PropertyGrouperDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fcc5bff99ecd4843b766f23cd585b55 3 | timeCreated: 1508332899 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/PropertyMetaDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fde25cf95f45b50469fcf4ee1e38993c 3 | timeCreated: 1508497401 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/PropertyValidatorDatabaseTemplate.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a21c3d37c1492da4386198388150024c 3 | timeCreated: 1508230862 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Editors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4db73d2276d0e8144a206c5c2cd350de 3 | folderAsset: yes 4 | timeCreated: 1508055750 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/FieldDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79b05858e72c1b0498eca7954843c802 3 | folderAsset: yes 4 | timeCreated: 1508835721 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/FieldDrawers/FieldDrawer.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class FieldDrawer 6 | { 7 | public abstract void DrawField(UnityEngine.Object target, FieldInfo field); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/MethodDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95312994b1f8c746a402669cb1655eb 3 | folderAsset: yes 4 | timeCreated: 1508592494 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/MethodDrawers/MethodDrawer.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class MethodDrawer 6 | { 7 | public abstract void DrawMethod(UnityEngine.Object target, MethodInfo methodInfo); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/NativePropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae67cc6bfa799f147968e9b0371a21fc 3 | folderAsset: yes 4 | timeCreated: 1510924467 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/NativePropertyDrawers/NativePropertyDrawer.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class NativePropertyDrawer 6 | { 7 | public abstract void DrawNativeProperty(UnityEngine.Object target, PropertyInfo property); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/NaughtyAttributes.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f88fb04354076c646a4107a491394033 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyDrawConditions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ed2b7d432f0ad644b1f0752cf65aa9c 3 | folderAsset: yes 4 | timeCreated: 1508414568 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyDrawConditions/HideIfPropertyDrawCondition.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | [PropertyDrawCondition(typeof(HideIfAttribute))] 6 | public class HideIfPropertyDrawCondition : ShowIfPropertyDrawCondition 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyDrawConditions/PropertyDrawCondition.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class PropertyDrawCondition 6 | { 7 | public abstract bool CanDrawProperty(SerializedProperty property); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4327d74fca5deaa4c83c483fe468d274 3 | folderAsset: yes 4 | timeCreated: 1508051576 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyDrawers/DisableIfPropertyDrawer.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | [PropertyDrawer(typeof(DisableIfAttribute))] 6 | public class DisableIfPropertyDrawer : EnableIfPropertyDrawer 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyDrawers/TagPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f915ac324502a0e48990bfe775312665 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyGroupers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35fed6de66b90ad418e2ca247a303b9b 3 | folderAsset: yes 4 | timeCreated: 1508331735 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyGroupers/PropertyGrouper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class PropertyGrouper 6 | { 7 | public abstract void BeginGroup(string label); 8 | 9 | public abstract void EndGroup(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyMetas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 254c9f391295da84fb392b742e7fceae 3 | folderAsset: yes 4 | timeCreated: 1508497398 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyMetas/PropertyMeta.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class PropertyMeta 6 | { 7 | public abstract void ApplyPropertyMeta(SerializedProperty property, MetaAttribute metaAttribute); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyValidators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efd539f7816167541ba63e633f2a9a7c 3 | folderAsset: yes 4 | timeCreated: 1508153828 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/PropertyValidators/PropertyValidator.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace NaughtyAttributes.Editor 4 | { 5 | public abstract class PropertyValidator 6 | { 7 | public abstract void ValidateProperty(SerializedProperty property); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/NaughtyAttributes/Scripts/Editor/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acb4475c71a3fe947a81ced84ab89c6d 3 | folderAsset: yes 4 | timeCreated: 1508062761 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96878fff088f5643a12371262eee0fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95bb3f2e4e6d62c4db226cef269cb175 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/Cameras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c1e7b7ecf26ee94db359826b6f0d3d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/Cameras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71c6e7b8da1d87247a7c20bb1389b107 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/Cameras/Scripts/AbstractTargetFollower.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef268554754975648b9514cc6511e16e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/Cameras/Scripts/AutoCam.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80b71b0a012648241bfd7913efc0d75e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/Cameras/Scripts/PivotBasedCameraRig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a68f593ce94b10a41bb675a639de4c4a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/FirstPersonCharacter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c34e3517d6a69a4bb40043ccbe3de25 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/FirstPersonCharacter/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34f7a2e2bf8b1f5429f388fa69fdcd59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/FirstPersonCharacter/Scripts/FirstPersonController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a05acd8a2ce64c2aafb27de2d3060a07 3 | timeCreated: 1551358380 -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/FirstPersonCharacter/Scripts/MouseLook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4325344685a64de59078c7c95d7c177d 3 | timeCreated: 1551358424 -------------------------------------------------------------------------------- /Assets/Plugins/Standard Assets/Characters/FirstPersonCharacter/Scripts/MovementSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0834a237da6944518b8c7a0a0e139036 3 | timeCreated: 1551361023 -------------------------------------------------------------------------------- /Assets/Plugins/Tayx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fbaa02fd1fc23045826241271c2e6ea 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b771290a9ed1614fbc5a745ef7ba669 3 | folderAsset: yes 4 | timeCreated: 1514034907 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Changelog.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 425066d07b7c1204887be96c53348ac6 3 | labels: 4 | - counter 5 | - fps 6 | - graphy 7 | - tayx 8 | timeCreated: 1515072754 9 | licenseType: Store 10 | TextScriptImporter: 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ac48df14c942a247a9e31f953e82768 3 | folderAsset: yes 4 | timeCreated: 1511635919 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b891f35198da7642a30fd430ae0d619 3 | folderAsset: yes 4 | timeCreated: 1516718193 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67bbd8c5103323b4688fcfa3abe68927 3 | labels: 4 | - font 5 | timeCreated: 1516718196 6 | licenseType: Store 7 | TextScriptImporter: 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/NORTHWEST-B.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/NORTHWEST-B.otf -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Roboto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37f53a7f00580aa4fa7797d9308063e7 3 | folderAsset: yes 4 | timeCreated: 1515073036 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Roboto/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb908df110bf2314d94d245f8a338830 3 | labels: 4 | - font 5 | timeCreated: 1515073036 6 | licenseType: Store 7 | TextScriptImporter: 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/GUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88ea372125bb21f49adbb31579e66715 3 | folderAsset: yes 4 | timeCreated: 1513980359 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/GUI/Graphy.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 663039f397abaa648854c3b8ef8f4256 3 | labels: 4 | - gui 5 | timeCreated: 1513980352 6 | licenseType: Store 7 | NativeFormatImporter: 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c859b3e9d83661640842bbb8989b021a 3 | folderAsset: yes 4 | timeCreated: 1511697723 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3be1e89ca880cc644a2aa20d1854250c 3 | folderAsset: yes 4 | timeCreated: 1511555560 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d78a1478d4edf8a4f894e39e18c9e58d 3 | labels: 4 | - Counter 5 | - Fps 6 | - Graph 7 | - Graphy 8 | - Tayx 9 | timeCreated: 1518800331 10 | licenseType: Store 11 | DefaultImporter: 12 | userData: 13 | assetBundleName: 14 | assetBundleVariant: 15 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a27aee4cb80b7d40b8e12d9eaf9e358 3 | folderAsset: yes 4 | timeCreated: 1519835829 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74e0b5943a65a6a409f3b7693bf9a681 3 | folderAsset: yes 4 | timeCreated: 1520292910 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/Morning_Dew.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/Morning_Dew.mp3 -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3aeb09755cd36d04185472500e79b0d4 3 | folderAsset: yes 4 | timeCreated: 1520294642 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/158140__qubodup__epic-logo-intro-part-2-glass-and-machine_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/158140__qubodup__epic-logo-intro-part-2-glass-and-machine_01.mp3 -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/170229__roachpowder__camera-shutter.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/170229__roachpowder__camera-shutter.aiff -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/171697__nenadsimic__menu-selection-click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/171697__nenadsimic__menu-selection-click.wav -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/269180__mickleness__chat-message-1-incoming-message_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/269180__mickleness__chat-message-1-incoming-message_01.mp3 -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/349501__cabled-mess__triangle-open-01_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Audio/SFX/349501__cabled-mess__triangle-open-01_01.mp3 -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Color Picker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b6bd60af0c51994abf967a6f278a6eb 3 | folderAsset: yes 4 | timeCreated: 1520264514 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Color Picker/CUIColorPicker.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b51b1107593c0d94288ccdaa607689ea 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Color Picker/G_CUIColorPicker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d67fe8cf2682634429a82e70367b1350 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Color Picker/Transparency-Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Color Picker/Transparency-Texture.png -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Customization Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a12786173bd6c2c4689837869ec1c095 3 | folderAsset: yes 4 | timeCreated: 1520274960 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Customize Graphy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c578a8ac126810458be2979ceb891a4 3 | timeCreated: 1519835837 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d744d252fabe64fa22339793a84bd7 3 | folderAsset: yes 4 | timeCreated: 1520276022 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scene/Prefab/[Graphy] - Customizer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 831d26d5db4d8b344996422cf3bc5a0a 3 | timeCreated: 1520276025 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 742a1665c5331b748a4f66723f9c5e7c 3 | folderAsset: yes 4 | timeCreated: 1511555554 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Advanced.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ac38d39b5dd9f442a088b7284b58236 3 | folderAsset: yes 4 | timeCreated: 1513377123 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2523395741efc1c48822a27d9fcb57d2 3 | folderAsset: yes 4 | timeCreated: 1513377094 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eda2a9e69ce988143894f7442b8cfc30 3 | folderAsset: yes 4 | timeCreated: 1513764375 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Fps.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3232b12a3422d1a4d8ff3eaa000c43ae 3 | folderAsset: yes 4 | timeCreated: 1513377102 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aca40e3cb2846db40ad6d970f36d4a7f 3 | folderAsset: yes 4 | timeCreated: 1516716444 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Ram.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 839df5cf44c5c6f43b1a846e73f3e498 3 | folderAsset: yes 4 | timeCreated: 1513377097 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d11ec87c6db49d40af874a49810f377 3 | folderAsset: yes 4 | timeCreated: 1513377085 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6a45022ef0b3654a9d036efed540b32 3 | folderAsset: yes 4 | timeCreated: 1514998503 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 931159fac06489e4aac42c90c50e8598 3 | folderAsset: yes 4 | timeCreated: 1512413960 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d09d01ed33a8e69449fa491b5cded29f 3 | folderAsset: yes 4 | timeCreated: 1511697726 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Shaders/GraphMobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96316acf0f537ae449a9a641fa00eefe 3 | timeCreated: 1511697757 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Shaders/GraphStandard.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc65170c051b0724287a7f1636d87573 3 | timeCreated: 1511697757 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8841cf313b29e834f9f40349f9d1a088 3 | folderAsset: yes 4 | timeCreated: 1511883622 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_Dark.png -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_White.png -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_Dark.png -------------------------------------------------------------------------------- /Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikMoczi/Unity.ProceduralContentGeneration-Terrain/c1ddb8792dc5cb9f637efbf9e5cd276e36db502f/Assets/Plugins/Tayx/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_White.png -------------------------------------------------------------------------------- /Assets/Plugins/UniRx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c688fa81dfbacc04fbb8713b9e2639a5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f07fe469821d8a54a9ea2b0b9c7b5ae8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf3770fc51ac89f45987dbde37ae81bd 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95140e49213aa6f49a470a81873b87c0 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample11_Logger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5aa72c61e2548a4bac4d65f93c63bf1 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample12Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a4aea8df1ad11c47a1db84432dd30f8 3 | timeCreated: 1455373896 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18e34490a83a27e44adf93dd4ffd1f22 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b879645f640b02b43a8e78e210c1da1f 3 | timeCreated: 1455373896 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 022ecfa555367154c8cf87d61465f7e2 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/Sample13_ToDoItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 173222196f3e1f0448b383f260df7d44 3 | timeCreated: 1455373909 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/UniRx.Examples.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UniRx.Examples", 3 | "references": [ 4 | "UniRx", 5 | "UniRx.Async" 6 | ], 7 | "optionalUnityReferences": [ 8 | "TestAssemblies" 9 | ], 10 | "includePlatforms": [], 11 | "excludePlatforms": [], 12 | "allowUnsafeCode": false 13 | } -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Examples/UniRx.Examples.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71799519d12379b49b6b53aea974bea5 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/ReadMe.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52d665ea30c2a3a49a6fa4b3b5a0349a 3 | timeCreated: 1455373909 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 527ef91a8e4b2b2449bdef4841e36b6c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3337809a129d13348b90ad717b1d2038 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/AsyncUnit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f95ac245430d304bb5128d13b6becc8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CancellationTokenEqualityComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d739f510b125b74fa7290ac4335e46e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CancellationTokenExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be7209f04146bd45ac5ee775a5f7c26 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CancellationTokenSourceExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22d85d07f1e70ab42a7a4c25bd65e661 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CompilerServices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f84d202050357a440a2fc61ae667d186 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CompilerServices/AsyncMethodBuilderAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ce354d37b10454e8376062f7cbe57a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CompilerServices/AsyncUniTaskMethodBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68d72a45afdec574ebc26e7de2c38330 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e891aaac17b933a47a9d7fa3b8e1226f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/CompilerServices/MoveNextRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98649642833cabf44a9dc060ce4c84a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/DiagnosticsExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f80fb1c9ed4c99447be1b0a47a8d980b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56471ddacdc72e94793dae277d3b184d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Editor/SplitterGUILayout.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40ef2e46f900131419e869398a8d3c9d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Editor/UniRx.Async.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UniRx.Async.Editor", 3 | "references": [ 4 | "UniRx.Async" 5 | ], 6 | "optionalUnityReferences": [], 7 | "includePlatforms": [ 8 | "Editor" 9 | ], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": false 12 | } -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Editor/UniRx.Async.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4129704b5a1a13841ba16f230bf24a57 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Editor/UniTaskTrackerTreeView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52e2d973a2156674e8c1c9433ed031f7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Editor/UniTaskTrackerWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bee3e3860e37484aa3b861bf76d129f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/EnumerableAsyncExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff50260d74bd54c4b92cf99895549445 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/EnumeratorAsyncExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc661232f11e4a741af54ba1c175d5ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/IAwaiter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e4d023d8404ab742b5e808c98097c3c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cfc006622d4fca40b3e287cfcc915d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/ArrayPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f83ebad81fb89fb4882331616ca6d248 3 | timeCreated: 1532361008 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/ArrayUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23146a82ec99f2542a87971c8d3d7988 3 | timeCreated: 1532361007 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/CancellationTokenHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53d1b536fc7e2d4458294ee2c7d9b743 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/ContinuationQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f66c32454e50f2546b17deadc80a4c77 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/Error.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f39f495294d4604b8082202faf98554 3 | timeCreated: 1532361007 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/Hack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d5a9a3e1f0f069478969f752fde29a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/LazyPromise.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe7a4187b7f89f84582fd1e466a7f27e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/MinimumQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d63add489ccc99498114d79702b904d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/PlayerLoopRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 340c6d420bb4f484aa8683415ea92571 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/PromiseHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 173f9b763911bf847b7dfbf31ee87fc4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/ReusablePromise.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8cfc99b5928c0242919aac2121b02bb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/TaskTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a203c73eb4ccdbb44bddfd82d38fdda9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Internal/WeakDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c78563864409714593226af59bcb6f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/PlayerLoopHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15fb5b85042f19640b973ce651795aca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Progress.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3377e2ae934ed54fb8fd5388e2d9eb9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42ee190964594ea4bbd749667b907ce9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncAnimatorTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae912c37ac7f4cd42b25f22452435103 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncAwakeTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2840a2586894741a0ae211b8fd669b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncBeginDragTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 171fd2191eb22af4fbd92b51815ca757 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncCancelTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 291886b6e5f2d044a85b2a4dedcaca97 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncCanvasGroupChangedTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eddba832648f83046a320ffcacfc771d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncCollision2DTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbeb63f69bedec44f8003730887f914b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncCollisionTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72db4a683be8f6a428823502599014a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncDeselectTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30faa9be5bd883e488bdc52f4825c4da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncDestroyTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4afdcb1cbadf954ba8b1cf465429e17 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncDragTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52242547ba60ea74f8a2e3bbab5fcdfa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncDropTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d65fd5e4be25f41a927eca25b0acf7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncEnableDisableTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0bf9142b63b4cb43b693f0b83b3dbe7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncEndDragTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8298d43de348acc4aa4e7dbf30472dbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncEventTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89997820797ad6d43b17971a8bd0d8fe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncFixedUpdateTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74b906c4294aaa4e900f6e7f8b36df6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncInitializePotentialDragTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae0733adc239a324f8b934ffb119abd8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncJointTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04dc74e7b2368094f9153921804a1fb7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncLateUpdateTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4fb2b4c09cb4ec4a82b934f2038eb36 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncMouseTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57ad5120e9c4d424484c963791467272 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncMoveTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1699926e875c24d4aa34bc8817f96f0e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncParticleTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27d3f2efd47fb1d4fb2e9130f97ea8aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncPointerClickTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f8865abf2db3d248b3730cdb18bb8b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncPointerDownTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c5132395605eaa498a7efedee5acdd7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncPointerEnterTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18887d476d48533498efd14224a2f651 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncPointerExitTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e3ed09876a11a84794795809ebee243 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncPointerUpTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a0493ea32f81314cbbaf2b635ba3167 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncRectTransformTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfe3470221c66c84397c0783c62b24e7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncScrollTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c751e9d3deb97d4d8691a8a583c2afd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncSelectTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc2347251a4fc5498a03f0c17382920 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncStartTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4fd0f75e54ec3d4fbcb7fc65b11646b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncSubmitTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97e85abc2d7ec0c44adfbe5ee971aad3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncTransformChangedTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 053f983cd760f5e4394be8fd657243c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncTrigger2DTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 102f8eba36bc2a54e878e67aca9686e5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncTriggerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c0c2bcee832c6641b25949c412f020f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncTriggerExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59b61dbea1562a84fb7a38ae0a0a0f88 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncTriggerTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46bbbbaa910762c4786906e10b6b7b8e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncUpdateSelectedTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba5b0a4234e164e41b85f10b709d72e9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncUpdateTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6053bbe25af0d6439712f7c5fc4afc7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/Triggers/AsyncVisibleTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57ebfef2a87c49c46ad6454db136f3ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniRx.Async.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UniRx.Async", 3 | "references": [], 4 | "optionalUnityReferences": [], 5 | "includePlatforms": [], 6 | "excludePlatforms": [], 7 | "allowUnsafeCode": false 8 | } -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniRx.Async.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f51ebe6a0ceec4240a699833d6309b23 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.Bridge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd6beac8e0ebd264e9ba246c39429c72 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.Delay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecff7972251de0848b2c0fa89bbd3489 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.Factory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e12b66d6b9bd7845b04a594cbe386b4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.Run.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8473162fc285a5f44bcca90f7da073e7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.Threading.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4132ea600454134439fa2c7eb931b5e6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.WaitUntil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87c9c533491903a4288536b5ac173db8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.WhenAll.Generated.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5110117231c8a6d4095fd0cbd3f4c142 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.WhenAll.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 355997a305ba64248822eec34998a1a0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.WhenAny.Generated.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13d604ac281570c4eac9962429f19ca9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.WhenAny.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c32578978c37eaf41bdd90e1b034637d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8947adf23181ff04db73829df217ca94 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTaskCompletionSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed03524d09e7eb24a9fb9137198feb84 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTaskExtensions.Shorthand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b4ff020f73dc6d4b8ebd4760d61fb43 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTaskExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05460c617dae1e440861a7438535389f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTaskScheduler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6cad69921702d5488d96b5ef30df1b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UniTaskVoid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f28cd922179634d863011548f89ae7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UnityAsyncExtensions.Jobs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30979a768fbd4b94f8694eee8a305c99 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UnityAsyncExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cc7fd65dd1433e419be4764aeb51391 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UnityAsyncExtensions.uGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6804799fba2376d4099561d176101aff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Async/UnityEqualityComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa41dc096a805641ae7f58112ddb3cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Asynchronous.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e04c63ac85c918041a47ec23525406b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d549cbc444b2045b7e6b0019a58f21 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 958f291bb8f434740a6d2c08ad5182a0 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace UniRx 6 | { 7 | public interface ICancelable : IDisposable 8 | { 9 | bool IsDisposed { get; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5cd5b0b304c78345a49757b1f6f8ba8 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/EventPattern.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4b797bfea1999a499309068b7d7a97e 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34dae5f745ad13e468f2792b8da87189 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23dbd656cfe9c5e47b02c3c263e476aa 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbafd8a41f556ec40b4bbd46fca2e85c 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 889dc2f3c5f44d24a98a2c25510b4346 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7956b408e24dc5a4884fe4f5a3d7c858 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45457ee4a77967347828238b7a52b851 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notification.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 169d02559aa6b3e459fbae10f2acecd8 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ed802c900c3b0545ad3834b1e5bdfe5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ee30c0abdddd7241acbe24df0637678 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 503af1c1dc279164e83011be5110633e 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dc5e3c48d083d4418ab67287f050267 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82339dddb2a9f944785f1555b83d667c 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec3ea3f22d061964c8f06eb9ea78ec42 3 | timeCreated: 1475137543 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Binding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb11a562e64264645b76ad3a8d15d966 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a05ec8aabbdba24388b7b2ae6c4a474 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18c56bbfaaeedf445874f4246d42b509 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31d38ad13dc4644180647afc28c6045 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e32bd7bbf28014b4ab2873cc8de3dea9 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Creation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e63036d2dba75f64382beed512fd086c 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40cab35efe24e6448ac8455bc7a4eb9 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Events.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e591aafff0492c94590cf9702f6c408f 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 601f5bb7bb302a14cb46df717729b8c7 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Joins.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace UniRx 6 | { 7 | public static partial class Observable 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Joins.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd92425c6c6dec24e9e52677cbc36aa0 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Paging.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4c9428bf00006d408fcfe4c514ee798 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.Time.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7da89fcf95f5c364ca62bbb874005d32 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2dd1c80d4559fd4ca9ef62f20d031ab 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Observer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d25c3f6fa1d334e89c384393252b8a 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af1450b6c38dbe2469be7cdfc75ae8d5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f777fc54ecf275349a3f007e760705b3 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Amb.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad1a22922a735ee479baf0e179648532 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e4851fd48b2b42469d71b311254877b 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 236f5f407bf92c949844fcaf450af450 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4137aec9640d3ea41a740d677026aa8c 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Cast.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70ae559c9b927742acbff91d50b3b22 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Catch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 404a684db151ca34f8258c6fb373db8d 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64910ffa78510ee48b3a395ee5b2cfe1 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Concat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 740c2691a7e434f439abfdcac75ea809 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bea59b3eb246d244a99183eeb7f3bad4 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Create.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cae9e62bf5eb3dc4e9d93cf6ff606052 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 551075cda284fbc489824d153743b1e6 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Defer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15ca418b98836d943864b1e8b82f6658 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Delay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2af9c507ce062994a904e4b5565b49c0 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80682be7e41afb44581208534f226d38 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 376a7ed430bff5c4b860af4d23ab6b79 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Do.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f99ae8870195e34b8618451a95818e0 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Empty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e9a7050a289d3a4aa17cba89e085135 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Finally.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ce919d8f2acf2b47a932e850e399d3a 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/First.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e3093220aeb1d54faa3fca9fe0af6c0 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b66ecd2e5290bc4eb8c78a1ccc2d009 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05fcc5083e94e704ca8f059e4e535ffa 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7345fc4a6df05ca47ab89ec819bccde6 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6c8ca210619da74b92cbdb3e8c58127 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Last.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 696780c8759162d4b996683ec13d7e0b 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09d3ba9e6d5fe4643bbf0df943652908 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Merge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94158fab525468d4e896a62f633257e6 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Never.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5db8d5c73883214abaf3715002da256 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39df784f492c7404286d05b09a840705 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/OfType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 981fd4bf7704404459a0deed254a03e5 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f66e4871304e6e74d8548d597457e53c 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Range.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2249fbe589c8d3042ac201c1ab4be76f 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17a77b422aa699d4d8cfbf6de804d238 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63930706f2ea6e847866fc6d914b0d2e 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6458fa5124443dc4bb95ad3d0b743934 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Return.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25648117feeec6043bd39468bfab62b7 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Sample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 414e918f6a4dfc549b2a8c916a6325e1 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Scan.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 461fecd0ef4d48c4d95aae68c2ca2c1c 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Select.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 997e36ad7b02b804ea1f03d05e60bed5 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6496e8557f6066e4380c32935b6f37c3 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a7561d10967d6b4d9c2a67ffc3b9d85 3 | timeCreated: 1468748731 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Single.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a50aee929f403f4ea076fc11f71fc53 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Skip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ffcb45c02e14e94bb37c6513b04bb7c 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52314487e375f3d44a49bc5ceb90adab 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc7a1e818d05654694d51e883739cca 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Start.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b99cac67f8c387439619e01a480c465 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05df6719453543e458dc3e0d29ac7fa8 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bff34f363b1797c4396815b5b3a4be1c 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Switch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e16cdc638ec3bf41bbd380b75991734 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31ddcb8477b384b4c9867568f6dc8359 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Take.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5275fc8bb6611984781d8ccd56b9b572 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ea2ac59577a3214f9fb66ccc62f2ffd 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 163e3eab299b735418c94e634fecd811 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f2da76023d9734ebb4ed1883fda2bc 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc296a61927394b4b908b385087f23d0 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b6a6efbab897b41a055d830a4d9755 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Throw.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e5623719e9b1f1418aa67a63abed4cc 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 065e40ebd4bd4a848b58a7a90dac881d 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a22cd4a86f62fc64384dddb043530703 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6be220be1da39e14ea87b366c149953e 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9ec806fec477b243a812e7f609a4453 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d1f7c869353b542af469b0e3fae89a 3 | timeCreated: 1455373898 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cee1b9300a644c9458346c1f80f64197 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cd3ae084c8ca754f9aceca2e18c3af9 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Wait.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea55c5647aa075b4f894dd37abf5e469 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0af8ada83db8f8a408ee6e9aa994fbbd 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Where.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a035699dbe9572548afa47c460bad078 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7453a184d42aa34c854977496f381b9 3 | timeCreated: 1468743755 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb0bc7125d343ed45bb7e36ff1a53362 3 | timeCreated: 1455373902 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/Zip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e92e25f9bb221d478d4af5bcd8b8a2c 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f84ea50040d682c43811d1d98ae7fec8 3 | timeCreated: 1455373908 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Pair.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7947c520dfd9de94bb381e45dc105752 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 015ff9d3e7193f1418730cfc7aeccfdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7409b202c20d3894b9677c8f2a27f3aa 3 | timeCreated: 1455373899 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfeb53a7ea29f714798ba6bb3bd70ba4 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e417fd494d6dec546aedc74d98464956 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 137cd44250b484d4ba2390d510f8423f 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9dbcd28e4f3965408744e0ee03b7bc8 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5fdc90caca9cbe4b9cd9c3fae81e7f6 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c785309450c4cc4b9f7d1af9db4a79d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IObservable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9703f7aad3c6b334badd37c1b41d0d8f 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IObserver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fc7a9cec9d3b644da7dbcf18ea16270 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/IProgress.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a38a024b6babf8d48b7e32f2f8fb8686 3 | timeCreated: 1455373900 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/Tuple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be811500a5640704b92de622c9202d48 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/System/Unit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14f6907c0ae17e64c8fc34f08c3038a4 3 | timeCreated: 1455373897 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf7465bbbc1e9304b9a12e497f43ce92 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Tasks/UniTaskObservableExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1ca394e8fa201840afc3d7af2917014 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/TimeInterval.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd48622e783cadc47af9a6b456ac8438 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/Timestamped.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1d908b82d0e2b4489d3351a484e5eae 3 | timeCreated: 1455373901 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UniRx.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UniRx", 3 | "references": [ 4 | "UniRx.Async" 5 | ], 6 | "optionalUnityReferences": [], 7 | "includePlatforms": [], 8 | "excludePlatforms": [], 9 | "allowUnsafeCode": false 10 | } -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UniRx.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 560b04d1a97f54a4e82edc0cbbb69285 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7084110e25405c740924064052b568bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc9babbb5fa09554ab10e26013cd7855 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e40387386206a2f4da71e2e7019d8c4a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1820efeb28c5cec439eb2fa439c32ad2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0865694b7863c1042aa8e9e3676dc069 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/UniRx/Scripts/UnityWinRTBridge.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33f323bbcd7dbe49a68f356826ed512 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 003bf9ba52f84aa49a6ea275d15a6ce5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/TerrainSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd4718999dcc4684fab07df4a251f055 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/TestSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb3c839d1c7404b41ba1447686579fa1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d10e4e4cf89f391469e3e8c4dd1e7d85 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "m_Enabled": true, 4 | "m_EditorHideFlags": 0, 5 | "m_Name": "", 6 | "m_EditorClassIdentifier": "", 7 | "DisableOptimisations": false, 8 | "DisableSafetyChecks": true, 9 | "DisableBurstCompilation": false 10 | } 11 | } -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows64.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "m_Enabled": true, 4 | "m_EditorHideFlags": 0, 5 | "m_Name": "", 6 | "m_EditorClassIdentifier": "", 7 | "DisableOptimisations": false, 8 | "DisableSafetyChecks": true, 9 | "DisableBurstCompilation": false 10 | } 11 | } -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scene.unity 10 | guid: d10e4e4cf89f391469e3e8c4dd1e7d85 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.1.0b5 2 | m_EditorVersionWithRevision: 2019.1.0b5 (9899a5bd7e43) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } --------------------------------------------------------------------------------