├── .github └── workflows │ └── main.yml ├── .gitignore ├── AssetBundles ├── main_assets │ ├── Android │ │ ├── 1.0.0 │ │ │ ├── main_assets.json │ │ │ ├── nestedprefab │ │ │ ├── nestedprefab.manifest │ │ │ ├── texturename │ │ │ ├── texturename.manifest │ │ │ ├── texturename1 │ │ │ ├── texturename1.manifest │ │ │ ├── texturename2 │ │ │ ├── texturename2.manifest │ │ │ ├── updatabletex │ │ │ └── updatabletex.manifest │ │ ├── 1.0.1 │ │ │ ├── main_assets.json │ │ │ ├── nestedprefab │ │ │ ├── nestedprefab.manifest │ │ │ ├── texturename │ │ │ ├── texturename.manifest │ │ │ ├── texturename1 │ │ │ ├── texturename1.manifest │ │ │ ├── texturename2 │ │ │ ├── texturename2.manifest │ │ │ ├── updatabletex │ │ │ └── updatabletex.manifest │ │ ├── Android │ │ ├── Android.manifest │ │ ├── nestedprefab │ │ ├── nestedprefab.manifest │ │ ├── texturename │ │ ├── texturename.manifest │ │ ├── texturename1 │ │ ├── texturename1.manifest │ │ ├── texturename2 │ │ ├── texturename2.manifest │ │ ├── updatabletex │ │ └── updatabletex.manifest │ ├── OSX │ │ ├── 1.0.0 │ │ │ ├── main_assets.json │ │ │ ├── nestedprefab │ │ │ ├── nestedprefab.manifest │ │ │ ├── texturename │ │ │ ├── texturename.manifest │ │ │ ├── texturename1 │ │ │ ├── texturename1.manifest │ │ │ ├── texturename2 │ │ │ ├── texturename2.manifest │ │ │ ├── updatabletex │ │ │ └── updatabletex.manifest │ │ ├── 1.0.1 │ │ │ ├── main_assets.json │ │ │ ├── nestedprefab │ │ │ ├── nestedprefab.manifest │ │ │ ├── texturename │ │ │ ├── texturename.manifest │ │ │ ├── texturename1 │ │ │ ├── texturename1.manifest │ │ │ ├── texturename2 │ │ │ ├── texturename2.manifest │ │ │ ├── updatabletex │ │ │ └── updatabletex.manifest │ │ ├── OSX │ │ ├── OSX.manifest │ │ ├── nestedprefab │ │ ├── nestedprefab.manifest │ │ ├── texturename │ │ ├── texturename.manifest │ │ ├── texturename1 │ │ ├── texturename1.manifest │ │ ├── texturename2 │ │ ├── texturename2.manifest │ │ ├── updatabletex │ │ └── updatabletex.manifest │ ├── Windows │ │ ├── 1.0.0 │ │ │ ├── main_assets.json │ │ │ ├── nestedprefab │ │ │ ├── nestedprefab.manifest │ │ │ ├── texturename │ │ │ ├── texturename.manifest │ │ │ ├── texturename1 │ │ │ ├── texturename1.manifest │ │ │ ├── texturename2 │ │ │ ├── texturename2.manifest │ │ │ ├── updatabletex │ │ │ └── updatabletex.manifest │ │ ├── Windows │ │ ├── Windows.manifest │ │ ├── nestedprefab │ │ ├── nestedprefab.manifest │ │ ├── texturename │ │ ├── texturename.manifest │ │ ├── texturename1 │ │ ├── texturename1.manifest │ │ ├── texturename2 │ │ ├── texturename2.manifest │ │ ├── updatabletex │ │ └── updatabletex.manifest │ └── iOS │ │ ├── 1.0.0 │ │ ├── main_assets.json │ │ ├── nestedprefab │ │ ├── nestedprefab.manifest │ │ ├── texturename │ │ ├── texturename.manifest │ │ ├── texturename1 │ │ ├── texturename1.manifest │ │ ├── texturename2 │ │ ├── texturename2.manifest │ │ ├── updatabletex │ │ └── updatabletex.manifest │ │ ├── 1.0.1 │ │ ├── main_assets.json │ │ ├── nestedprefab │ │ ├── nestedprefab.manifest │ │ ├── texturename │ │ ├── texturename.manifest │ │ ├── texturename1 │ │ ├── texturename1.manifest │ │ ├── texturename2 │ │ ├── texturename2.manifest │ │ ├── updatabletex │ │ └── updatabletex.manifest │ │ ├── iOS │ │ ├── iOS.manifest │ │ ├── nestedprefab │ │ ├── nestedprefab.manifest │ │ ├── texturename │ │ ├── texturename.manifest │ │ ├── texturename1 │ │ ├── texturename1.manifest │ │ ├── texturename2 │ │ ├── texturename2.manifest │ │ ├── updatabletex │ │ └── updatabletex.manifest ├── preload │ ├── sample.preloadList.json │ └── sample.preloadList2.json ├── scenes │ ├── Android │ │ ├── 1.0.0 │ │ │ ├── bundle_0 │ │ │ └── scenes.json │ │ ├── Android │ │ ├── Android.manifest │ │ ├── bundle_0 │ │ └── bundle_0.manifest │ ├── OSX │ │ ├── 1.0.0 │ │ │ ├── bundle_0 │ │ │ └── scenes.json │ │ ├── OSX │ │ ├── OSX.manifest │ │ ├── bundle_0 │ │ └── bundle_0.manifest │ └── iOS │ │ ├── 1.0.0 │ │ ├── bundle_0 │ │ └── scenes.json │ │ ├── bundle_0 │ │ ├── bundle_0.manifest │ │ ├── iOS │ │ └── iOS.manifest └── sub_assets │ ├── Android │ ├── 1.0.0 │ │ ├── sample │ │ ├── sample.manifest │ │ └── sub_assets.json │ ├── 2.0.0 │ │ ├── sample │ │ ├── sample.manifest │ │ ├── sample2 │ │ ├── sample2.manifest │ │ └── sub_assets.json │ ├── Android │ ├── Android.manifest │ ├── sample │ ├── sample.manifest │ ├── sample2 │ └── sample2.manifest │ ├── OSX │ ├── 1.0.0 │ │ ├── sample │ │ ├── sample.manifest │ │ └── sub_assets.json │ ├── 2.0.0 │ │ ├── sample │ │ ├── sample.manifest │ │ ├── sample2 │ │ ├── sample2.manifest │ │ └── sub_assets.json │ ├── OSX │ ├── OSX.manifest │ ├── sample │ ├── sample.manifest │ ├── sample2 │ └── sample2.manifest │ ├── Windows │ ├── 1.0.0 │ │ ├── sample │ │ ├── sample.manifest │ │ └── sub_assets.json │ ├── 2.0.0 │ │ ├── sample │ │ ├── sample.manifest │ │ ├── sample2 │ │ ├── sample2.manifest │ │ └── sub_assets.json │ ├── Windows │ ├── Windows.manifest │ ├── sample │ ├── sample.manifest │ ├── sample2 │ └── sample2.manifest │ └── iOS │ ├── 1.0.0 │ ├── sample │ ├── sample.manifest │ └── sub_assets.json │ ├── 2.0.0 │ ├── sample │ ├── sample.manifest │ ├── sample2 │ ├── sample2.manifest │ └── sub_assets.json │ ├── iOS │ ├── iOS.manifest │ ├── sample │ ├── sample.manifest │ ├── sample2 │ └── sample2.manifest ├── Assets ├── Autoya.meta ├── Autoya │ ├── AssetBundle.meta │ ├── AssetBundle │ │ ├── AssetBundleList.cs │ │ ├── AssetBundleList.cs.meta │ │ ├── AssetBundleListDownloader.cs │ │ ├── AssetBundleListDownloader.cs.meta │ │ ├── AssetBundleLoader.cs │ │ ├── AssetBundleLoader.cs.meta │ │ ├── AssetBundlePreloader.cs │ │ ├── AssetBundlePreloader.cs.meta │ │ ├── README.md │ │ └── README.md.meta │ ├── AutoyaDependencies.cs │ ├── AutoyaDependencies.cs.meta │ ├── Backyard.meta │ ├── Backyard │ │ ├── AppManifestImplementation.cs │ │ ├── AppManifestImplementation.cs.meta │ │ ├── AssetBundlesImplementation.cs │ │ ├── AssetBundlesImplementation.cs.meta │ │ ├── AuthenticatedHTTPImplementation.cs │ │ ├── AuthenticatedHTTPImplementation.cs.meta │ │ ├── AuthenticationImplementation.cs │ │ ├── AuthenticationImplementation.cs.meta │ │ ├── AutoyaConstructor.cs │ │ ├── AutoyaConstructor.cs.meta │ │ ├── AutoyaEntryPoint.cs │ │ ├── AutoyaEntryPoint.cs.meta │ │ ├── AutoyaMainthreadDispatcher.cs │ │ ├── AutoyaMainthreadDispatcher.cs.meta │ │ ├── BackyardSettings.cs │ │ ├── BackyardSettings.cs.meta │ │ ├── EndPointSelectorImplementation.cs │ │ ├── EndPointSelectorImplementation.cs.meta │ │ ├── IUpdater.cs │ │ ├── IUpdater.cs.meta │ │ ├── InformationImplementation.cs │ │ ├── InformationImplementation.cs.meta │ │ ├── MaintenanceHandler.cs │ │ ├── MaintenanceHandler.cs.meta │ │ ├── NotificationCenter.cs │ │ ├── NotificationCenter.cs.meta │ │ ├── OverridePoints.cs │ │ ├── OverridePoints.cs.meta │ │ ├── PersistImplementation.cs │ │ ├── PersistImplementation.cs.meta │ │ ├── PurchaseImplementation.cs │ │ ├── PurchaseImplementation.cs.meta │ │ ├── README.md │ │ └── README.md.meta │ ├── Connections.meta │ ├── Connections │ │ ├── HTTP.cs │ │ ├── HTTP.cs.meta │ │ ├── IP.cs │ │ ├── IP.cs.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Udp.cs │ │ └── Udp.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── FileController.cs │ │ ├── FileController.cs.meta │ │ ├── Libs.meta │ │ └── Libs │ │ │ ├── SuekkoEditorWindow.meta │ │ │ ├── SuekkoEditorWindow │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── GUI.meta │ │ │ │ └── GUI │ │ │ │ ├── SuekkoWindow.cs │ │ │ │ └── SuekkoWindow.cs.meta │ │ │ ├── YamlDotNet.meta │ │ │ └── YamlDotNet │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── YamlDotNet.dll │ │ │ ├── YamlDotNet.dll.meta │ │ │ ├── derivedfrom.txt │ │ │ └── derivedfrom.txt.meta │ ├── Encrypt.meta │ ├── Encrypt │ │ ├── AES256.cs │ │ ├── AES256.cs.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── SHA_2.cs │ │ └── SHA_2.cs.meta │ ├── EndPointSelector.meta │ ├── EndPointSelector │ │ ├── EndPointSelector.cs │ │ └── EndPointSelector.cs.meta │ ├── Information.meta │ ├── Information │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Antimaterializer.cs │ │ │ ├── Antimaterializer.cs.meta │ │ │ ├── FileController.cs │ │ │ ├── FileController.cs.meta │ │ │ ├── Reporter.cs │ │ │ └── Reporter.cs.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── UUebView.dll │ │ ├── UUebView.dll.meta │ │ ├── UUebViewComponent.cs │ │ ├── UUebViewComponent.cs.meta │ │ ├── UUebViewPlugins.meta │ │ └── UUebViewPlugins │ │ │ ├── TMProPlugin.cs.gz │ │ │ └── TMProPlugin.cs.gz.meta │ ├── Keyboard.meta │ ├── Keyboard │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ └── iOS.meta │ ├── Manifest.meta │ ├── Manifest │ │ ├── AppManifestStore.cs │ │ ├── AppManifestStore.cs.meta │ │ ├── ShouldGitIgnore.meta │ │ └── ShouldGitIgnore │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ ├── dummyfile │ │ │ └── dummyfile.meta │ ├── Notification.meta │ ├── Notification │ │ ├── Notifications.cs │ │ ├── Notifications.cs.meta │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ ├── URLSchemePluginProject.zip │ │ │ ├── URLSchemePluginProject.zip.meta │ │ │ ├── urlschemeplugin.aar │ │ │ └── urlschemeplugin.aar.meta │ │ │ ├── iOS.meta │ │ │ └── iOS │ │ │ ├── OnUrlScheme.mm │ │ │ └── OnUrlScheme.mm.meta │ ├── Persistence.meta │ ├── Persistence │ │ ├── CacheHit.meta │ │ ├── CacheHit │ │ │ ├── CacheHit.cs │ │ │ └── CacheHit.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── PersistenceSupport.cs │ │ │ └── PersistenceSupport.cs.meta │ │ ├── FilePersistence.meta │ │ ├── FilePersistence │ │ │ ├── FilePersistence.cs │ │ │ └── FilePersistence.cs.meta │ │ ├── InAppDB.meta │ │ ├── InAppDB │ │ │ ├── InAppDB.cs │ │ │ └── InAppDB.cs.meta │ │ ├── InAppKVS.meta │ │ ├── InAppKVS │ │ │ ├── InAppKVS.cs │ │ │ └── InAppKVS.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── iOS.meta │ │ │ └── iOS │ │ │ │ ├── StorageMeasure.mm │ │ │ │ └── StorageMeasure.mm.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── URLCaching.meta │ │ └── URLCaching │ │ │ ├── URLCaching.cs │ │ │ └── URLCaching.cs.meta │ ├── Purchase.meta │ ├── Purchase │ │ ├── AntiUnityGameServiceSystem.meta │ │ ├── AntiUnityGameServiceSystem │ │ │ ├── UnityGameServiceRouter.cs │ │ │ ├── UnityGameServiceRouter.cs.meta │ │ │ ├── UnityGameServiceRunner.cs │ │ │ └── UnityGameServiceRunner.cs.meta │ │ ├── LocalPurchaseRouter.cs │ │ ├── LocalPurchaseRouter.cs.meta │ │ ├── PurchaseRouter.cs │ │ ├── PurchaseRouter.cs.meta │ │ ├── README.md │ │ └── README.md.meta │ ├── Representation.meta │ ├── Representation │ │ ├── Base64.cs │ │ ├── Base64.cs.meta │ │ ├── JWT.cs │ │ └── JWT.cs.meta │ ├── ResourcesControl.meta │ ├── ResourcesControl │ │ ├── ResouresController.cs │ │ └── ResouresController.cs.meta │ ├── Settings.meta │ ├── Settings │ │ ├── AppSettings.cs │ │ ├── AppSettings.cs.meta │ │ ├── AssetBundlesSettings.cs │ │ ├── AssetBundlesSettings.cs.meta │ │ ├── AuthSettings.cs │ │ ├── AuthSettings.cs.meta │ │ ├── AutoyaBuildManifestObject.cs │ │ ├── AutoyaBuildManifestObject.cs.meta │ │ ├── AutoyaRuntimeManifestObject.cs │ │ ├── AutoyaRuntimeManifestObject.cs.meta │ │ ├── EndPointSelectorSettings.cs │ │ ├── EndPointSelectorSettings.cs.meta │ │ ├── MaintenanceSettings.cs │ │ ├── MaintenanceSettings.cs.meta │ │ ├── PurchaseSettings.cs │ │ └── PurchaseSettings.cs.meta │ ├── ThirdPartyAuthentication.meta │ └── ThirdPartyAuthentication │ │ ├── SignInWithApple.meta │ │ └── SignInWithApple │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── BuildPostprocess_SignInWIthApple.cs │ │ └── BuildPostprocess_SignInWIthApple.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ ├── iOS.meta │ │ └── iOS │ │ │ ├── SignInWithApple.m │ │ │ └── SignInWithApple.m.meta │ │ ├── SignInWithApple.cs │ │ └── SignInWithApple.cs.meta ├── AutoyaSample.meta ├── AutoyaSample │ ├── 0_BasicUsage.meta │ ├── 0_BasicUsage │ │ ├── BasicUsage.cs │ │ ├── BasicUsage.cs.meta │ │ ├── BasicUsage.unity │ │ ├── BasicUsage.unity.meta │ │ ├── BasicUsageSettings.lighting │ │ └── BasicUsageSettings.lighting.meta │ ├── 10_AppManifest.meta │ ├── 10_AppManifest │ │ ├── AppManifest.cs │ │ ├── AppManifest.cs.meta │ │ ├── AppManifest.unity │ │ ├── AppManifest.unity.meta │ │ ├── AppManifestSettings.lighting │ │ └── AppManifestSettings.lighting.meta │ ├── 11_Resources.meta │ ├── 11_Resources │ │ ├── LoadResourcesSample.cs │ │ ├── LoadResourcesSample.cs.meta │ │ ├── LoadResourcesSample.unity │ │ ├── LoadResourcesSample.unity.meta │ │ ├── LoadResourcesSampleSettings.lighting │ │ ├── LoadResourcesSampleSettings.lighting.meta │ │ ├── Resources.meta │ │ └── Resources │ │ │ ├── SampleResource.meta │ │ │ └── SampleResource │ │ │ ├── shisyamo.jpg │ │ │ └── shisyamo.jpg.meta │ ├── 12_ThirdPartyAuthentication.meta │ ├── 12_ThirdPartyAuthentication │ │ ├── SignInWithAppleSample.cs │ │ ├── SignInWithAppleSample.cs.meta │ │ ├── SignInWithApple_SampleScene.unity │ │ ├── SignInWithApple_SampleScene.unity.meta │ │ ├── SignInWithApple_SampleSceneSettings.lighting │ │ ├── SignInWithApple_SampleSceneSettings.lighting.meta │ │ ├── idTokenVerificationSample.meta │ │ └── idTokenVerificationSample │ │ │ ├── verify_idToken.js │ │ │ └── verify_idToken.js.meta │ ├── 1_Connections.meta │ ├── 1_Connections │ │ ├── HttpConnections.cs │ │ ├── HttpConnections.cs.meta │ │ ├── HttpConnections.unity │ │ ├── HttpConnections.unity.meta │ │ ├── HttpConnectionsSettings.lighting │ │ ├── HttpConnectionsSettings.lighting.meta │ │ ├── UdpConnections.cs │ │ ├── UdpConnections.cs.meta │ │ ├── UdpConnections.unity │ │ ├── UdpConnections.unity.meta │ │ ├── UdpConnectionsSettings.lighting │ │ └── UdpConnectionsSettings.lighting.meta │ ├── 2_AssetBundle.meta │ ├── 2_AssetBundle │ │ ├── AssetBundle.unity │ │ ├── AssetBundle.unity.meta │ │ ├── AssetBundleSettings.lighting │ │ ├── AssetBundleSettings.lighting.meta │ │ ├── LoadAssetBundle.cs │ │ ├── LoadAssetBundle.cs.meta │ │ ├── PreloadAssetBundle.cs │ │ ├── PreloadAssetBundle.cs.meta │ │ ├── PreloadAssetBundle.unity │ │ ├── PreloadAssetBundle.unity.meta │ │ ├── PreloadAssetBundle2.cs │ │ ├── PreloadAssetBundle2.cs.meta │ │ ├── PreloadAssetBundle2.unity │ │ ├── PreloadAssetBundle2.unity.meta │ │ ├── PreloadAssetBundle2Settings.lighting │ │ ├── PreloadAssetBundle2Settings.lighting.meta │ │ ├── PreloadAssetBundleSettings.lighting │ │ └── PreloadAssetBundleSettings.lighting.meta │ ├── 3_Purchase.meta │ ├── 3_Purchase │ │ ├── LocalPurchase.cs │ │ ├── LocalPurchase.cs.meta │ │ ├── Purchase.unity │ │ ├── Purchase.unity.meta │ │ ├── PurchaseSettings.lighting │ │ ├── PurchaseSettings.lighting.meta │ │ ├── RemotePurchase.cs │ │ └── RemotePurchase.cs.meta │ ├── 4_Persistence.meta │ ├── 4_Persistence │ │ ├── Persistence.unity │ │ ├── Persistence.unity.meta │ │ ├── PersistenceSettings.lighting │ │ ├── PersistenceSettings.lighting.meta │ │ ├── URLCachingUsage.cs │ │ └── URLCachingUsage.cs.meta │ ├── 5_MaintenanceDetection.meta │ ├── 5_MaintenanceDetection │ │ ├── MaintenanceDetection.cs │ │ ├── MaintenanceDetection.cs.meta │ │ ├── MaintenanceDetection.unity │ │ ├── MaintenanceDetection.unity.meta │ │ ├── MaintenanceDetectionSettings.lighting │ │ └── MaintenanceDetectionSettings.lighting.meta │ ├── 7_Information.meta │ ├── 7_Information │ │ ├── Information.unity │ │ ├── Information.unity.meta │ │ ├── InformationEventReceiver.cs │ │ ├── InformationEventReceiver.cs.meta │ │ ├── InformationSettings.lighting │ │ ├── InformationSettings.lighting.meta │ │ ├── Resources.meta │ │ └── Resources │ │ │ ├── items.html │ │ │ └── items.html.meta │ ├── 8_MainthreadDispatcher.meta │ ├── 8_MainthreadDispatcher │ │ ├── MainthreadDispatch.unity │ │ ├── MainthreadDispatch.unity.meta │ │ ├── MainthreadDispatchSample.cs │ │ ├── MainthreadDispatchSample.cs.meta │ │ ├── MainthreadDispatchSettings.lighting │ │ └── MainthreadDispatchSettings.lighting.meta │ ├── 9_Notification.meta │ ├── 9_Notification │ │ ├── Notification.unity │ │ ├── Notification.unity.meta │ │ ├── NotificationSample.cs │ │ ├── NotificationSample.cs.meta │ │ ├── NotificationSettings.lighting │ │ ├── NotificationSettings.lighting.meta │ │ ├── URLSchemeSample.cs │ │ └── URLSchemeSample.cs.meta │ ├── dummy.unity │ ├── dummy.unity.meta │ ├── dummySettings.lighting │ └── dummySettings.lighting.meta ├── AutoyaTests.meta ├── AutoyaTests │ ├── RuntimeData.meta │ ├── RuntimeData │ │ ├── AssetBundles.meta │ │ ├── AssetBundles │ │ │ ├── MainResources.meta │ │ │ ├── MainResources │ │ │ │ ├── PrefabHolder.cs │ │ │ │ ├── PrefabHolder.cs.meta │ │ │ │ ├── nestedPrefab.prefab │ │ │ │ ├── nestedPrefab.prefab.meta │ │ │ │ ├── textureName.png │ │ │ │ ├── textureName.png.meta │ │ │ │ ├── textureName1.prefab │ │ │ │ ├── textureName1.prefab.meta │ │ │ │ ├── textureName2.prefab │ │ │ │ ├── textureName2.prefab.meta │ │ │ │ ├── updatableTex.prefab │ │ │ │ └── updatableTex.prefab.meta │ │ │ ├── SubResources.meta │ │ │ └── SubResources │ │ │ │ ├── sample.txt │ │ │ │ ├── sample.txt.meta │ │ │ │ ├── sample2.txt │ │ │ │ └── sample2.txt.meta │ │ ├── EndPoints.meta │ │ ├── EndPoints │ │ │ ├── empty.json │ │ │ ├── empty.json.meta │ │ │ ├── mainAndSub.json │ │ │ ├── mainAndSub.json.meta │ │ │ ├── sub.json │ │ │ └── sub.json.meta │ │ ├── InformationSample.meta │ │ ├── InformationSample │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── InformationSampleRes.meta │ │ │ │ └── InformationSampleRes │ │ │ │ ├── bg.png │ │ │ │ ├── bg.png.meta │ │ │ │ ├── button.png │ │ │ │ ├── button.png.meta │ │ │ │ ├── new.png │ │ │ │ ├── new.png.meta │ │ │ │ ├── test.html │ │ │ │ ├── test.html.meta │ │ │ │ ├── textbg.png │ │ │ │ └── textbg.png.meta │ │ ├── bundledScene.unity │ │ ├── bundledScene.unity.meta │ │ ├── bundledSceneSettings.lighting │ │ ├── bundledSceneSettings.lighting.meta │ │ ├── inSceneImageData.png │ │ └── inSceneImageData.png.meta │ ├── Tests.meta │ └── Tests │ │ ├── AssetBundles.meta │ │ ├── AssetBundles │ │ ├── AssetBundleListDownloaderTests.cs │ │ ├── AssetBundleListDownloaderTests.cs.meta │ │ ├── AssetBundleLoaderTests.cs │ │ ├── AssetBundleLoaderTests.cs.meta │ │ ├── AssetBundlePreloaderTests.cs │ │ └── AssetBundlePreloaderTests.cs.meta │ │ ├── Backyard.meta │ │ ├── Backyard │ │ ├── AppUpdateTests.cs │ │ ├── AppUpdateTests.cs.meta │ │ ├── AssetBundlesImplementationTests.cs │ │ ├── AssetBundlesImplementationTests.cs.meta │ │ ├── AssetBundlesListAddTests.cs │ │ ├── AssetBundlesListAddTests.cs.meta │ │ ├── AssetBundlesListUpdateTests.cs │ │ ├── AssetBundlesListUpdateTests.cs.meta │ │ ├── AssetUpdateTests.cs │ │ ├── AssetUpdateTests.cs.meta │ │ ├── AuthenticatedHTTPImplementationTests.cs │ │ ├── AuthenticatedHTTPImplementationTests.cs.meta │ │ ├── AuthenticationImplementationTests.cs │ │ ├── AuthenticationImplementationTests.cs.meta │ │ ├── EndPointImplementationRetryTest.cs │ │ ├── EndPointImplementationRetryTest.cs.meta │ │ ├── EndPointImplementationTests.cs │ │ ├── EndPointImplementationTests.cs.meta │ │ ├── MaintenanceTests.cs │ │ ├── MaintenanceTests.cs.meta │ │ ├── PersistImplementationTests.cs │ │ ├── PersistImplementationTests.cs.meta │ │ ├── PurchaseImplementsTests.cs │ │ └── PurchaseImplementsTests.cs.meta │ │ ├── Connection.meta │ │ ├── Connection │ │ ├── IPTests.cs │ │ ├── IPTests.cs.meta │ │ ├── UdpTests.cs │ │ └── UdpTests.cs.meta │ │ ├── Encryption.meta │ │ ├── Encryption │ │ ├── EncryptTests.cs │ │ └── EncryptTests.cs.meta │ │ ├── EndPoint.meta │ │ ├── EndPoint │ │ ├── EndPointTestTarget.cs │ │ ├── EndPointTestTarget.cs.meta │ │ ├── EndPointTests.cs │ │ └── EndPointTests.cs.meta │ │ ├── Information.meta │ │ ├── Information │ │ ├── Test_Information.unity │ │ ├── Test_Information.unity.meta │ │ ├── Test_InformationSettings.lighting │ │ └── Test_InformationSettings.lighting.meta │ │ ├── Manifest.meta │ │ ├── Manifest │ │ ├── ManifestTests.cs │ │ └── ManifestTests.cs.meta │ │ ├── Notifications.meta │ │ ├── Notifications │ │ ├── NotificationTest.cs │ │ └── NotificationTest.cs.meta │ │ ├── Persistence.meta │ │ ├── Persistence │ │ ├── CacheHitTests.meta │ │ ├── CacheHitTests │ │ │ ├── CacheHitImplementationTest.cs │ │ │ ├── CacheHitImplementationTest.cs.meta │ │ │ ├── CacheHitImplementationTest_UpdateCache.cs │ │ │ ├── CacheHitImplementationTest_UpdateCache.cs.meta │ │ │ ├── CacheImplementationTest_MassChache.cs │ │ │ └── CacheImplementationTest_MassChache.cs.meta │ │ ├── FilePersistImplementationTests.cs │ │ ├── FilePersistImplementationTests.cs.meta │ │ ├── URLCachingImplementationTests.cs │ │ └── URLCachingImplementationTests.cs.meta │ │ ├── Purchase.meta │ │ ├── Purchase │ │ ├── PurchaseRouterTests.cs │ │ ├── PurchaseRouterTests.cs.meta │ │ ├── PurchaseRouterTests_binary.cs │ │ └── PurchaseRouterTests_binary.cs.meta │ │ ├── Representation.meta │ │ ├── Representation │ │ ├── JWTTests.cs │ │ └── JWTTests.cs.meta │ │ ├── TestMBRunner.cs │ │ └── TestMBRunner.cs.meta ├── Editor.meta ├── Editor │ ├── AssetGraph-1.4-release.meta │ ├── AssetGraph-1.4-release │ │ ├── UnityEngine.AssetGraph.meta │ │ └── UnityEngine.AssetGraph │ │ │ ├── Cache.meta │ │ │ ├── Cache │ │ │ ├── TemporalSettingFiles.meta │ │ │ └── TemporalSettingFiles │ │ │ │ ├── AssetBundleBuildMap.asset │ │ │ │ ├── AssetBundleBuildMap.asset.meta │ │ │ │ ├── AssetReferenceDB.asset │ │ │ │ └── AssetReferenceDB.asset.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── GUI.meta │ │ │ ├── GUI │ │ │ │ ├── AssetGraphEditorWindow.cs │ │ │ │ ├── AssetGraphEditorWindow.cs.meta │ │ │ │ ├── AssetLog.meta │ │ │ │ ├── AssetLog │ │ │ │ │ ├── AssetProcessEventListTree.cs │ │ │ │ │ ├── AssetProcessEventListTree.cs.meta │ │ │ │ │ ├── AssetProcessEventLogViewController.cs │ │ │ │ │ ├── AssetProcessEventLogViewController.cs.meta │ │ │ │ │ ├── AssetProcessEventLogWindow.cs │ │ │ │ │ └── AssetProcessEventLogWindow.cs.meta │ │ │ │ ├── BatchBuild.meta │ │ │ │ ├── BatchBuild │ │ │ │ │ ├── BatchBuildWindow.cs │ │ │ │ │ ├── BatchBuildWindow.cs.meta │ │ │ │ │ ├── BuildTargetTree.cs │ │ │ │ │ ├── BuildTargetTree.cs.meta │ │ │ │ │ ├── ExecuteResultTree.cs │ │ │ │ │ ├── ExecuteResultTree.cs.meta │ │ │ │ │ ├── GraphCollectionDetailTree.cs │ │ │ │ │ ├── GraphCollectionDetailTree.cs.meta │ │ │ │ │ ├── GraphCollectionExecuteTab.cs │ │ │ │ │ ├── GraphCollectionExecuteTab.cs.meta │ │ │ │ │ ├── GraphCollectionManageTab.cs │ │ │ │ │ ├── GraphCollectionManageTab.cs.meta │ │ │ │ │ ├── GraphCollectionTree.cs │ │ │ │ │ └── GraphCollectionTree.cs.meta │ │ │ │ ├── ConfigGraphEditor.cs │ │ │ │ ├── ConfigGraphEditor.cs.meta │ │ │ │ ├── ConnectionEvent.cs │ │ │ │ ├── ConnectionEvent.cs.meta │ │ │ │ ├── ConnectionGUI.cs │ │ │ │ ├── ConnectionGUI.cs.meta │ │ │ │ ├── ConnectionGUIEditor.cs │ │ │ │ ├── ConnectionGUIEditor.cs.meta │ │ │ │ ├── ConnectionGUIUtility.cs │ │ │ │ ├── ConnectionGUIUtility.cs.meta │ │ │ │ ├── GraphBackground.cs │ │ │ │ ├── GraphBackground.cs.meta │ │ │ │ ├── GraphicResources.meta │ │ │ │ ├── GraphicResources │ │ │ │ │ ├── AssetGraphWindow.png │ │ │ │ │ ├── AssetGraphWindow.png.meta │ │ │ │ │ ├── ConfigGraphIcon.psd │ │ │ │ │ ├── ConfigGraphIcon.psd.meta │ │ │ │ │ ├── ConnectionPoint.png │ │ │ │ │ ├── ConnectionPoint.png.meta │ │ │ │ │ ├── InputBG.png │ │ │ │ │ ├── InputBG.png.meta │ │ │ │ │ ├── LineDraw.shader │ │ │ │ │ ├── LineDraw.shader.meta │ │ │ │ │ ├── NodeImage.meta │ │ │ │ │ ├── NodeImage │ │ │ │ │ │ ├── node0.png │ │ │ │ │ │ ├── node0.png.meta │ │ │ │ │ │ ├── node0@2x.png │ │ │ │ │ │ ├── node0@2x.png.meta │ │ │ │ │ │ ├── node1.png │ │ │ │ │ │ ├── node1.png.meta │ │ │ │ │ │ ├── node1@2x.png │ │ │ │ │ │ ├── node1@2x.png.meta │ │ │ │ │ │ ├── node2.png │ │ │ │ │ │ ├── node2.png.meta │ │ │ │ │ │ ├── node2@2x.png │ │ │ │ │ │ ├── node2@2x.png.meta │ │ │ │ │ │ ├── node3.png │ │ │ │ │ │ ├── node3.png.meta │ │ │ │ │ │ ├── node3@2x.png │ │ │ │ │ │ ├── node3@2x.png.meta │ │ │ │ │ │ ├── node4.png │ │ │ │ │ │ ├── node4.png.meta │ │ │ │ │ │ ├── node4@2x.png │ │ │ │ │ │ ├── node4@2x.png.meta │ │ │ │ │ │ ├── node5.png │ │ │ │ │ │ ├── node5.png.meta │ │ │ │ │ │ ├── node5@2x.png │ │ │ │ │ │ ├── node5@2x.png.meta │ │ │ │ │ │ ├── node6.png │ │ │ │ │ │ ├── node6.png.meta │ │ │ │ │ │ ├── node6@2x.png │ │ │ │ │ │ ├── node6@2x.png.meta │ │ │ │ │ │ ├── node7.png │ │ │ │ │ │ ├── node7.png.meta │ │ │ │ │ │ ├── node7@2x.png │ │ │ │ │ │ ├── node7@2x.png.meta │ │ │ │ │ │ ├── node8.png │ │ │ │ │ │ ├── node8.png.meta │ │ │ │ │ │ ├── node8@2x.png │ │ │ │ │ │ ├── node8@2x.png.meta │ │ │ │ │ │ ├── node_images_source.psd │ │ │ │ │ │ ├── node_images_source.psd.meta │ │ │ │ │ │ ├── node_images_source@2x.psd │ │ │ │ │ │ ├── node_images_source@2x.psd.meta │ │ │ │ │ │ ├── on_node0.png │ │ │ │ │ │ ├── on_node0.png.meta │ │ │ │ │ │ ├── on_node0@2x.png │ │ │ │ │ │ ├── on_node0@2x.png.meta │ │ │ │ │ │ ├── on_node1.png │ │ │ │ │ │ ├── on_node1.png.meta │ │ │ │ │ │ ├── on_node1@2x.png │ │ │ │ │ │ ├── on_node1@2x.png.meta │ │ │ │ │ │ ├── on_node2.png │ │ │ │ │ │ ├── on_node2.png.meta │ │ │ │ │ │ ├── on_node2@2x.png │ │ │ │ │ │ ├── on_node2@2x.png.meta │ │ │ │ │ │ ├── on_node3.png │ │ │ │ │ │ ├── on_node3.png.meta │ │ │ │ │ │ ├── on_node3@2x.png │ │ │ │ │ │ ├── on_node3@2x.png.meta │ │ │ │ │ │ ├── on_node4.png │ │ │ │ │ │ ├── on_node4.png.meta │ │ │ │ │ │ ├── on_node4@2x.png │ │ │ │ │ │ ├── on_node4@2x.png.meta │ │ │ │ │ │ ├── on_node5.png │ │ │ │ │ │ ├── on_node5.png.meta │ │ │ │ │ │ ├── on_node5@2x.png │ │ │ │ │ │ ├── on_node5@2x.png.meta │ │ │ │ │ │ ├── on_node6.png │ │ │ │ │ │ ├── on_node6.png.meta │ │ │ │ │ │ ├── on_node6@2x.png │ │ │ │ │ │ ├── on_node6@2x.png.meta │ │ │ │ │ │ ├── on_node7.png │ │ │ │ │ │ ├── on_node7.png.meta │ │ │ │ │ │ ├── on_node7@2x.png │ │ │ │ │ │ ├── on_node7@2x.png.meta │ │ │ │ │ │ ├── on_node8.png │ │ │ │ │ │ ├── on_node8.png.meta │ │ │ │ │ │ ├── on_node8@2x.png │ │ │ │ │ │ └── on_node8@2x.png.meta │ │ │ │ │ ├── NodeStyle.guiskin │ │ │ │ │ ├── NodeStyle.guiskin.meta │ │ │ │ │ ├── OutputBG.png │ │ │ │ │ ├── OutputBG.png.meta │ │ │ │ │ ├── d_AssetGraphWindow.png │ │ │ │ │ └── d_AssetGraphWindow.png.meta │ │ │ │ ├── GroupView.meta │ │ │ │ ├── GroupView │ │ │ │ │ ├── GroupAssetListTree.cs │ │ │ │ │ ├── GroupAssetListTree.cs.meta │ │ │ │ │ ├── GroupListTree.cs │ │ │ │ │ ├── GroupListTree.cs.meta │ │ │ │ │ ├── GroupViewController.cs │ │ │ │ │ └── GroupViewController.cs.meta │ │ │ │ ├── NodeEvent.cs │ │ │ │ ├── NodeEvent.cs.meta │ │ │ │ ├── NodeGUI.cs │ │ │ │ ├── NodeGUI.cs.meta │ │ │ │ ├── NodeGUIEditor.cs │ │ │ │ ├── NodeGUIEditor.cs.meta │ │ │ │ ├── NodeGUIUtility.cs │ │ │ │ ├── NodeGUIUtility.cs.meta │ │ │ │ ├── ProjectSettings.meta │ │ │ │ ├── ProjectSettings │ │ │ │ │ ├── AssetBundleSettingsTab.cs │ │ │ │ │ ├── AssetBundleSettingsTab.cs.meta │ │ │ │ │ ├── ExecutionOrderSettingsTab.cs │ │ │ │ │ ├── ExecutionOrderSettingsTab.cs.meta │ │ │ │ │ ├── ProjectSettingsWindow.cs │ │ │ │ │ └── ProjectSettingsWindow.cs.meta │ │ │ │ ├── RecordUndoScope.cs │ │ │ │ ├── RecordUndoScope.cs.meta │ │ │ │ ├── UserPreference.cs │ │ │ │ └── UserPreference.cs.meta │ │ │ ├── ScriptTemplate.meta │ │ │ ├── ScriptTemplate │ │ │ │ ├── MyFilter.cs.template │ │ │ │ ├── MyFilter.cs.template.meta │ │ │ │ ├── MyGenerator.cs.template │ │ │ │ ├── MyGenerator.cs.template.meta │ │ │ │ ├── MyImportSettingsConfigurator.cs.template │ │ │ │ ├── MyImportSettingsConfigurator.cs.template.meta │ │ │ │ ├── MyModifier.cs.template │ │ │ │ ├── MyModifier.cs.template.meta │ │ │ │ ├── MyNode.cs.template │ │ │ │ ├── MyNode.cs.template.meta │ │ │ │ ├── MyPostprocess.cs.template │ │ │ │ ├── MyPostprocess.cs.template.meta │ │ │ │ ├── MyPrefabBuilder.cs.template │ │ │ │ └── MyPrefabBuilder.cs.template.meta │ │ │ ├── SettingTemplate.meta │ │ │ ├── SettingTemplate │ │ │ │ ├── readme.txt │ │ │ │ ├── readme.txt.meta │ │ │ │ ├── setting.fbx │ │ │ │ ├── setting.fbx.meta │ │ │ │ ├── setting.m4v │ │ │ │ ├── setting.m4v.meta │ │ │ │ ├── setting.png │ │ │ │ ├── setting.png.meta │ │ │ │ ├── setting.shader │ │ │ │ ├── setting.shader.meta │ │ │ │ ├── setting.ttf │ │ │ │ ├── setting.ttf.meta │ │ │ │ ├── setting.wav │ │ │ │ └── setting.wav.meta │ │ │ ├── System.meta │ │ │ ├── System │ │ │ │ ├── AssetGenerators.meta │ │ │ │ ├── AssetGenerators │ │ │ │ │ ├── AssetGenerateInfo.cs │ │ │ │ │ ├── AssetGenerateInfo.cs.meta │ │ │ │ │ ├── CreateMaterialFromTexture.cs │ │ │ │ │ ├── CreateMaterialFromTexture.cs.meta │ │ │ │ │ ├── DuplicateRefererenceAsset.cs │ │ │ │ │ ├── DuplicateRefererenceAsset.cs.meta │ │ │ │ │ ├── Duplicator.cs │ │ │ │ │ ├── Duplicator.cs.meta │ │ │ │ │ ├── IAssetGenerator.cs │ │ │ │ │ ├── IAssetGenerator.cs.meta │ │ │ │ │ ├── TextureScaler.cs │ │ │ │ │ └── TextureScaler.cs.meta │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ │ ├── AssetBundleBuildReport.cs │ │ │ │ │ ├── AssetBundleBuildReport.cs.meta │ │ │ │ │ ├── AssetGraphController.cs │ │ │ │ │ ├── AssetGraphController.cs.meta │ │ │ │ │ ├── AssetGraphPostprocessor.cs │ │ │ │ │ ├── AssetGraphPostprocessor.cs.meta │ │ │ │ │ ├── AssetPostprocessorContext.cs │ │ │ │ │ ├── AssetPostprocessorContext.cs.meta │ │ │ │ │ ├── AssetProcessEvent.cs │ │ │ │ │ ├── AssetProcessEvent.cs.meta │ │ │ │ │ ├── AssetProcessEventRecord.cs │ │ │ │ │ ├── AssetProcessEventRecord.cs.meta │ │ │ │ │ ├── AssetReferenceStreamManager.cs │ │ │ │ │ ├── AssetReferenceStreamManager.cs.meta │ │ │ │ │ ├── PerformGraph.cs │ │ │ │ │ ├── PerformGraph.cs.meta │ │ │ │ │ ├── SystemDataUtility.cs │ │ │ │ │ └── SystemDataUtility.cs.meta │ │ │ │ ├── Exception.meta │ │ │ │ ├── Exception │ │ │ │ │ ├── AssetGraphException.cs │ │ │ │ │ ├── AssetGraphException.cs.meta │ │ │ │ │ ├── AssetReferenceException.cs │ │ │ │ │ ├── AssetReferenceException.cs.meta │ │ │ │ │ ├── NodeException.cs │ │ │ │ │ └── NodeException.cs.meta │ │ │ │ ├── Filters.meta │ │ │ │ ├── Filters │ │ │ │ │ ├── FilterByNameAndType.cs │ │ │ │ │ ├── FilterByNameAndType.cs.meta │ │ │ │ │ ├── FilterTypeUtility.cs │ │ │ │ │ ├── FilterTypeUtility.cs.meta │ │ │ │ │ ├── FilterUtility.cs │ │ │ │ │ ├── FilterUtility.cs.meta │ │ │ │ │ ├── IFilter.cs │ │ │ │ │ └── IFilter.cs.meta │ │ │ │ ├── Importers.meta │ │ │ │ ├── Importers │ │ │ │ │ ├── AudioImporterConfigurator.cs │ │ │ │ │ ├── AudioImporterConfigurator.cs.meta │ │ │ │ │ ├── IAssetImporterConfigurator.cs │ │ │ │ │ ├── IAssetImporterConfigurator.cs.meta │ │ │ │ │ ├── ModelImporterConfigurator.cs │ │ │ │ │ ├── ModelImporterConfigurator.cs.meta │ │ │ │ │ ├── ShaderImporterConfigurator.cs │ │ │ │ │ ├── ShaderImporterConfigurator.cs.meta │ │ │ │ │ ├── TextureImporterConfigurator.cs │ │ │ │ │ ├── TextureImporterConfigurator.cs.meta │ │ │ │ │ ├── TrueTypeFontImporterConfigurator.cs │ │ │ │ │ ├── TrueTypeFontImporterConfigurator.cs.meta │ │ │ │ │ ├── VideoClipImporterConfigurator.cs │ │ │ │ │ └── VideoClipImporterConfigurator.cs.meta │ │ │ │ ├── Libs.meta │ │ │ │ ├── Libs │ │ │ │ │ ├── MiniJSONForAssetGraph.cs │ │ │ │ │ └── MiniJSONForAssetGraph.cs.meta │ │ │ │ ├── Model.meta │ │ │ │ ├── Model │ │ │ │ │ ├── AssetReference.cs │ │ │ │ │ ├── AssetReference.cs.meta │ │ │ │ │ ├── AssetReferenceDatabase.cs │ │ │ │ │ ├── AssetReferenceDatabase.cs.meta │ │ │ │ │ ├── BatchBuildConfig.cs │ │ │ │ │ ├── BatchBuildConfig.cs.meta │ │ │ │ │ ├── Node.cs │ │ │ │ │ ├── Node.cs.meta │ │ │ │ │ ├── NodeBuildContext.cs │ │ │ │ │ ├── NodeBuildContext.cs.meta │ │ │ │ │ ├── ObjectReferenceBase.cs │ │ │ │ │ ├── ObjectReferenceBase.cs.meta │ │ │ │ │ ├── SerializableGroups.cs │ │ │ │ │ ├── SerializableGroups.cs.meta │ │ │ │ │ ├── SerializableMultiTargetInstance.cs │ │ │ │ │ ├── SerializableMultiTargetInstance.cs.meta │ │ │ │ │ ├── SerializableMultiTargetInt.cs │ │ │ │ │ ├── SerializableMultiTargetInt.cs.meta │ │ │ │ │ ├── SerializableMultiTargetString.cs │ │ │ │ │ ├── SerializableMultiTargetString.cs.meta │ │ │ │ │ ├── SerializedComponent.cs │ │ │ │ │ ├── SerializedComponent.cs.meta │ │ │ │ │ ├── SerializedInstance.cs │ │ │ │ │ ├── SerializedInstance.cs.meta │ │ │ │ │ ├── V1.meta │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── ConnectionData.cs │ │ │ │ │ │ ├── ConnectionData.cs.meta │ │ │ │ │ │ ├── ConnectionPointData.cs │ │ │ │ │ │ ├── ConnectionPointData.cs.meta │ │ │ │ │ │ ├── NodeData.cs │ │ │ │ │ │ ├── NodeData.cs.meta │ │ │ │ │ │ ├── SaveData.cs │ │ │ │ │ │ ├── SaveData.cs.meta │ │ │ │ │ │ ├── Settings.cs │ │ │ │ │ │ └── Settings.cs.meta │ │ │ │ │ ├── V2.meta │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── ConfigGraph.cs │ │ │ │ │ │ ├── ConfigGraph.cs.meta │ │ │ │ │ │ ├── ConnectionData.cs │ │ │ │ │ │ ├── ConnectionData.cs.meta │ │ │ │ │ │ ├── ConnectionPointData.cs │ │ │ │ │ │ ├── ConnectionPointData.cs.meta │ │ │ │ │ │ ├── NodeData.cs │ │ │ │ │ │ ├── NodeData.cs.meta │ │ │ │ │ │ ├── NodeDataImporter.cs │ │ │ │ │ │ ├── NodeDataImporter.cs.meta │ │ │ │ │ │ ├── Settings.cs │ │ │ │ │ │ └── Settings.cs.meta │ │ │ │ ├── Modifiers.meta │ │ │ │ ├── Modifiers │ │ │ │ │ ├── AddGameObject.cs │ │ │ │ │ ├── AddGameObject.cs.meta │ │ │ │ │ ├── AttachComponent.cs │ │ │ │ │ ├── AttachComponent.cs.meta │ │ │ │ │ ├── IModifier.cs │ │ │ │ │ ├── IModifier.cs.meta │ │ │ │ │ ├── SetProperty.cs │ │ │ │ │ ├── SetProperty.cs.meta │ │ │ │ │ ├── SetReference.cs │ │ │ │ │ ├── SetReference.cs.meta │ │ │ │ │ ├── SetSpritesToAnimation.cs │ │ │ │ │ └── SetSpritesToAnimation.cs.meta │ │ │ │ ├── Node.meta │ │ │ │ ├── Node │ │ │ │ │ ├── Buitin.meta │ │ │ │ │ ├── Buitin │ │ │ │ │ │ ├── AssertUnwantedAssetsInBundle.cs │ │ │ │ │ │ ├── AssertUnwantedAssetsInBundle.cs.meta │ │ │ │ │ │ ├── AssetGenerator.cs │ │ │ │ │ │ ├── AssetGenerator.cs.meta │ │ │ │ │ │ ├── BundleBuilder.cs │ │ │ │ │ │ ├── BundleBuilder.cs.meta │ │ │ │ │ │ ├── BundleConfigurator.cs │ │ │ │ │ │ ├── BundleConfigurator.cs.meta │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.cs.meta │ │ │ │ │ │ ├── Exporter.cs │ │ │ │ │ │ ├── Exporter.cs.meta │ │ │ │ │ │ ├── ExtractSharedAssets.cs │ │ │ │ │ │ ├── ExtractSharedAssets.cs.meta │ │ │ │ │ │ ├── Filter.cs │ │ │ │ │ │ ├── Filter.cs.meta │ │ │ │ │ │ ├── Grouping.cs │ │ │ │ │ │ ├── Grouping.cs.meta │ │ │ │ │ │ ├── GroupingByFile.cs │ │ │ │ │ │ ├── GroupingByFile.cs.meta │ │ │ │ │ │ ├── GroupingBySize.cs │ │ │ │ │ │ ├── GroupingBySize.cs.meta │ │ │ │ │ │ ├── ImportSetting.cs │ │ │ │ │ │ ├── ImportSetting.cs.meta │ │ │ │ │ │ ├── Imported.cs │ │ │ │ │ │ ├── Imported.cs.meta │ │ │ │ │ │ ├── Label.cs │ │ │ │ │ │ ├── Label.cs.meta │ │ │ │ │ │ ├── Loader.cs │ │ │ │ │ │ ├── Loader.cs.meta │ │ │ │ │ │ ├── LoaderBySearch.cs │ │ │ │ │ │ ├── LoaderBySearch.cs.meta │ │ │ │ │ │ ├── MirrorDirectory.cs │ │ │ │ │ │ ├── MirrorDirectory.cs.meta │ │ │ │ │ │ ├── Modifier.cs │ │ │ │ │ │ ├── Modifier.cs.meta │ │ │ │ │ │ ├── PlayerBuilder.cs │ │ │ │ │ │ ├── PlayerBuilder.cs.meta │ │ │ │ │ │ ├── PrefabBuilder.cs │ │ │ │ │ │ └── PrefabBuilder.cs.meta │ │ │ │ │ ├── IPostprocess.cs │ │ │ │ │ └── IPostprocess.cs.meta │ │ │ │ ├── PrefabBuilders.meta │ │ │ │ ├── PrefabBuilders │ │ │ │ │ ├── IPrefabBuilder.cs │ │ │ │ │ ├── IPrefabBuilder.cs.meta │ │ │ │ │ ├── PrefabBuildInfo.cs │ │ │ │ │ ├── PrefabBuildInfo.cs.meta │ │ │ │ │ ├── PrefabBuilderUtility.cs │ │ │ │ │ ├── PrefabBuilderUtility.cs.meta │ │ │ │ │ ├── ReplaceGameObjectByName.cs │ │ │ │ │ ├── ReplaceGameObjectByName.cs.meta │ │ │ │ │ ├── ReplaceWithIncomingGameObject.cs │ │ │ │ │ └── ReplaceWithIncomingGameObject.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ └── Utility │ │ │ │ │ ├── AssetGraphUtility.cs │ │ │ │ │ ├── AssetGraphUtility.cs.meta │ │ │ │ │ ├── AssetReferenceUtility.cs │ │ │ │ │ ├── AssetReferenceUtility.cs.meta │ │ │ │ │ ├── BuildTargetUtility.cs │ │ │ │ │ ├── BuildTargetUtility.cs.meta │ │ │ │ │ ├── CUIUtility.cs │ │ │ │ │ ├── CUIUtility.cs.meta │ │ │ │ │ ├── ComponentMenuUtility.cs │ │ │ │ │ ├── ComponentMenuUtility.cs.meta │ │ │ │ │ ├── CustomScriptUtility.cs │ │ │ │ │ ├── CustomScriptUtility.cs.meta │ │ │ │ │ ├── FileUtility.cs │ │ │ │ │ ├── FileUtility.cs.meta │ │ │ │ │ ├── JSONGraphUtility.cs │ │ │ │ │ ├── JSONGraphUtility.cs.meta │ │ │ │ │ ├── LogUtility.cs │ │ │ │ │ ├── LogUtility.cs.meta │ │ │ │ │ ├── SaveScope.cs │ │ │ │ │ ├── SaveScope.cs.meta │ │ │ │ │ ├── Square.png │ │ │ │ │ ├── Square.png.meta │ │ │ │ │ ├── TypeUtility.cs │ │ │ │ │ └── TypeUtility.cs.meta │ │ │ ├── Test.meta │ │ │ └── Test │ │ │ │ ├── ImporterTest.cs │ │ │ │ ├── ImporterTest.cs.meta │ │ │ │ ├── PathTest.cs │ │ │ │ └── PathTest.cs.meta │ │ │ ├── EditorRuntimeSupport.meta │ │ │ └── EditorRuntimeSupport │ │ │ ├── AssetBundleBuildMap.cs │ │ │ ├── AssetBundleBuildMap.cs.meta │ │ │ ├── AssetGraphBasePath.cs │ │ │ └── AssetGraphBasePath.cs.meta │ ├── Autoya.AssetGraphIntegration.meta │ ├── Autoya.AssetGraphIntegration │ │ ├── AutoyaAssetBundleListGenerateProcess.cs │ │ ├── AutoyaAssetBundleListGenerateProcess.cs.meta │ │ ├── Flatten.cs │ │ ├── Flatten.cs.meta │ │ ├── LinkXMLGenerator.cs │ │ ├── LinkXMLGenerator.cs.meta │ │ ├── ListVersionSettings.meta │ │ └── ListVersionSettings │ │ │ ├── main_assets.json │ │ │ ├── main_assets.json.meta │ │ │ ├── sub_assets.json │ │ │ └── sub_assets.json.meta │ ├── AutoyaEditorTool.cs │ ├── AutoyaEditorTool.cs.meta │ ├── derivedfrom.txt │ ├── derivedfrom.txt.meta │ ├── graphs.meta │ └── graphs │ │ ├── main_assets.asset │ │ ├── main_assets.asset.meta │ │ ├── sub_assets.asset │ │ └── sub_assets.asset.meta ├── MiyamasuTestRunner.meta ├── MiyamasuTestRunner │ ├── Editor.meta │ ├── Editor │ │ ├── FileController.cs │ │ ├── FileController.cs.meta │ │ ├── MiyamasuTestIgniter.cs │ │ ├── MiyamasuTestIgniter.cs.meta │ │ ├── SettingWindow.cs │ │ └── SettingWindow.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Generated.meta │ │ ├── Generated │ │ └── GeneratedTestEntryPoints.cs.meta │ │ ├── Libs.meta │ │ ├── Libs │ │ ├── UUebView.meta │ │ ├── UUebView │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Resources.meta │ │ │ │ └── Resources │ │ │ │ ├── Views.meta │ │ │ │ └── Views │ │ │ │ ├── ConsoleTag.meta │ │ │ │ └── ConsoleTag │ │ │ │ ├── BG.prefab │ │ │ │ ├── BG.prefab.meta │ │ │ │ ├── CHECKMARK.prefab │ │ │ │ ├── CHECKMARK.prefab.meta │ │ │ │ ├── CONTENTTEXT.prefab │ │ │ │ ├── CONTENTTEXT.prefab.meta │ │ │ │ ├── ERROR.prefab │ │ │ │ ├── ERROR.prefab.meta │ │ │ │ ├── FAIL.prefab │ │ │ │ ├── FAIL.prefab.meta │ │ │ │ ├── ICONBG.prefab │ │ │ │ ├── ICONBG.prefab.meta │ │ │ │ ├── PASS.prefab │ │ │ │ ├── PASS.prefab.meta │ │ │ │ ├── TEXTBG.prefab │ │ │ │ ├── TEXTBG.prefab.meta │ │ │ │ ├── TIMEOUT.prefab │ │ │ │ ├── TIMEOUT.prefab.meta │ │ │ │ ├── UUebTags.txt │ │ │ │ ├── UUebTags.txt.meta │ │ │ │ ├── WARNING.prefab │ │ │ │ └── WARNING.prefab.meta │ │ ├── jumper.dll │ │ └── jumper.dll.meta │ │ ├── MainThreadRunner.cs │ │ ├── MainThreadRunner.cs.meta │ │ ├── Miyamasu2UnityTestConverter.cs │ │ ├── Miyamasu2UnityTestConverter.cs.meta │ │ ├── MiyamasuTestRuntimeRunner.cs │ │ ├── MiyamasuTestRuntimeRunner.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── MiyamasuPrefabs.meta │ │ ├── MiyamasuPrefabs │ │ │ ├── MiyamasuCanvas.prefab │ │ │ ├── MiyamasuCanvas.prefab.meta │ │ │ ├── error.png │ │ │ ├── error.png.meta │ │ │ ├── fail.png │ │ │ ├── fail.png.meta │ │ │ ├── pass.png │ │ │ ├── pass.png.meta │ │ │ ├── slack.png │ │ │ ├── slack.png.meta │ │ │ ├── timeout.png │ │ │ ├── timeout.png.meta │ │ │ ├── warning.png │ │ │ └── warning.png.meta │ │ ├── MiyamasuSettings.txt │ │ └── MiyamasuSettings.txt.meta │ │ ├── Settings.cs │ │ └── Settings.cs.meta ├── Packager.meta ├── Packager │ ├── AssetBundles.meta │ └── AssetBundles │ │ ├── AssetBundlesLoadSample.cs │ │ ├── AssetBundlesLoadSample.cs.meta │ │ ├── Editor.meta │ │ └── Editor │ │ ├── AssetBundlesPackager.cs │ │ └── AssetBundlesPackager.cs.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ └── Android │ │ ├── AutoyaAndroidPlugin.meta │ │ └── AutoyaAndroidPlugin │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifest.xml.meta │ │ ├── project.properties │ │ └── project.properties.meta ├── Resources.meta ├── Resources │ ├── BillingMode.json │ ├── BillingMode.json.meta │ ├── IAPProductCatalog.json │ └── IAPProductCatalog.json.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ └── Resources.meta ├── UUebView.meta ├── UUebView │ ├── FOT-SlumpStd-DB.otf │ ├── FOT-SlumpStd-DB.otf.meta │ ├── GeneratedResources.meta │ └── GeneratedResources │ │ ├── Resources.meta │ │ └── Resources │ │ ├── Views.meta │ │ └── Views │ │ ├── Default.meta │ │ ├── Default │ │ ├── A.prefab │ │ ├── A.prefab.meta │ │ ├── BODY.prefab │ │ ├── BODY.prefab.meta │ │ ├── CODE.prefab │ │ ├── CODE.prefab.meta │ │ ├── EM.prefab │ │ ├── EM.prefab.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Default.prefab │ │ │ └── Default.prefab.meta │ │ ├── H1.prefab │ │ ├── H1.prefab.meta │ │ ├── H2.prefab │ │ ├── H2.prefab.meta │ │ ├── H3.prefab │ │ ├── H3.prefab.meta │ │ ├── H4.prefab │ │ ├── H4.prefab.meta │ │ ├── H5.prefab │ │ ├── H5.prefab.meta │ │ ├── H6.prefab │ │ ├── H6.prefab.meta │ │ ├── HR.prefab │ │ ├── HR.prefab.meta │ │ ├── IMG.prefab │ │ ├── IMG.prefab.meta │ │ ├── LI.prefab │ │ ├── LI.prefab.meta │ │ ├── OL.prefab │ │ ├── OL.prefab.meta │ │ ├── P.prefab │ │ ├── P.prefab.meta │ │ ├── PRE.prefab │ │ ├── PRE.prefab.meta │ │ ├── STRONG.prefab │ │ ├── STRONG.prefab.meta │ │ ├── TABLE.prefab │ │ ├── TABLE.prefab.meta │ │ ├── TBODY.prefab │ │ ├── TBODY.prefab.meta │ │ ├── TD.prefab │ │ ├── TD.prefab.meta │ │ ├── TH.prefab │ │ ├── TH.prefab.meta │ │ ├── THEAD.prefab │ │ ├── THEAD.prefab.meta │ │ ├── TR.prefab │ │ ├── TR.prefab.meta │ │ ├── UL.prefab │ │ ├── UL.prefab.meta │ │ ├── UUebTags.txt │ │ └── UUebTags.txt.meta │ │ ├── SampleInfoView.meta │ │ └── SampleInfoView │ │ ├── BG.prefab │ │ ├── BG.prefab.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── SampleInfoView.prefab │ │ └── SampleInfoView.prefab.meta │ │ ├── MYA.prefab │ │ ├── MYA.prefab.meta │ │ ├── NEWBADGE.prefab │ │ ├── NEWBADGE.prefab.meta │ │ ├── SHOWBUTTON.prefab │ │ ├── SHOWBUTTON.prefab.meta │ │ ├── SHOWBUTTONBG.prefab │ │ ├── SHOWBUTTONBG.prefab.meta │ │ ├── TEXTBG.prefab │ │ ├── TEXTBG.prefab.meta │ │ ├── TEXTBOX.prefab │ │ ├── TEXTBOX.prefab.meta │ │ ├── TITLEBOX.prefab │ │ ├── TITLEBOX.prefab.meta │ │ ├── TITLETEXT.prefab │ │ ├── TITLETEXT.prefab.meta │ │ ├── UPDATETEXT.prefab │ │ ├── UPDATETEXT.prefab.meta │ │ ├── UUebTags.txt │ │ └── UUebTags.txt.meta ├── ViewGenerateTest.unity ├── ViewGenerateTest.unity.meta ├── ViewGenerateTestSettings.lighting └── ViewGenerateTestSettings.lighting.meta ├── Autoya+AssetGraph.unitypackage ├── Autoya.AssetBundles.unitypackage ├── Autoya.unitypackage ├── CHANGELOG.md ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config ├── README.md └── UserSettings ├── EditorUserSettings.asset ├── Layouts └── default-2021.dwlt └── Search.settings /AssetBundles/main_assets/Android/1.0.0/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.0/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.0/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.0/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.0/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.0/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.0/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.0/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.0/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.0/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.1/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.1/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.1/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.1/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.1/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.1/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.1/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.1/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/1.0.1/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/1.0.1/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/Android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/Android -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Android/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Android/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.0/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.0/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.0/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.0/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.0/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.0/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.0/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.0/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.0/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.0/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.1/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.1/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.1/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.1/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.1/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.1/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.1/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.1/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/1.0.1/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/1.0.1/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/OSX -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/OSX/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/OSX/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/1.0.0/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/1.0.0/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/1.0.0/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/1.0.0/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/1.0.0/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/1.0.0/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/1.0.0/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/1.0.0/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/1.0.0/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/1.0.0/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/Windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/Windows -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/Windows/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/Windows/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.0/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.0/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.0/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.0/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.0/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.0/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.0/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.0/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.0/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.0/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.1/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.1/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.1/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.1/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.1/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.1/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.1/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.1/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/1.0.1/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/1.0.1/updatabletex -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/iOS -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/nestedprefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/nestedprefab -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/texturename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/texturename -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/texturename1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/texturename1 -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/texturename2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/texturename2 -------------------------------------------------------------------------------- /AssetBundles/main_assets/iOS/updatabletex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/main_assets/iOS/updatabletex -------------------------------------------------------------------------------- /AssetBundles/preload/sample.preloadList.json: -------------------------------------------------------------------------------- 1 | {"name":"sample.preloadList", "bundleNames":["texturename"]} -------------------------------------------------------------------------------- /AssetBundles/preload/sample.preloadList2.json: -------------------------------------------------------------------------------- 1 | {"name":"sample.preloadList", "bundleNames":["texturename", "texturename1"]} -------------------------------------------------------------------------------- /AssetBundles/scenes/Android/1.0.0/bundle_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/Android/1.0.0/bundle_0 -------------------------------------------------------------------------------- /AssetBundles/scenes/Android/Android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/Android/Android -------------------------------------------------------------------------------- /AssetBundles/scenes/Android/Android.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 2612491242 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: bundle_0 7 | Dependencies: {} 8 | -------------------------------------------------------------------------------- /AssetBundles/scenes/Android/bundle_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/Android/bundle_0 -------------------------------------------------------------------------------- /AssetBundles/scenes/OSX/1.0.0/bundle_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/OSX/1.0.0/bundle_0 -------------------------------------------------------------------------------- /AssetBundles/scenes/OSX/OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/OSX/OSX -------------------------------------------------------------------------------- /AssetBundles/scenes/OSX/OSX.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 1244406798 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: bundle_0 7 | Dependencies: {} 8 | -------------------------------------------------------------------------------- /AssetBundles/scenes/OSX/bundle_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/OSX/bundle_0 -------------------------------------------------------------------------------- /AssetBundles/scenes/iOS/1.0.0/bundle_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/iOS/1.0.0/bundle_0 -------------------------------------------------------------------------------- /AssetBundles/scenes/iOS/bundle_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/iOS/bundle_0 -------------------------------------------------------------------------------- /AssetBundles/scenes/iOS/iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/scenes/iOS/iOS -------------------------------------------------------------------------------- /AssetBundles/scenes/iOS/iOS.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 136998700 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: bundle_0 7 | Dependencies: {} 8 | -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/1.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Android/1.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/2.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Android/2.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/2.0.0/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Android/2.0.0/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/Android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Android/Android -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/Android.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 1438820462 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: sample 7 | Dependencies: {} 8 | Info_1: 9 | Name: sample2 10 | Dependencies: {} 11 | -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Android/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Android/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Android/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/1.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/OSX/1.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/2.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/OSX/2.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/2.0.0/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/OSX/2.0.0/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/OSX/OSX -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/OSX.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 9072918 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: sample 7 | Dependencies: {} 8 | Info_1: 9 | Name: sample2 10 | Dependencies: {} 11 | -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/OSX/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/OSX/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/OSX/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/1.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Windows/1.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/2.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Windows/2.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/2.0.0/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Windows/2.0.0/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/Windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Windows/Windows -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/Windows.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 2321024875 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: sample 7 | Dependencies: {} 8 | -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Windows/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/Windows/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/Windows/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/1.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/iOS/1.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/2.0.0/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/iOS/2.0.0/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/2.0.0/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/iOS/2.0.0/sample2 -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/iOS/iOS -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/iOS.manifest: -------------------------------------------------------------------------------- 1 | ManifestFileVersion: 0 2 | CRC: 4169230597 3 | AssetBundleManifest: 4 | AssetBundleInfos: 5 | Info_0: 6 | Name: sample 7 | Dependencies: {} 8 | Info_1: 9 | Name: sample2 10 | Dependencies: {} 11 | -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/iOS/sample -------------------------------------------------------------------------------- /AssetBundles/sub_assets/iOS/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/AssetBundles/sub_assets/iOS/sample2 -------------------------------------------------------------------------------- /Assets/Autoya.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55dfddcf4deab4308b8de351fe8e2d07 3 | folderAsset: yes 4 | timeCreated: 1469781805 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce5198c544d094535b56065b60d1ff96 3 | folderAsset: yes 4 | timeCreated: 1469782720 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle/AssetBundleList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe130004387bb42d5a2bec9ea693d59e 3 | timeCreated: 1489446390 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle/AssetBundleListDownloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 897304c51e5574301a0d5964822466dc 3 | timeCreated: 1483012979 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle/AssetBundleLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c074801ff7744bca91b39aa8cb30250 3 | timeCreated: 1483008725 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle/AssetBundlePreloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc6351a653ea64ecb891e0f6eaa908fb 3 | timeCreated: 1483012037 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle/README.md: -------------------------------------------------------------------------------- 1 | #AssetBundles 2 | AssetBundle management utilities. 3 | 4 | see [gitpitch](https://gitpitch.com/sassembla/autoya/doc?p=doc/gitpitch/modules/AssetBundle) 5 | -------------------------------------------------------------------------------- /Assets/Autoya/AssetBundle/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a549b55a96c54e898b48b0e92f9f5e8 3 | timeCreated: 1469785633 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/AutoyaDependencies.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2139b79456df44960b011ab42a6a4638 3 | timeCreated: 1504277925 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1530086949d8f4b30b92404a88c877ed 3 | folderAsset: yes 4 | timeCreated: 1469782720 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/AppManifestImplementation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 852b2ae9db920489d94c2e9a085d84cb 3 | timeCreated: 1507400329 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/AssetBundlesImplementation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b62caaaf58ac442b1b95e70bfbcd441d 3 | timeCreated: 1483122488 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/AuthenticationImplementation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4d338a31cc0c43d9b42979b09c5f058 3 | timeCreated: 1484495265 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/AutoyaConstructor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab6efc27462e4c7998d23540c726709 3 | timeCreated: 1484495265 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/AutoyaEntryPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8314e513ee462429d97a54a9901489ac 3 | timeCreated: 1469790612 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/BackyardSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70e2789ac93794f32bc16d2c24e32736 3 | timeCreated: 1481102976 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/EndPointSelectorImplementation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9987cc0d2d00044ef896c76b9b632686 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/IUpdater.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | 3 | namespace AutoyaFramework 4 | { 5 | public interface ICoroutineUpdater 6 | { 7 | void Commit(IEnumerator iEnum); 8 | void Commit(params IEnumerator[] iEnums); 9 | void Destroy(); 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/IUpdater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5cdb6d930da14ef09e9a5ef6d168c49 3 | timeCreated: 1483770963 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/MaintenanceHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f61fc7301b5344a87afb15ddd11472b4 3 | timeCreated: 1484496845 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/NotificationCenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b2418bff76c64f59bad72e278c0b02a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/OverridePoints.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a42b7637efb64b369dda7965632849e 3 | timeCreated: 1484501219 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/PersistImplementation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a0587ff48d994fd8b4f99d15f7a505d 3 | timeCreated: 1470470266 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/PurchaseImplementation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5447b14b23b5497293979026e4d6ca3 3 | timeCreated: 1484617976 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/README.md: -------------------------------------------------------------------------------- 1 | # Backyard 2 | entry point and core API gateway of this framework. 3 | 4 | Provides access for this framework's features. 5 | 6 | Let's type "Autoya.X" to access features. -------------------------------------------------------------------------------- /Assets/Autoya/Backyard/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 429ce9486f53e401aa2c3488d4de2090 3 | timeCreated: 1469785633 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Connections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43c2ad06cfff2494fa4cbb76f6821d99 3 | folderAsset: yes 4 | timeCreated: 1469782720 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Connections/HTTP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 756b0626c83fc40bdaca5f4c433b1939 3 | timeCreated: 1469801319 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Connections/IP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7782a04b27074cf8ae484ec83a3a5b0 3 | timeCreated: 1510155328 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Connections/README.md: -------------------------------------------------------------------------------- 1 | # Connections 2 | connection utilities which can connect from Unity to outside, e.g. http. 3 | 4 | ## Contains 5 | * http/1.1 6 | 7 | ### Get / Post / Put / Delete 8 | 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Connections/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 952983696604e4017baff2ad80c91842 3 | timeCreated: 1469785633 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Connections/Udp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c832c0885edac4071887b78bfbb3b992 3 | timeCreated: 1510155226 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1ef5dab743ba4078ad82253299d8a84 3 | folderAsset: yes 4 | timeCreated: 1486877321 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/FileController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5314579a55b0540de9799b0fe62497f3 3 | timeCreated: 1486878574 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58b481f9cd0604abdb8464a1991d736c 3 | folderAsset: yes 4 | timeCreated: 1486877322 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/SuekkoEditorWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63dd81b52397d433ba175850794cc412 3 | folderAsset: yes 4 | timeCreated: 1486913495 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/SuekkoEditorWindow/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11619db6af18f4b24829b39c5cebc22b 3 | folderAsset: yes 4 | timeCreated: 1450270397 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/SuekkoEditorWindow/Editor/GUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3db47e40ea910496a9b2b237ab7f6daa 3 | folderAsset: yes 4 | timeCreated: 1450270398 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/YamlDotNet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53aa34cf287af4e1abaab0b3b2c36284 3 | folderAsset: yes 4 | timeCreated: 1486958462 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/YamlDotNet/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66224aaf40eec4480b7c0d7a53234736 3 | timeCreated: 1486958462 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/YamlDotNet/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Autoya/Editor/Libs/YamlDotNet/YamlDotNet.dll -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/YamlDotNet/derivedfrom.txt: -------------------------------------------------------------------------------- 1 | https://github.com/aaubry/YamlDotNet 2 | 2017/02/13 12:54:09 -------------------------------------------------------------------------------- /Assets/Autoya/Editor/Libs/YamlDotNet/derivedfrom.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a30072a0b5cce44099cd44a5b9abf910 3 | timeCreated: 1486958470 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Encrypt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 241f93121891549edb77d5cdc4d9b761 3 | folderAsset: yes 4 | timeCreated: 1470932580 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Encrypt/AES256.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9042c13098b924be5b5d051c5a67d5d7 3 | timeCreated: 1471147943 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Encrypt/README.md: -------------------------------------------------------------------------------- 1 | # Encrypt 2 | Contains Encryption algorythm(AES) and Hashing algorythms(SHA-2, RIPEMD160). 3 | 4 | -------------------------------------------------------------------------------- /Assets/Autoya/Encrypt/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9521d6c800f04281a3241a1e4b94e69 3 | timeCreated: 1470932638 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Encrypt/SHA_2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 016491daae8c94df9b41bfb983d0c0d7 3 | timeCreated: 1471105682 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/EndPointSelector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4c0aa3dfd3a74bf0a47998e51fe1811 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/EndPointSelector/EndPointSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78fbc0d2032a34a00b6dff9b8dc22c6e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Information.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 332e30ff63298415292185923f9c0982 3 | folderAsset: yes 4 | timeCreated: 1486042873 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7fb252e026404272bc5854f2866c724 3 | folderAsset: yes 4 | timeCreated: 1504758028 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/Editor/Antimaterializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5a4c34bce44d426087d093bcc2b6195 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/Editor/FileController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b44a0354652784cde8510cb34f8785ad 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/Editor/Reporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a544facd9f5f34d8d8dcba2116df8a40 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84ec57b849cf04a7fb962cade2afa3c7 3 | timeCreated: 1490059242 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/UUebView.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Autoya/Information/UUebView.dll -------------------------------------------------------------------------------- /Assets/Autoya/Information/UUebViewComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dffed11e808384975952c474251f07bd 3 | timeCreated: 1504164074 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/UUebViewPlugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e6a8f4094bba4c29b00da8b4200972e 3 | folderAsset: yes 4 | timeCreated: 1521469373 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Autoya/Information/UUebViewPlugins/TMProPlugin.cs.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Autoya/Information/UUebViewPlugins/TMProPlugin.cs.gz -------------------------------------------------------------------------------- /Assets/Autoya/Information/UUebViewPlugins/TMProPlugin.cs.gz.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dbd51f1e0f8f409993cffd251f70991 3 | timeCreated: 1518711518 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Keyboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08c0f2eac60a34ddebbf07b57a8af626 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Keyboard/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56aaa4982639f486696cf1a15e38f7ae 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Keyboard/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2e19fd0b15b448c286da01fcae763fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Manifest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 591e06ab5d2c74ffdb5323fa04144a5b 3 | folderAsset: yes 4 | timeCreated: 1507346032 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Manifest/AppManifestStore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee2c1edfacf54b2881227afb2908a6c 3 | timeCreated: 1507346032 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Manifest/ShouldGitIgnore.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0030a53f8b6444729b406dffb37b31a5 3 | folderAsset: yes 4 | timeCreated: 1507433984 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Manifest/ShouldGitIgnore/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71fff1e640b75453bba85c339aabad48 3 | folderAsset: yes 4 | timeCreated: 1507354372 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Manifest/ShouldGitIgnore/Resources/dummyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Autoya/Manifest/ShouldGitIgnore/Resources/dummyfile -------------------------------------------------------------------------------- /Assets/Autoya/Manifest/ShouldGitIgnore/Resources/dummyfile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88c6ad796e6d444d7818ec2f51b93045 3 | timeCreated: 1507434027 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Notification.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b987c88597c56425b818e89945950899 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Notifications.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d64a5028c6646494d935254e9ba0d881 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 154795c5483334ca894140f70b12c52e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3c64155890e4e6c818dca6f80572a4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Plugins/Android/URLSchemePluginProject.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Autoya/Notification/Plugins/Android/URLSchemePluginProject.zip -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Plugins/Android/URLSchemePluginProject.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c35e88767624eeebafadb7adb58a3a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Plugins/Android/urlschemeplugin.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Autoya/Notification/Plugins/Android/urlschemeplugin.aar -------------------------------------------------------------------------------- /Assets/Autoya/Notification/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27858c2949c7d4591828359d0cf116df 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e5b39bffdf574f0c9fa483a1cbe9a4f 3 | folderAsset: yes 4 | timeCreated: 1469782720 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/CacheHit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 261b240badf3f4b7a9106f099aa74cfb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/CacheHit/CacheHit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eff286acd7aad4f35b1fea37b6b61ee1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 698f8d8d5cbab4101beac8ea8c01152e 3 | folderAsset: yes 4 | timeCreated: 1519567028 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/FilePersistence.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92a648f97462643358ee22f2a5a10263 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/FilePersistence/FilePersistence.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8052ecf70cd41838b777a314e3d020 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/InAppDB.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9f5aa3d1d3ca477eb93d04c4e59e563 3 | folderAsset: yes 4 | timeCreated: 1534858175 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/InAppKVS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ceb0c175662314e96b54819b7bc407 3 | folderAsset: yes 4 | timeCreated: 1534495507 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2445e995c6fe41dcaa91efbf30e7782 3 | folderAsset: yes 4 | timeCreated: 1470502147 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed2f48e1817c343838d5e5b2758ee080 3 | folderAsset: yes 4 | timeCreated: 1470502244 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/README.md: -------------------------------------------------------------------------------- 1 | # Persistence 2 | Utility for small-string JSON persistet function, and other local Database support. 3 | 4 | ## Contains 5 | * string persistency 6 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 612b650a713fc412c8718969d9fdd98d 3 | timeCreated: 1469785633 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/URLCaching.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 300fdcae883ef4b0daea1cba5f0dff94 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Persistence/URLCaching/URLCaching.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 526cdb84319594850bae31788e91464d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Purchase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b48e837d2e144cd08318b9595670125 3 | folderAsset: yes 4 | timeCreated: 1469782720 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Purchase/AntiUnityGameServiceSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2043a41d67d8a491892fa9f6e8cbf489 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Purchase/LocalPurchaseRouter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 967a2a3c3ef0e4c84858d7699fed3036 3 | timeCreated: 1504198695 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Purchase/PurchaseRouter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54e5ef0b0377c4b96b89e3440d2ff5f0 3 | timeCreated: 1483170850 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Purchase/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03fbc86c250f24bc09195685ef7d8aa7 3 | timeCreated: 1469785633 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/Representation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8575dd2ce9c454f15860c971e77ea7b2 3 | folderAsset: yes 4 | timeCreated: 1481102209 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Representation/Base64.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e68a07b552648919feb0b0c63576a0 3 | timeCreated: 1481176189 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Representation/JWT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de9a56d4f36bd4db1be0ba96408e07ac 3 | timeCreated: 1481102209 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/ResourcesControl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ce1a2fc3f2f64458af97f1ef7720310 3 | folderAsset: yes 4 | timeCreated: 1524012248 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88b1944df7a0f45098197033e7598df3 3 | folderAsset: yes 4 | timeCreated: 1481102976 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/AppSettings.cs: -------------------------------------------------------------------------------- 1 | namespace AutoyaFramework.Settings.App 2 | { 3 | public class AppSettings 4 | { 5 | public const string APP_STORED_RUNTIME_MANIFEST_DOMAIN = "app"; 6 | public const string APP_STORED_RUNTIME_MANIFEST_FILENAME = "app.runtimemanifest"; 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Autoya/Settings/AppSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dae0a9da54c004bf2a3032d5ca273571 3 | timeCreated: 1507302730 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/AssetBundlesSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af5f907b21d7040c58f4dd93d3243d4f 3 | timeCreated: 1484617976 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/AuthSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aa44aa3a8eeb40ae9028cf7ac5e20b4 3 | timeCreated: 1481103315 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/EndPointSelectorSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8641620a5178d455d892c853a3376a5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/MaintenanceSettings.cs: -------------------------------------------------------------------------------- 1 | namespace AutoyaFramework.Settings.Maintenance 2 | { 3 | public class MaintenanceSettings 4 | { 5 | /* 6 | urls and prefixies. 7 | */ 8 | public string MAINTENANCE_URL = "http://google.com"; 9 | public const string MAINTENANCE_PREFIX = "maintenance_"; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/MaintenanceSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5949382da0db40d7a19568718c0085f 3 | timeCreated: 1485066814 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/Settings/PurchaseSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25d40803100284113b1948da90494556 3 | timeCreated: 1483844280 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Autoya/ThirdPartyAuthentication.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb963f9abfb07406c8cc047cbd39a281 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/ThirdPartyAuthentication/SignInWithApple.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df58543d2985f44709bff8d29ffc4fb2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/ThirdPartyAuthentication/SignInWithApple/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ea7e430a58794837ac194fa3335e243 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/ThirdPartyAuthentication/SignInWithApple/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f89a6cb570b284fd3a81209bd4f40a5d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/ThirdPartyAuthentication/SignInWithApple/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08eb2156b92324b0da3d8d30758b2df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Autoya/ThirdPartyAuthentication/SignInWithApple/SignInWithApple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c13c0391f112441aac9c1b28ba45329 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaSample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c04e0d53a4634af19061e561f4a22ff 3 | folderAsset: yes 4 | timeCreated: 1469782107 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/0_BasicUsage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c529d72a89634da08d5838637ba8eb5 3 | folderAsset: yes 4 | timeCreated: 1470722131 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/0_BasicUsage/BasicUsage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c785fc6a27a6a413f9f996d01bdec948 3 | timeCreated: 1470722157 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/0_BasicUsage/BasicUsage.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97e63b263ca1b4fe3a52c463fa184a3a 3 | timeCreated: 1469782758 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/0_BasicUsage/BasicUsageSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1000e7c5613e34989bf240e42c605adc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/10_AppManifest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a43ab764558944f1f91b38fef8655f9f 3 | folderAsset: yes 4 | timeCreated: 1507355548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/10_AppManifest/AppManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66d3b8d4863a54482ba6f9d908da0883 3 | timeCreated: 1507304678 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/10_AppManifest/AppManifest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0087e875557d9485abe5e891687ed4fe 3 | timeCreated: 1507304649 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/10_AppManifest/AppManifestSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d135e24e6c73f4f308b6c4ca49348ea8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/11_Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06e731fe420ed48b49da8d0cf1f522ed 3 | folderAsset: yes 4 | timeCreated: 1524014250 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/11_Resources/LoadResourcesSample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 586996ae0f4d7463f9e171586e44d3d0 3 | timeCreated: 1524014708 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/11_Resources/LoadResourcesSampleSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85a9e616f2d63439aae6a9cc2270079e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/11_Resources/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d78681ed86394149bbc38f5f0802c76 3 | folderAsset: yes 4 | timeCreated: 1524014250 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/11_Resources/Resources/SampleResource.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5da9966faae40eeb8b7f661b98175a 3 | folderAsset: yes 4 | timeCreated: 1524014656 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/11_Resources/Resources/SampleResource/shisyamo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaSample/11_Resources/Resources/SampleResource/shisyamo.jpg -------------------------------------------------------------------------------- /Assets/AutoyaSample/12_ThirdPartyAuthentication.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9db309026aad8469e9a7e7a568b819e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/12_ThirdPartyAuthentication/SignInWithAppleSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac805200d63f94631b675a22f692c6eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/12_ThirdPartyAuthentication/SignInWithApple_SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9abfde025f31458bbfe90c4322d393d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/12_ThirdPartyAuthentication/SignInWithApple_SampleSceneSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 515e5fdfd0e55402c8761bc78d63d579 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/12_ThirdPartyAuthentication/idTokenVerificationSample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d505a1aaa17f4c22903ff718458d165 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/12_ThirdPartyAuthentication/idTokenVerificationSample/verify_idToken.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a405ac424859048a4bca4075762c3a2f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/1_Connections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8102d235734b64b92b791fdd2b757556 3 | folderAsset: yes 4 | timeCreated: 1483122899 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/1_Connections/HttpConnections.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6edd28275a5d24d7294a723c5959b46e 3 | timeCreated: 1483605111 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/1_Connections/HttpConnectionsSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a350cec954d874d6989d92fce1df07f4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/1_Connections/UdpConnections.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 468d57b89394d4e9dbfccd3cc817156e 3 | timeCreated: 1510202141 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/1_Connections/UdpConnectionsSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fb8de77be8d4447ea0a5cefa37dfda5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa4cde0f7e4b3447b853624349899ad1 3 | folderAsset: yes 4 | timeCreated: 1469782064 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle/AssetBundle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8fa9302a3d074200a137d5e267a158f 3 | timeCreated: 1483095108 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle/AssetBundleSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 045777dffa4334f6a99fa3ce37c21148 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle/PreloadAssetBundle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39e2d94f300004725b865eb152b64e8d 3 | timeCreated: 1497196374 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle/PreloadAssetBundle2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2866a2ce8377a49fbb063a811069f10b 3 | timeCreated: 1497199682 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle/PreloadAssetBundle2Settings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab235809985d421897c32459d5aba52 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/2_AssetBundle/PreloadAssetBundleSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d1afb497374a4f58b9699787a6f0d68 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/3_Purchase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36aa7d14236ec44e1865fd00d1b3ab34 3 | folderAsset: yes 4 | timeCreated: 1483122899 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/3_Purchase/LocalPurchase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf60f0b3cfab3495b80f91f24c56abfd 3 | timeCreated: 1504199359 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/3_Purchase/Purchase.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c45b57c72ab141aa94095f6b3c1766d 3 | timeCreated: 1483818310 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/3_Purchase/PurchaseSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36b6fb3d0f14f4eb8b83f9a694ac9c28 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/3_Purchase/RemotePurchase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3344e7e4d268b4ba5a20841532437498 3 | timeCreated: 1504199359 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/4_Persistence.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed57caccf25394cae9a18457eb27077a 3 | folderAsset: yes 4 | timeCreated: 1483122899 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/4_Persistence/Persistence.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a2805bfe3b214ddaa0b842f0c9182c3 3 | timeCreated: 1485875352 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/4_Persistence/PersistenceSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0712b3b78489a4721940bb74ea7a787d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/4_Persistence/URLCachingUsage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2d4c4c9753a345f98f96959e73f541c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/5_MaintenanceDetection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c571a8133e894f6191432b55613e8ad 3 | folderAsset: yes 4 | timeCreated: 1484498175 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/5_MaintenanceDetection/MaintenanceDetection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 385c6b59dcedc42dc924baebe751e673 3 | timeCreated: 1484498390 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/5_MaintenanceDetection/MaintenanceDetectionSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6566490411f34d13ba9c64f6dc08f6d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/7_Information.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d06be25fd8dd489ab9813d18a032916 3 | folderAsset: yes 4 | timeCreated: 1485107441 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/7_Information/Information.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c587e38b27042467cb57771d4714f484 3 | timeCreated: 1486042104 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/7_Information/InformationSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11307619c4f1e49d88d9be3036203cc6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/7_Information/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c72616aa129e44f78192a34b19194a6 3 | folderAsset: yes 4 | timeCreated: 1503349976 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/7_Information/Resources/items.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65175520398c648e4a5bc21797a03388 3 | timeCreated: 1503349909 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/8_MainthreadDispatcher.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df411b46023c44a7c98779051d7c7dec 3 | folderAsset: yes 4 | timeCreated: 1496673355 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/8_MainthreadDispatcher/MainthreadDispatch.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3502af7413b24d9d97ab48a84e3410c 3 | timeCreated: 1496673376 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/8_MainthreadDispatcher/MainthreadDispatchSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdabec4e96b1c4f0d8b720a250468661 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/9_Notification.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 930b094f8d0e941f3b5ad578ea90eec1 3 | folderAsset: yes 4 | timeCreated: 1497966987 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/9_Notification/Notification.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc11ee8d8bcd44ffac79278348509a5 3 | timeCreated: 1497967019 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/9_Notification/NotificationSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0042ac2bb1a64fe2a2eb0ab58d3d5eb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/9_Notification/URLSchemeSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6ef6ac015119486aaa93edb7e0fad26 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/dummy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca2a3829a22184e099923e1ce267d43b 3 | timeCreated: 1483095566 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaSample/dummySettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 047c605fe0c9b4fd8821f4970ee5e5c4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75eb9eb92b4be4f3fa6de24c217a0925 3 | folderAsset: yes 4 | timeCreated: 1469786870 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dbd8e594250349bb96e20f8ae4073c1 3 | folderAsset: yes 4 | timeCreated: 1483520273 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6afc9553c51d44d08cb7b54aa8c26e9 3 | folderAsset: yes 4 | timeCreated: 1483116118 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbde2063ea7a247af90b8dee8dc443f0 3 | folderAsset: yes 4 | timeCreated: 1513148755 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources/nestedPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5ec1496f4ed40b9a67e5b76a534e22 3 | timeCreated: 1483116239 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources/textureName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources/textureName.png -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources/textureName1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24cb3b158b39942228bd6cd6f969b036 3 | timeCreated: 1483087164 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources/textureName2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6582ecf1a0cd414d898ca6887ba4a62 3 | timeCreated: 1483108629 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/MainResources/updatableTex.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44197a9e9fe0f4bae9fefc4e38cf2db7 3 | timeCreated: 1489367384 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/SubResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1b002261631445889550408a07778ce 3 | folderAsset: yes 4 | timeCreated: 1512983438 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/SubResources/sample.txt: -------------------------------------------------------------------------------- 1 | {"key":"value"} -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/SubResources/sample.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c28f9162764b046f4914146389738ef1 3 | timeCreated: 1513144347 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/SubResources/sample2.txt: -------------------------------------------------------------------------------- 1 | {"key":"value"} -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/AssetBundles/SubResources/sample2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf9687b0f4c6049838695ff5eff91d16 3 | timeCreated: 1513575212 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 906349db72e964d969d83261e6d3cc99 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints/empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints/empty.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f21cde012ee64619b578d4919fb4403 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints/mainAndSub.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": [ 3 | { 4 | "key0": "val0" 5 | }, 6 | { 7 | "key1": "val1" 8 | } 9 | ], 10 | "sub": [ 11 | { 12 | "key1": "val1" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints/mainAndSub.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5673337bec2264f25a1d4fba9251056e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints/sub.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub": [ 3 | { 4 | "key1": "val1" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/EndPoints/sub.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e13073a6b55c34cdc84a18707401d685 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77ec50b64b4d9497880339851cb272b1 3 | folderAsset: yes 4 | timeCreated: 1502813201 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c412b81059b4a4bd59744b8ee324d9a3 3 | folderAsset: yes 4 | timeCreated: 1502813209 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82b81495ec32340ecad2104145616842 3 | folderAsset: yes 4 | timeCreated: 1502813225 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/bg.png -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/button.png -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/new.png -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/test.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84df76d3a620046bdb6ec1b3af64f59e 3 | timeCreated: 1502813884 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaTests/RuntimeData/InformationSample/Resources/InformationSampleRes/textbg.png -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/bundledScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f2a3751c212940a29c847a5259b2daa 3 | timeCreated: 1524621524 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/bundledSceneSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f8bf566bd0f749f282489a1fc537608 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/RuntimeData/inSceneImageData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/AutoyaTests/RuntimeData/inSceneImageData.png -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 252977dfafda646118a7468b3325fb36 3 | folderAsset: yes 4 | timeCreated: 1497846821 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/AssetBundles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4023521ea17314fa78f5ab2552d662b4 3 | folderAsset: yes 4 | timeCreated: 1482999420 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Backyard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30f7519e037344859a118e69db57e172 3 | folderAsset: yes 4 | timeCreated: 1481118885 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Backyard/AssetBundlesListAddTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efc27b4174a0141c896e64564e63a124 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Backyard/AssetBundlesListUpdateTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db84663a7a97a4bff8617b2afa3a6478 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Backyard/EndPointImplementationRetryTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 194b991ddcf6542ebb714ca7847e3314 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Backyard/EndPointImplementationTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb1d623746624f8d8dff0ed54148488 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Backyard/PersistImplementationTests.cs: -------------------------------------------------------------------------------- 1 | using Miyamasu; 2 | 3 | /** 4 | test for persistent data control in Autoya specific domain. 5 | */ 6 | public class PersistImplementationTests : MiyamasuTestRunner 7 | { 8 | // no test exists yet. 9 | } -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Connection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfa08ca2375924d5ca44d7d6bdc2656b 3 | folderAsset: yes 4 | timeCreated: 1510156130 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Connection/IPTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c2b3fdfe135548bea43e0bf058fb1e4 3 | timeCreated: 1510156130 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Connection/UdpTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b5e16400f7804be58bd0f1ebea83a9f 3 | timeCreated: 1510196411 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Encryption.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de97b0ee26a904ff7968fde5c0f23a4a 3 | folderAsset: yes 4 | timeCreated: 1481118885 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/EndPoint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dc4f6273741e4c93ac1bec9050dcf85 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/EndPoint/EndPointTestTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7980a5e1d5eb74ac5a81962b3f0e50f7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/EndPoint/EndPointTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760c72a4f67264a65ae3f6b30c100895 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Information.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1348217fbd0c24d2689eb67232aff89a 3 | folderAsset: yes 4 | timeCreated: 1486043308 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Information/Test_Information.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 489f9567e90dd40bcbaf5a93ebf564a1 3 | timeCreated: 1503308471 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Information/Test_InformationSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f240f6f91b7f40eeb412ff3c8cc5336 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Manifest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07e20c3b2122a4c6785d302d7d316f04 3 | folderAsset: yes 4 | timeCreated: 1507355548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Manifest/ManifestTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2339ac96615942369f3281fb57c280a 3 | timeCreated: 1507355548 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Notifications.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94e3f618d30d94e30a42b14d6a6727f4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Notifications/NotificationTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ca9c88bbe37647da9e1c3fc62b7a9dc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Persistence.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7da1b9e359c35482b918c2f49e3f2edf 3 | folderAsset: yes 4 | timeCreated: 1481118885 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Persistence/CacheHitTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 723d1dac39efa416e96150f1105392d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Persistence/URLCachingImplementationTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d07be2f9bb82d4038b34ab503a159295 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Purchase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84b2750483c7a4dec961a8ad094bfae9 3 | folderAsset: yes 4 | timeCreated: 1483124480 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Purchase/PurchaseRouterTests_binary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc18ce94fc7d14453acb0b566b9cc6a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/Representation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 317dfc139ca314e43b63ffe230026038 3 | folderAsset: yes 4 | timeCreated: 1481118885 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/TestMBRunner.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using UnityEngine; 4 | 5 | public class TestMBRunner : MonoBehaviour { } -------------------------------------------------------------------------------- /Assets/AutoyaTests/Tests/TestMBRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b589b1582520543cbbcc4b79c591d8dd 3 | timeCreated: 1505574049 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d186eaf401b4d88851d057335e5058 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c086166f6a70f4074bcf5aa330ec8dfc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 692756b7fdd9f4411bbd93983102a82a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Cache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b1570c24652b44c0a2373aeb80d0501 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Cache/TemporalSettingFiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf8a20684edce4013bbf492ebc88288a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Cache/TemporalSettingFiles/AssetBundleBuildMap.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35d68877601ee448e9dc2b63ccd3c80b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Cache/TemporalSettingFiles/AssetReferenceDB.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ebbadce6891a432c825e2f9f89902e6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2ab0393a5b4416eac5b085ee3e00a9 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a25d0a90608db4dc58c635afb9963abc 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/AssetLog.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e37e335925e27435baa014373861de89 3 | folderAsset: yes 4 | timeCreated: 1511505595 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/BatchBuild.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0afaedd72b2d48c89c437ea34dba208 3 | folderAsset: yes 4 | timeCreated: 1511855957 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3706d7e9bff914014a8c0d30e8f854e6 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/AssetGraphWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/AssetGraphWindow.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/ConfigGraphIcon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/ConfigGraphIcon.psd -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/ConnectionPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/ConnectionPoint.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/InputBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/InputBG.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/LineDraw.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bc0d9d4d7b8e478c831da74cdf06151 3 | timeCreated: 1484128090 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9ba3c3f58d8248e5b038dc004496686 3 | folderAsset: yes 4 | timeCreated: 1488091594 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node0.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node0@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node1.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node1@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node2.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node2@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node3.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node3@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node4.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node4@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node5.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node5@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node6.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node6@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node7.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node7@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node8.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node8@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node_images_source.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node_images_source.psd -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node_images_source@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/node_images_source@2x.psd -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node0.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node0@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node1.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node1@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node2.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node2@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node3.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node3@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node4.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node4@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node5.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node5@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node6.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node6@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node7.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node7@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node8.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeImage/on_node8@2x.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/NodeStyle.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75ce4a2b9ce8e45f9bcb12d38ed95952 3 | timeCreated: 1488089891 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/OutputBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/OutputBG.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/d_AssetGraphWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GraphicResources/d_AssetGraphWindow.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/GroupView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd83f78206d344ebebc090b37a2dd114 3 | folderAsset: yes 4 | timeCreated: 1502003763 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/GUI/ProjectSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4043dad9a38a8409a899553f3c5cd7ad 3 | folderAsset: yes 4 | timeCreated: 1511671793 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae91ca49976fe49178d41acfea7af334 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyFilter.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d00d589513e244e05b12dce92ddf25e4 3 | timeCreated: 1494625784 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyGenerator.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2134a1fa3afdb4b909185365e52219d1 3 | timeCreated: 1498734414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyImportSettingsConfigurator.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ec3f597ff024afa8b9a0ce8c69f9d5 3 | timeCreated: 1509658034 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyModifier.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 207f0a157f97848d7ac7a9009b66e802 3 | timeCreated: 1494625784 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyNode.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f2454976b5ed4e628d9e910951d08d7 3 | timeCreated: 1494625784 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyPostprocess.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9291133251fa94285b90b7ea1ab5ae4f 3 | timeCreated: 1494625784 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/ScriptTemplate/MyPrefabBuilder.cs.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb428e679ba4945b382b08d1e15bdbd9 3 | timeCreated: 1494625784 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0773a8d9b59e749e8a5f73efa45919b4 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/readme.txt: -------------------------------------------------------------------------------- 1 | What are these files? 2 | 3 | setting.* work with ImportSetting node and used to save asset's import settings. 4 | It is only intended to be copied and hold import settings of each ImportSettings node, and not used anywhere else. 5 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e5b4f272c13400db25084f10fea6a1 3 | timeCreated: 1494625789 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.fbx -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.m4v -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fea4e72e0941e42bdb611e8fa916dd2c 3 | timeCreated: 1509346985 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.ttf -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/SettingTemplate/setting.wav -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5d679e462d4f4ab084e50d088f51a44 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/AssetGenerators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8154e1953b67f400cb8a7ecf91490326 3 | folderAsset: yes 4 | timeCreated: 1498658414 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a0a5b2a9f6674dccae5da7df81e5a98 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Exception.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e3a3bf53490948d1ad369577a66b263 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Exception/AssetGraphException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using System.Collections; 4 | 5 | namespace UnityEngine.AssetGraph { 6 | 7 | public class AssetGraphException : Exception { 8 | public AssetGraphException(string message) : base(message) { 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Filters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72ed3432ab4644eb59375981e4a7fe59 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Importers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d123776dddc2d44d7a26dcefb59f3595 3 | folderAsset: yes 4 | timeCreated: 1507552315 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19f44f51e63d849839580c465de537a1 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9f0dbc38109742b8b169ab66e8172d2 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Model/V1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b25a542caf7ff40f58e6cf517affcf47 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Model/V2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357dba0de306645a3992bbd2621d71bc 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Modifiers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd98027e9703d4feead80e890f5e2fd7 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Node.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a0d850aaeed24132954c8ccb9b7d238 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Node/Buitin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce553c06e42d7431d862637ca1e18e57 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/PrefabBuilders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7322e72cf9fd147ec8957c7c99d578e5 3 | folderAsset: yes 4 | timeCreated: 1494893277 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cd10f53451414f35b4a646f7d58558c 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Utility/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/System/Utility/Square.png -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/Editor/Test.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c24f23aec48884c6f93304a648ae269f 3 | folderAsset: yes 4 | timeCreated: 1494718745 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/AssetGraph-1.4-release/UnityEngine.AssetGraph/EditorRuntimeSupport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 490188172e6e14f5b88e2b03b107b2aa 3 | folderAsset: yes 4 | timeCreated: 1494625784 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50eba60dcce3c4202bcf905c62d40b59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration/LinkXMLGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16b266cc62d244fceb9cc3255beb6405 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration/ListVersionSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b1965ebcb8ed4b8f9c239f1712b30ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration/ListVersionSettings/main_assets.json: -------------------------------------------------------------------------------- 1 | {"identity":"main_assets","version":"1.0.0"} 2 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration/ListVersionSettings/main_assets.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b365b28ae20ec41abbfa5e14315da389 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration/ListVersionSettings/sub_assets.json: -------------------------------------------------------------------------------- 1 | {"identity":"sub_assets","version":"1.0.0"} 2 | -------------------------------------------------------------------------------- /Assets/Editor/Autoya.AssetGraphIntegration/ListVersionSettings/sub_assets.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15272b41e3fd4498eacbc3faa7100875 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor/AutoyaEditorTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a33ebcb65ebf847f4bf68ddd49a6b5a5 3 | timeCreated: 1513152788 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/derivedfrom.txt: -------------------------------------------------------------------------------- 1 | https://bitbucket.org/Unity-Technologies/assetbundlegraphtool/src/6b07fea26dbcb59c76db466d87666d6a716b3e50/?at=1.4%2Frelease 2 | 2018/06/11 12:02:09 -------------------------------------------------------------------------------- /Assets/Editor/derivedfrom.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc5260ec2e5ad4118ad681fc8a99cc35 3 | timeCreated: 1512982598 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/graphs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8185d7ce47f7b4261aeb6a1086f7f58a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/graphs/main_assets.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29f1597c665764d9e90b435196896d41 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/graphs/sub_assets.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4d29bcf24c55485d9da2cd32aebfe28 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 797f0c0925658496b9a51b6558819063 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ee4e313ebf5b4a1c819227c5b0f611d 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Editor/FileController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1d667b6f747a4c25860e0c4a4e4d424 3 | timeCreated: 1504968115 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Editor/SettingWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f7b7c3b6382c41c180e2fd3a7d9d677 3 | timeCreated: 1505131467 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 352fde4c2658b46db8fd38b4d8868aab 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e61dbcf1853df45eebece37b5d02d5de 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Generated/GeneratedTestEntryPoints.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20cf686037c414db284267bfd46165ac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 482e8542c244a4593ac1c98575bae2f8 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55a4f9a9f1a20455fac1735ef8925c34 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9fded97a04c44f67b72ac64e15d4730 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0004fef10cf5449ab854f2255095e175 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 279bc15bb64b14520a32e7da351df615 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52d864eab99ad4d6ea6a0aee7aaafc39 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/BG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 930036374055b4b979f30b0e7075ece0 3 | timeCreated: 1505423257 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/CHECKMARK.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e45ed4cf838fe446eb41c0d7cca4c557 3 | timeCreated: 1505423258 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/CONTENTTEXT.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 470e6520d97234d5f89039607e5e4adf 3 | timeCreated: 1505423259 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/ERROR.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1d19d4f2ae2342a88a65218645d4def 3 | timeCreated: 1505423258 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/FAIL.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e2d44609749346b69c9495f77fcb798 3 | timeCreated: 1505423258 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/ICONBG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67f46aaa3a61041c4a7643de662213e5 3 | timeCreated: 1505423257 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/PASS.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba2bb307d51bc4e479fe4e101d37295d 3 | timeCreated: 1505423259 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/TEXTBG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bbb2e4a841234f29b0f7698a19bc043 3 | timeCreated: 1505423257 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/TIMEOUT.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a945879def12d4371b851e060a6ecd3a 3 | timeCreated: 1505423259 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/UUebTags.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cf7c14194bc145bd89be2204c82e513 3 | timeCreated: 1505423260 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/UUebView/Runtime/Resources/Views/ConsoleTag/WARNING.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c699e90bb8814bcf8bf22ada0d8b9f7 3 | timeCreated: 1505423258 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Libs/jumper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Libs/jumper.dll -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49d115b0c868b458d8e4c0db03524b04 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8f984eb57fb34642a9b5015656ca625 3 | folderAsset: yes 4 | timeCreated: 1505541029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/MiyamasuCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e6a514caf8074b77ab7b6aaaea937e0 3 | timeCreated: 1505135478 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/error.png -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/fail.png -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/pass.png -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/slack.png -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/timeout.png -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuPrefabs/warning.png -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuSettings.txt: -------------------------------------------------------------------------------- 1 | {"runOnPlay":true} -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Resources/MiyamasuSettings.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7031d2a1ce77549d2a0e76fd25ae4517 3 | timeCreated: 1485880030 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MiyamasuTestRunner/Runtime/Settings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be8cd10c5c5547e68b77a46bd343a34 3 | timeCreated: 1485879971 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Packager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1504698cd28c4f1080344c9ad2d3961 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Packager/AssetBundles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e42aedafd4c44a9889c2c0c6504cfac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Packager/AssetBundles/AssetBundlesLoadSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acdf0bddd860b4da4b1976aaed73ff9d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Packager/AssetBundles/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8546556c846534761ac30dd8aeb2f61e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Packager/AssetBundles/Editor/AssetBundlesPackager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cdf64c4aea164689ad25bd2ff155e74 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.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82b4721ffd3564168b7f663fe5a055ec 3 | folderAsset: yes 4 | timeCreated: 1483167112 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 881b707dc7cd6438084d4982662efb62 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/AutoyaAndroidPlugin/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c7488c63d78d4d9a9f85acb93a89dc9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/AutoyaAndroidPlugin/project.properties: -------------------------------------------------------------------------------- 1 | target=android-16 2 | android.library=true -------------------------------------------------------------------------------- /Assets/Plugins/Android/AutoyaAndroidPlugin/project.properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d0a71d497dd1497698ddd8b42d7a5ba 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d380b0573c0ec4b72a61928c20936359 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d8a5c56437b84f7c95c388e8fd20c3d 3 | timeCreated: 1524114479 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/IAPProductCatalog.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79f2b6132f51b48038c5544d374fb160 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2511b6173187b493189055f73451c6a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/FOT-SlumpStd-DB.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Assets/UUebView/FOT-SlumpStd-DB.otf -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfaaa31fbefb84bba95bcdfe5831e13e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50cb16c43e93a4846a1d5954d9ff9302 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bbfca46737bf4e7194a8cedc551a0a5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 139563b4c7107428c9cc32c5c3878196 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/A.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faf47e19f55544fafac36074c0496dcc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/BODY.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc1750a390a64f5f8f0fa188f38ed83 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/CODE.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cd36c958813a44ceb58d1eaefe3827c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/EM.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 944b4dcd299ab4a81b4aa1a2b33be9b4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6b7f0bdb0bbd4419a8150c87f9e1592 3 | folderAsset: yes 4 | timeCreated: 1518678216 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/Editor/Default.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c9c93c53b37745ccb8901ff1489fd8f 3 | timeCreated: 1531106418 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/H1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8854d3a15b59e49c3a11e48b110aa0c7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/H2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7b4d400947ac4dba9b07c5df219c894 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/H3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 681b9db99989446a4b5defc5b1c38546 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/H4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efc78e892ae6646b8b9f922f8d15eca8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/H5.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 147e1c5e3b84d42abb5da0f6a995d7ec 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/H6.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ed39f609e1a14c66a64bc4229d2634b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/HR.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f6d2184abe50470ca9c311e3c7c1d00 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/IMG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fdf9b215ba8b41eab51993ce9e31dd8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/LI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 710c527ffdb7f4b25a392f45cd733c84 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/OL.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b75fbb59985284e6295a0fff88ce22ab 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/P.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fac941bb5da764205a1cdc5328e97354 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/PRE.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7976a17623ac1438d8a77b8e1ccf6b66 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/STRONG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 915cd5b6f130d4702a71639f53541aed 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/TABLE.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 384247f14efc449209c30fa17f268d4f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/TBODY.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cae063ddc76f7473fab096e32ca39900 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/TD.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13171ab0bf8174959a2dd796f17d62db 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/TH.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7587bd5bb45d14d459aa674e8fc63ada 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/THEAD.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f707e1b57597248fbaf0da494c281547 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/TR.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9759046ea19bd4f1f876f5bef6a8d45f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/UL.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89fcf737c43a04757ae2e75fbd4ea42a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/Default/UUebTags.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fea02cfd1c82a4cf39144927560dd7bc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93d21f5ae8a724a2cb3367c1bd8e86fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/BG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39af4358c6ce647da8b1e384deace5dc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f192bd75e74854c63a8fefe2d8a91282 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/Editor/SampleInfoView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e8dda701edce4dcfb8a802cc79b7258 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/MYA.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9df07bfff56e4b4fbb99c86c7f4cc48 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/NEWBADGE.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e43aeb364013b4857b8d788222692557 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/SHOWBUTTON.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cfd6cfa37669493b97c700ea6e97df4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/SHOWBUTTONBG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70386adfe4bc543738485e577a33a7ea 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/TEXTBG.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7985c15d22a204e13a9aec1dc303b876 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/TEXTBOX.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31fbfd2e1739143bca7be3cf1c00d66e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/TITLEBOX.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 400ebb3a4d4e34e628d68835a317a77b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/TITLETEXT.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56923781e1583496c84e219055909dab 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/UPDATETEXT.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4f631c230c6c48c0a2dd2c2695f2742 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UUebView/GeneratedResources/Resources/Views/SampleInfoView/UUebTags.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e982cdb817d95458190ee8c2814dda6d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ViewGenerateTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2bd392310b224949bae3e0e3a93db9b 3 | timeCreated: 1501161757 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ViewGenerateTestSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dfd2d9b8c2f541fd91e40bc4c7153d4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Autoya+AssetGraph.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Autoya+AssetGraph.unitypackage -------------------------------------------------------------------------------- /Autoya.AssetBundles.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Autoya.AssetBundles.unitypackage -------------------------------------------------------------------------------- /Autoya.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/Autoya.unitypackage -------------------------------------------------------------------------------- /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/AutoyaSample/0_BasicUsage/BasicUsage.unity 10 | guid: 97e63b263ca1b4fe3a52c463fa184a3a 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.3.19f1 2 | m_EditorVersionWithRevision: 2021.3.19f1 (c9714fde33b6) 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.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassembla/Autoya/91c44da7a71570756aba7b01786dd5108478d360/ProjectSettings/boot.config -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} --------------------------------------------------------------------------------