├── Editor.meta ├── Editor ├── Assets.meta ├── Assets │ ├── CoProcessor.asset │ ├── CoProcessor.asset.meta │ ├── GoogleSpreadSheet Settings.asset │ ├── GoogleSpreadSheet Settings.asset.meta │ ├── GoogleSpreadsheetImporter.asset │ ├── GoogleSpreadsheetImporter.asset.meta │ ├── SpreadsheetFolderImporter.asset │ ├── SpreadsheetFolderImporter.asset.meta │ ├── credentials.json │ └── credentials.json.meta ├── EditorWindow.meta ├── EditorWindow │ ├── GoogleImportersCommonOperations.cs │ ├── GoogleImportersCommonOperations.cs.meta │ ├── GoogleSheetImporterEditorWindow.cs │ ├── GoogleSheetImporterEditorWindow.cs.meta │ ├── GoogleSpreadSheetViewWindow.cs │ ├── GoogleSpreadSheetViewWindow.cs.meta │ ├── SheetCellView.cs │ ├── SheetCellView.cs.meta │ ├── SpreadsheetSheetView.cs │ └── SpreadsheetSheetView.cs.meta ├── SheetsImporter.meta ├── SheetsImporter │ ├── Abstract.meta │ ├── Abstract │ │ ├── IAssetNameFormatter.cs │ │ ├── IAssetNameFormatter.cs.meta │ │ ├── IAssetSheetDataProcessor.cs │ │ ├── IAssetSheetDataProcessor.cs.meta │ │ ├── IAssetsProvider.cs │ │ ├── IAssetsProvider.cs.meta │ │ ├── IGoogleSpreadsheetClient.cs │ │ ├── IGoogleSpreadsheetClient.cs.meta │ │ ├── IGooglsSpreadsheetClientStatus.cs │ │ ├── IGooglsSpreadsheetClientStatus.cs.meta │ │ ├── ISheetLocation.cs │ │ ├── ISheetLocation.cs.meta │ │ ├── ISpreadsheetAssetsExporter.cs │ │ ├── ISpreadsheetAssetsExporter.cs.meta │ │ ├── ISpreadsheetAssetsImporter.cs │ │ ├── ISpreadsheetAssetsImporter.cs.meta │ │ ├── ISpreadsheetAssetsProcessor.cs │ │ ├── ISpreadsheetAssetsProcessor.cs.meta │ │ ├── ISpreadsheetData.cs │ │ ├── ISpreadsheetData.cs.meta │ │ ├── ISpreadsheetProcessor.cs │ │ ├── ISpreadsheetProcessor.cs.meta │ │ ├── ISpreadsheetTriggerAssetsHandler.cs │ │ ├── ISpreadsheetTriggerAssetsHandler.cs.meta │ │ ├── IStartable.cs │ │ └── IStartable.cs.meta │ ├── AssetSheetDataProcessor.cs │ ├── AssetSheetDataProcessor.cs.meta │ ├── BaseSpreadsheetProcessor.cs │ ├── BaseSpreadsheetProcessor.cs.meta │ ├── CoProcessors.meta │ ├── CoProcessors │ │ ├── Abstract.meta │ │ ├── Abstract │ │ │ ├── ICoProcessorHandle.cs │ │ │ └── ICoProcessorHandle.cs.meta │ │ ├── CoProcessor.cs │ │ ├── CoProcessor.cs.meta │ │ ├── NestedTableCoProcessor.cs │ │ └── NestedTableCoProcessor.cs.meta │ ├── Extensions.meta │ ├── Extensions │ │ ├── SheetSyncSchemaExtension.cs │ │ ├── SheetSyncSchemaExtension.cs.meta │ │ ├── SpreadsheetExtensions.cs │ │ └── SpreadsheetExtensions.cs.meta │ ├── GetRequestData.cs │ ├── GetRequestData.cs.meta │ ├── GoogleSheetImporterEditorConstants.cs │ ├── GoogleSheetImporterEditorConstants.cs.meta │ ├── GoogleSpreadsheetClient.cs │ ├── GoogleSpreadsheetClient.cs.meta │ ├── GoogleSpreadsheetClientStatus.cs │ ├── GoogleSpreadsheetClientStatus.cs.meta │ ├── GoogleSpreadsheetConnection.cs │ ├── GoogleSpreadsheetConnection.cs.meta │ ├── GoogleSpreadsheetEditorAsset.cs │ ├── GoogleSpreadsheetEditorAsset.cs.meta │ ├── GoogleSpreadsheetImporter.cs │ ├── GoogleSpreadsheetImporter.cs.meta │ ├── GoogleSpreadsheetSettings.cs │ ├── GoogleSpreadsheetSettings.cs.meta │ ├── ImportAction.cs │ ├── ImportAction.cs.meta │ ├── Importers.meta │ ├── Importers │ │ ├── PipelineImporter.cs │ │ ├── PipelineImporter.cs.meta │ │ ├── Serializable.meta │ │ ├── Serializable │ │ │ ├── AssetFolderByMonoScriptImporter.cs │ │ │ ├── AssetFolderByMonoScriptImporter.cs.meta │ │ │ ├── AssetsWithAttributesImporter.cs │ │ │ ├── AssetsWithAttributesImporter.cs.meta │ │ │ ├── FolderAssetsImporter.cs │ │ │ ├── FolderAssetsImporter.cs.meta │ │ │ ├── SheetImporterAsset.cs │ │ │ ├── SheetImporterAsset.cs.meta │ │ │ ├── SpreadsheetSerializableImporter.cs │ │ │ └── SpreadsheetSerializableImporter.cs.meta │ │ ├── SpreadsheetAssetsFolderImporter.cs │ │ ├── SpreadsheetAssetsFolderImporter.cs.meta │ │ ├── SpreadsheetImporter.cs │ │ ├── SpreadsheetImporter.cs.meta │ │ ├── SpreadsheetProcessorValue.cs │ │ └── SpreadsheetProcessorValue.cs.meta │ ├── MajorDimension.cs │ ├── MajorDimension.cs.meta │ ├── SerializableSpreadsheetProcessor.cs │ ├── SerializableSpreadsheetProcessor.cs.meta │ ├── SheetData.cs │ ├── SheetData.cs.meta │ ├── SheetId.cs │ ├── SheetId.cs.meta │ ├── SheetLineData.cs │ ├── SheetLineData.cs.meta │ ├── SheetSliceData.cs │ ├── SheetSliceData.cs.meta │ ├── SheetSyncItem.cs │ ├── SheetSyncItem.cs.meta │ ├── SheetSyncSchemaProcessor.cs │ ├── SheetSyncSchemaProcessor.cs.meta │ ├── SheetSyncScheme.cs │ ├── SheetSyncScheme.cs.meta │ ├── SheetValue.cs │ ├── SheetValue.cs.meta │ ├── SheetValueInfo.cs │ ├── SheetValueInfo.cs.meta │ ├── SpreadSheetInfo.cs │ ├── SpreadSheetInfo.cs.meta │ ├── SpreadsheetClientData.cs │ ├── SpreadsheetClientData.cs.meta │ ├── SpreadsheetData.cs │ ├── SpreadsheetData.cs.meta │ ├── SpreadsheetHandler.cs │ ├── SpreadsheetHandler.cs.meta │ ├── SyncSpreadsheetValue.cs │ ├── SyncSpreadsheetValue.cs.meta │ ├── SyncValue.cs │ ├── SyncValue.cs.meta │ ├── SyncValueType.cs │ └── SyncValueType.cs.meta ├── unigame.google.sheetsimporter.editor.asmdef └── unigame.google.sheetsimporter.editor.asmdef.meta ├── GitAssets.meta ├── GitAssets ├── Import Characters from Spreadsheets1.gif ├── Import Characters from Spreadsheets1.gif.meta ├── asset_ref1.png ├── asset_ref1.png.meta ├── asset_ref2.png ├── asset_ref2.png.meta ├── create_spreadsheet_asset.png ├── create_spreadsheet_asset.png.meta ├── editor.png ├── editor.png.meta ├── editorapikey.png ├── editorapikey.png.meta ├── editorapikey2.png ├── editorapikey2.png.meta ├── install_package.png ├── install_package.png.meta ├── json_support1.png ├── json_support1.png.meta ├── json_support2.png ├── json_support2.png.meta ├── login_done.png ├── login_done.png.meta ├── menu.png ├── menu.png.meta ├── nested_sheet.png ├── nested_sheet.png.meta ├── nested_table_field.png ├── nested_table_field.png.meta ├── r3.png ├── r3.png.meta ├── sheet1.png ├── sheet1.png.meta ├── sheet_fields.png ├── sheet_fields.png.meta ├── sheetid.png ├── sheetid.png.meta ├── sheetid1.png ├── sheetid1.png.meta ├── spreadsheet_asset_creation.gif ├── spreadsheet_asset_creation.gif.meta ├── typeconvert1.png ├── typeconvert1.png.meta ├── webapp1.png ├── webapp1.png.meta ├── webapp2.png ├── webapp2.png.meta ├── webapp3.png ├── webapp3.png.meta ├── webapp4.png ├── webapp4.png.meta ├── webapp5.png └── webapp5.png.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── Attributes.meta ├── Attributes │ ├── ISpreadsheetDescription.cs │ ├── ISpreadsheetDescription.cs.meta │ ├── SpreadsheetIgnoreAttribute.cs │ ├── SpreadsheetIgnoreAttribute.cs.meta │ ├── SpreadsheetTargetAttribute.cs │ ├── SpreadsheetTargetAttribute.cs.meta │ ├── SpreadsheetValueAttribute.cs │ └── SpreadsheetValueAttribute.cs.meta ├── GoogleSpreadsheetConstants.cs ├── GoogleSpreadsheetConstants.cs.meta ├── unigame.google.sheetsimporter.runtime.asmdef └── unigame.google.sheetsimporter.runtime.asmdef.meta ├── package.json └── package.json.meta /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets.meta -------------------------------------------------------------------------------- /Editor/Assets/CoProcessor.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/CoProcessor.asset -------------------------------------------------------------------------------- /Editor/Assets/CoProcessor.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/CoProcessor.asset.meta -------------------------------------------------------------------------------- /Editor/Assets/GoogleSpreadSheet Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/GoogleSpreadSheet Settings.asset -------------------------------------------------------------------------------- /Editor/Assets/GoogleSpreadSheet Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/GoogleSpreadSheet Settings.asset.meta -------------------------------------------------------------------------------- /Editor/Assets/GoogleSpreadsheetImporter.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/GoogleSpreadsheetImporter.asset -------------------------------------------------------------------------------- /Editor/Assets/GoogleSpreadsheetImporter.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/GoogleSpreadsheetImporter.asset.meta -------------------------------------------------------------------------------- /Editor/Assets/SpreadsheetFolderImporter.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/SpreadsheetFolderImporter.asset -------------------------------------------------------------------------------- /Editor/Assets/SpreadsheetFolderImporter.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/SpreadsheetFolderImporter.asset.meta -------------------------------------------------------------------------------- /Editor/Assets/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/credentials.json -------------------------------------------------------------------------------- /Editor/Assets/credentials.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/Assets/credentials.json.meta -------------------------------------------------------------------------------- /Editor/EditorWindow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow.meta -------------------------------------------------------------------------------- /Editor/EditorWindow/GoogleImportersCommonOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/GoogleImportersCommonOperations.cs -------------------------------------------------------------------------------- /Editor/EditorWindow/GoogleImportersCommonOperations.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8915e9bc94b04459802721c190a98492 3 | timeCreated: 1637489653 -------------------------------------------------------------------------------- /Editor/EditorWindow/GoogleSheetImporterEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/GoogleSheetImporterEditorWindow.cs -------------------------------------------------------------------------------- /Editor/EditorWindow/GoogleSheetImporterEditorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/GoogleSheetImporterEditorWindow.cs.meta -------------------------------------------------------------------------------- /Editor/EditorWindow/GoogleSpreadSheetViewWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/GoogleSpreadSheetViewWindow.cs -------------------------------------------------------------------------------- /Editor/EditorWindow/GoogleSpreadSheetViewWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/GoogleSpreadSheetViewWindow.cs.meta -------------------------------------------------------------------------------- /Editor/EditorWindow/SheetCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/SheetCellView.cs -------------------------------------------------------------------------------- /Editor/EditorWindow/SheetCellView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f618f3750474ed5b77192c1f14095ac 3 | timeCreated: 1596406744 -------------------------------------------------------------------------------- /Editor/EditorWindow/SpreadsheetSheetView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/EditorWindow/SpreadsheetSheetView.cs -------------------------------------------------------------------------------- /Editor/EditorWindow/SpreadsheetSheetView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18e9acaac3df49e6be8f4bb9b29e9942 3 | timeCreated: 1596380627 -------------------------------------------------------------------------------- /Editor/SheetsImporter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IAssetNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/IAssetNameFormatter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IAssetNameFormatter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a840903dc91f4263959f2fb92ad14302 3 | timeCreated: 1646231991 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IAssetSheetDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/IAssetSheetDataProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IAssetSheetDataProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4ab25e91b5e4e8098658682ec397393 3 | timeCreated: 1597912592 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IAssetsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/IAssetsProvider.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IAssetsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89a5c3ccff614635a53e7fc190472e51 3 | timeCreated: 1596542331 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IGoogleSpreadsheetClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/IGoogleSpreadsheetClient.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IGoogleSpreadsheetClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb5e50bbc6a44c79b7b2ffa09255334 3 | timeCreated: 1599053710 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IGooglsSpreadsheetClientStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/IGooglsSpreadsheetClientStatus.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IGooglsSpreadsheetClientStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c2771728e04843b33e9cdfd4faa088 3 | timeCreated: 1599051961 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISheetLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISheetLocation.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISheetLocation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aa510aaed7f4a7b95f0a9cb4c8d6ed8 3 | timeCreated: 1596819561 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetAssetsExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISpreadsheetAssetsExporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetAssetsExporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd55d3dd91894d019a67471fdb1f5a9b 3 | timeCreated: 1596814883 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetAssetsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISpreadsheetAssetsImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetAssetsImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d4552f92f234aed8079fbaa65a9de29 3 | timeCreated: 1596453273 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetAssetsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISpreadsheetAssetsProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetAssetsProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35f3f421ea62433aa7a4b2919cc91fa0 3 | timeCreated: 1596453286 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISpreadsheetData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b13d9b50650f428fb47c55b3aeb486d6 3 | timeCreated: 1599051406 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISpreadsheetProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eede7af7b5be4c8fb85582896c3657ea 3 | timeCreated: 1678791554 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetTriggerAssetsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/ISpreadsheetTriggerAssetsHandler.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/ISpreadsheetTriggerAssetsHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6048f470e5b4b1490bde8a9f62f746b 3 | timeCreated: 1598445587 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IStartable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Abstract/IStartable.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Abstract/IStartable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2be5ef5933bc4ac7813a9e7480481c74 3 | timeCreated: 1643031904 -------------------------------------------------------------------------------- /Editor/SheetsImporter/AssetSheetDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/AssetSheetDataProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/AssetSheetDataProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e380f243e2b48c1a452fb32e2eb2214 3 | timeCreated: 1596493559 -------------------------------------------------------------------------------- /Editor/SheetsImporter/BaseSpreadsheetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/BaseSpreadsheetProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/BaseSpreadsheetProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80af688e7f37483cbaf1a054fd047814 3 | timeCreated: 1596454530 -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74fa78b78b604d828e859d1d7b497531 3 | timeCreated: 1603878385 -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/Abstract.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aadeeb29ef0745e190d860a99a4ebac1 3 | timeCreated: 1603878665 -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/Abstract/ICoProcessorHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/CoProcessors/Abstract/ICoProcessorHandle.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/Abstract/ICoProcessorHandle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7c563bc808b48a187e3d044a3cf3828 3 | timeCreated: 1603878681 -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/CoProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/CoProcessors/CoProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/CoProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91a54cab06bc41718921ec777f97f6e3 3 | timeCreated: 1603880678 -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/NestedTableCoProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/CoProcessors/NestedTableCoProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/CoProcessors/NestedTableCoProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b56702578506445ba16c94c086b09724 3 | timeCreated: 1603878895 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Extensions.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Extensions/SheetSyncSchemaExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Extensions/SheetSyncSchemaExtension.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Extensions/SheetSyncSchemaExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37fe95fce2b44c35b375490ec8cde355 3 | timeCreated: 1597913350 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Extensions/SpreadsheetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Extensions/SpreadsheetExtensions.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Extensions/SpreadsheetExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 002ee789960647de8dc198da4eebe161 3 | timeCreated: 1596493997 -------------------------------------------------------------------------------- /Editor/SheetsImporter/GetRequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GetRequestData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GetRequestData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8febf4b1b7a45d2b2076217c1d03c3e 3 | timeCreated: 1634291906 -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSheetImporterEditorConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSheetImporterEditorConstants.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSheetImporterEditorConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSheetImporterEditorConstants.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetClient.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee807718bd3d4179baa9f0666266a1c4 3 | timeCreated: 1599054339 -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetClientStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetClientStatus.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetClientStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01476d7ae2114bb986d733e131f5e696 3 | timeCreated: 1599054741 -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetConnection.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetConnection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetConnection.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetEditorAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetEditorAsset.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetEditorAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a623d3caa564a0c9d1dddd140cf6128 3 | timeCreated: 1678734092 -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetImporter.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/GoogleSpreadsheetSettings.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/GoogleSpreadsheetSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9caf0d8be54bbe8e9d496638cca598 3 | timeCreated: 1678722574 -------------------------------------------------------------------------------- /Editor/SheetsImporter/ImportAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/ImportAction.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/ImportAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71c52b2540e84cb39cb669a049f3f025 3 | timeCreated: 1603963318 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/PipelineImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/PipelineImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/PipelineImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 030ff7cf5620406c8afeb5cd65dbd111 3 | timeCreated: 1678791457 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/AssetFolderByMonoScriptImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable/AssetFolderByMonoScriptImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/AssetFolderByMonoScriptImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcead925b5484534b3299e8ca64bedf6 3 | timeCreated: 1596546691 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/AssetsWithAttributesImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable/AssetsWithAttributesImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/AssetsWithAttributesImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dae6116b34be4066aa2700dcf243f71d 3 | timeCreated: 1596454520 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/FolderAssetsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable/FolderAssetsImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/FolderAssetsImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable/FolderAssetsImporter.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/SheetImporterAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable/SheetImporterAsset.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/SheetImporterAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba1ebc6d8546475da9547270396a1a9d 3 | timeCreated: 1678750173 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/SpreadsheetSerializableImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/Serializable/SpreadsheetSerializableImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/Serializable/SpreadsheetSerializableImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a915c5c81e19407299a7cf352c294db4 3 | timeCreated: 1596558173 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/SpreadsheetAssetsFolderImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/SpreadsheetAssetsFolderImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/SpreadsheetAssetsFolderImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/SpreadsheetAssetsFolderImporter.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/SpreadsheetImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/SpreadsheetImporter.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/SpreadsheetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2ae40cd806745e582fa2d855669060b 3 | timeCreated: 1596714300 -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/SpreadsheetProcessorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/Importers/SpreadsheetProcessorValue.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/Importers/SpreadsheetProcessorValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df89ebb0a8c4449aba28ba0d64984733 3 | timeCreated: 1678791771 -------------------------------------------------------------------------------- /Editor/SheetsImporter/MajorDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/MajorDimension.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/MajorDimension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b89450980ad44b0ba8927954358ecb8b 3 | timeCreated: 1596368298 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SerializableSpreadsheetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SerializableSpreadsheetProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SerializableSpreadsheetProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SerializableSpreadsheetProcessor.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4044812febd54f14b075f8c77c625dd3 3 | timeCreated: 1596376198 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetId.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f34be0d15e484dfe92ee75ac393addb3 3 | timeCreated: 1596449396 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetLineData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetLineData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetLineData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf0cf848f4404d3fb8dfcc20bf023510 3 | timeCreated: 1596369835 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSliceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetSliceData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSliceData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e7490a335b6428b9d9436aa61dcb83a 3 | timeCreated: 1596376179 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSyncItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetSyncItem.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSyncItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4fc84ce71ff40aa80bfeefc854b8c4b 3 | timeCreated: 1596376961 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSyncSchemaProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetSyncSchemaProcessor.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSyncSchemaProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48dd2a0e7ad842df91d167edb1e6cdc6 3 | timeCreated: 1597913363 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSyncScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetSyncScheme.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetSyncScheme.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9974397300d403b93cec95917286c1c 3 | timeCreated: 1596319722 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetValue.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96523410f6e247c392d5c88b5b36863e 3 | timeCreated: 1596376171 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetValueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SheetValueInfo.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SheetValueInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48c19b73d0f04fa788a19c15b36787ca 3 | timeCreated: 1597921571 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadSheetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SpreadSheetInfo.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadSheetInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SpreadSheetInfo.cs.meta -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadsheetClientData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SpreadsheetClientData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadsheetClientData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5bf457e835b41d8bed878b076e85433 3 | timeCreated: 1678722814 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadsheetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SpreadsheetData.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadsheetData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53b3882c618240f0be411293ab662e7d 3 | timeCreated: 1596460201 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadsheetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SpreadsheetHandler.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SpreadsheetHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da87c200ac5a4622a826259e39219ba1 3 | timeCreated: 1596326411 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SyncSpreadsheetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SyncSpreadsheetValue.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SyncSpreadsheetValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee9ea00a98034e368711d119460894e8 3 | timeCreated: 1727587406 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SyncValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SyncValue.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SyncValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 894f0c0b28a94a36a59b62a5b2912cb2 3 | timeCreated: 1596319715 -------------------------------------------------------------------------------- /Editor/SheetsImporter/SyncValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/SheetsImporter/SyncValueType.cs -------------------------------------------------------------------------------- /Editor/SheetsImporter/SyncValueType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eefbcee635e543f7866d7937aac60b55 3 | timeCreated: 1727532444 -------------------------------------------------------------------------------- /Editor/unigame.google.sheetsimporter.editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/unigame.google.sheetsimporter.editor.asmdef -------------------------------------------------------------------------------- /Editor/unigame.google.sheetsimporter.editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Editor/unigame.google.sheetsimporter.editor.asmdef.meta -------------------------------------------------------------------------------- /GitAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets.meta -------------------------------------------------------------------------------- /GitAssets/Import Characters from Spreadsheets1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/Import Characters from Spreadsheets1.gif -------------------------------------------------------------------------------- /GitAssets/Import Characters from Spreadsheets1.gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/Import Characters from Spreadsheets1.gif.meta -------------------------------------------------------------------------------- /GitAssets/asset_ref1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/asset_ref1.png -------------------------------------------------------------------------------- /GitAssets/asset_ref1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/asset_ref1.png.meta -------------------------------------------------------------------------------- /GitAssets/asset_ref2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/asset_ref2.png -------------------------------------------------------------------------------- /GitAssets/asset_ref2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/asset_ref2.png.meta -------------------------------------------------------------------------------- /GitAssets/create_spreadsheet_asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/create_spreadsheet_asset.png -------------------------------------------------------------------------------- /GitAssets/create_spreadsheet_asset.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/create_spreadsheet_asset.png.meta -------------------------------------------------------------------------------- /GitAssets/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/editor.png -------------------------------------------------------------------------------- /GitAssets/editor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/editor.png.meta -------------------------------------------------------------------------------- /GitAssets/editorapikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/editorapikey.png -------------------------------------------------------------------------------- /GitAssets/editorapikey.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/editorapikey.png.meta -------------------------------------------------------------------------------- /GitAssets/editorapikey2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/editorapikey2.png -------------------------------------------------------------------------------- /GitAssets/editorapikey2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/editorapikey2.png.meta -------------------------------------------------------------------------------- /GitAssets/install_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/install_package.png -------------------------------------------------------------------------------- /GitAssets/install_package.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/install_package.png.meta -------------------------------------------------------------------------------- /GitAssets/json_support1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/json_support1.png -------------------------------------------------------------------------------- /GitAssets/json_support1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/json_support1.png.meta -------------------------------------------------------------------------------- /GitAssets/json_support2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/json_support2.png -------------------------------------------------------------------------------- /GitAssets/json_support2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/json_support2.png.meta -------------------------------------------------------------------------------- /GitAssets/login_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/login_done.png -------------------------------------------------------------------------------- /GitAssets/login_done.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/login_done.png.meta -------------------------------------------------------------------------------- /GitAssets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/menu.png -------------------------------------------------------------------------------- /GitAssets/menu.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/menu.png.meta -------------------------------------------------------------------------------- /GitAssets/nested_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/nested_sheet.png -------------------------------------------------------------------------------- /GitAssets/nested_sheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/nested_sheet.png.meta -------------------------------------------------------------------------------- /GitAssets/nested_table_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/nested_table_field.png -------------------------------------------------------------------------------- /GitAssets/nested_table_field.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/nested_table_field.png.meta -------------------------------------------------------------------------------- /GitAssets/r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/r3.png -------------------------------------------------------------------------------- /GitAssets/r3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/r3.png.meta -------------------------------------------------------------------------------- /GitAssets/sheet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheet1.png -------------------------------------------------------------------------------- /GitAssets/sheet1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheet1.png.meta -------------------------------------------------------------------------------- /GitAssets/sheet_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheet_fields.png -------------------------------------------------------------------------------- /GitAssets/sheet_fields.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheet_fields.png.meta -------------------------------------------------------------------------------- /GitAssets/sheetid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheetid.png -------------------------------------------------------------------------------- /GitAssets/sheetid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheetid.png.meta -------------------------------------------------------------------------------- /GitAssets/sheetid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheetid1.png -------------------------------------------------------------------------------- /GitAssets/sheetid1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/sheetid1.png.meta -------------------------------------------------------------------------------- /GitAssets/spreadsheet_asset_creation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/spreadsheet_asset_creation.gif -------------------------------------------------------------------------------- /GitAssets/spreadsheet_asset_creation.gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/spreadsheet_asset_creation.gif.meta -------------------------------------------------------------------------------- /GitAssets/typeconvert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/typeconvert1.png -------------------------------------------------------------------------------- /GitAssets/typeconvert1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/typeconvert1.png.meta -------------------------------------------------------------------------------- /GitAssets/webapp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp1.png -------------------------------------------------------------------------------- /GitAssets/webapp1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp1.png.meta -------------------------------------------------------------------------------- /GitAssets/webapp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp2.png -------------------------------------------------------------------------------- /GitAssets/webapp2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp2.png.meta -------------------------------------------------------------------------------- /GitAssets/webapp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp3.png -------------------------------------------------------------------------------- /GitAssets/webapp3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp3.png.meta -------------------------------------------------------------------------------- /GitAssets/webapp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp4.png -------------------------------------------------------------------------------- /GitAssets/webapp4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp4.png.meta -------------------------------------------------------------------------------- /GitAssets/webapp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp5.png -------------------------------------------------------------------------------- /GitAssets/webapp5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/GitAssets/webapp5.png.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes.meta -------------------------------------------------------------------------------- /Runtime/Attributes/ISpreadsheetDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/ISpreadsheetDescription.cs -------------------------------------------------------------------------------- /Runtime/Attributes/ISpreadsheetDescription.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c194f2c1ce034270adee4bb201762995 3 | timeCreated: 1597917862 -------------------------------------------------------------------------------- /Runtime/Attributes/SpreadsheetIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/SpreadsheetIgnoreAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/SpreadsheetIgnoreAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/SpreadsheetIgnoreAttribute.cs.meta -------------------------------------------------------------------------------- /Runtime/Attributes/SpreadsheetTargetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/SpreadsheetTargetAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/SpreadsheetTargetAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/SpreadsheetTargetAttribute.cs.meta -------------------------------------------------------------------------------- /Runtime/Attributes/SpreadsheetValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/SpreadsheetValueAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/SpreadsheetValueAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/Attributes/SpreadsheetValueAttribute.cs.meta -------------------------------------------------------------------------------- /Runtime/GoogleSpreadsheetConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/GoogleSpreadsheetConstants.cs -------------------------------------------------------------------------------- /Runtime/GoogleSpreadsheetConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/GoogleSpreadsheetConstants.cs.meta -------------------------------------------------------------------------------- /Runtime/unigame.google.sheetsimporter.runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/unigame.google.sheetsimporter.runtime.asmdef -------------------------------------------------------------------------------- /Runtime/unigame.google.sheetsimporter.runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/Runtime/unigame.google.sheetsimporter.runtime.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnioGame/unigame.googlespreadsheets/HEAD/package.json.meta --------------------------------------------------------------------------------