├── .gitignore ├── .vs └── UnityZip │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── Assets ├── ICSharpCode.SharpZipLib.meta ├── ICSharpCode.SharpZipLib │ ├── BZip2.meta │ ├── BZip2 │ │ ├── BZip2.cs │ │ ├── BZip2.cs.meta │ │ ├── BZip2Constants.cs │ │ ├── BZip2Constants.cs.meta │ │ ├── BZip2Exception.cs │ │ ├── BZip2Exception.cs.meta │ │ ├── BZip2InputStream.cs │ │ ├── BZip2InputStream.cs.meta │ │ ├── BZip2OutputStream.cs │ │ └── BZip2OutputStream.cs.meta │ ├── Checksum.meta │ ├── Checksum │ │ ├── Adler32.cs │ │ ├── Adler32.cs.meta │ │ ├── BZip2Crc.cs │ │ ├── BZip2Crc.cs.meta │ │ ├── Crc32.cs │ │ ├── Crc32.cs.meta │ │ ├── IChecksum.cs │ │ └── IChecksum.cs.meta │ ├── Core.meta │ ├── Core │ │ ├── Exceptions.meta │ │ ├── Exceptions │ │ │ ├── SharpZipBaseException.cs │ │ │ ├── SharpZipBaseException.cs.meta │ │ │ ├── StreamDecodingException.cs │ │ │ ├── StreamDecodingException.cs.meta │ │ │ ├── StreamUnsupportedException.cs │ │ │ ├── StreamUnsupportedException.cs.meta │ │ │ ├── UnexpectedEndOfStreamException.cs │ │ │ ├── UnexpectedEndOfStreamException.cs.meta │ │ │ ├── ValueOutOfRangeException.cs │ │ │ └── ValueOutOfRangeException.cs.meta │ │ ├── FileSystemScanner.cs │ │ ├── FileSystemScanner.cs.meta │ │ ├── INameTransform.cs │ │ ├── INameTransform.cs.meta │ │ ├── IScanFilter.cs │ │ ├── IScanFilter.cs.meta │ │ ├── InvalidNameException.cs │ │ ├── InvalidNameException.cs.meta │ │ ├── NameFilter.cs │ │ ├── NameFilter.cs.meta │ │ ├── PathFilter.cs │ │ ├── PathFilter.cs.meta │ │ ├── StreamUtils.cs │ │ ├── StreamUtils.cs.meta │ │ ├── WindowsPathUtils.cs │ │ └── WindowsPathUtils.cs.meta │ ├── Encryption.meta │ ├── Encryption │ │ ├── PkzipClassic.cs │ │ ├── PkzipClassic.cs.meta │ │ ├── ZipAESStream.cs │ │ ├── ZipAESStream.cs.meta │ │ ├── ZipAESTransform.cs │ │ └── ZipAESTransform.cs.meta │ ├── GZip.meta │ ├── GZip │ │ ├── GZIPConstants.cs │ │ ├── GZIPConstants.cs.meta │ │ ├── GZip.cs │ │ ├── GZip.cs.meta │ │ ├── GZipException.cs │ │ ├── GZipException.cs.meta │ │ ├── GzipInputStream.cs │ │ ├── GzipInputStream.cs.meta │ │ ├── GzipOutputStream.cs │ │ └── GzipOutputStream.cs.meta │ ├── Lzw.meta │ ├── Lzw │ │ ├── LzwConstants.cs │ │ ├── LzwConstants.cs.meta │ │ ├── LzwException.cs │ │ ├── LzwException.cs.meta │ │ ├── LzwInputStream.cs │ │ └── LzwInputStream.cs.meta │ ├── Tar.meta │ ├── Tar │ │ ├── InvalidHeaderException.cs │ │ ├── InvalidHeaderException.cs.meta │ │ ├── TarArchive.cs │ │ ├── TarArchive.cs.meta │ │ ├── TarBuffer.cs │ │ ├── TarBuffer.cs.meta │ │ ├── TarEntry.cs │ │ ├── TarEntry.cs.meta │ │ ├── TarException.cs │ │ ├── TarException.cs.meta │ │ ├── TarExtendedHeaderReader.cs │ │ ├── TarExtendedHeaderReader.cs.meta │ │ ├── TarHeader.cs │ │ ├── TarHeader.cs.meta │ │ ├── TarInputStream.cs │ │ ├── TarInputStream.cs.meta │ │ ├── TarOutputStream.cs │ │ └── TarOutputStream.cs.meta │ ├── Zip.meta │ └── Zip │ │ ├── Compression.meta │ │ ├── Compression │ │ ├── Deflater.cs │ │ ├── Deflater.cs.meta │ │ ├── DeflaterConstants.cs │ │ ├── DeflaterConstants.cs.meta │ │ ├── DeflaterEngine.cs │ │ ├── DeflaterEngine.cs.meta │ │ ├── DeflaterHuffman.cs │ │ ├── DeflaterHuffman.cs.meta │ │ ├── DeflaterPending.cs │ │ ├── DeflaterPending.cs.meta │ │ ├── Inflater.cs │ │ ├── Inflater.cs.meta │ │ ├── InflaterDynHeader.cs │ │ ├── InflaterDynHeader.cs.meta │ │ ├── InflaterHuffmanTree.cs │ │ ├── InflaterHuffmanTree.cs.meta │ │ ├── PendingBuffer.cs │ │ ├── PendingBuffer.cs.meta │ │ ├── Streams.meta │ │ └── Streams │ │ │ ├── DeflaterOutputStream.cs │ │ │ ├── DeflaterOutputStream.cs.meta │ │ │ ├── InflaterInputStream.cs │ │ │ ├── InflaterInputStream.cs.meta │ │ │ ├── OutputWindow.cs │ │ │ ├── OutputWindow.cs.meta │ │ │ ├── StreamManipulator.cs │ │ │ └── StreamManipulator.cs.meta │ │ ├── FastZip.cs │ │ ├── FastZip.cs.meta │ │ ├── IEntryFactory.cs │ │ ├── IEntryFactory.cs.meta │ │ ├── WindowsNameTransform.cs │ │ ├── WindowsNameTransform.cs.meta │ │ ├── ZipConstants.cs │ │ ├── ZipConstants.cs.meta │ │ ├── ZipEntry.cs │ │ ├── ZipEntry.cs.meta │ │ ├── ZipEntryFactory.cs │ │ ├── ZipEntryFactory.cs.meta │ │ ├── ZipException.cs │ │ ├── ZipException.cs.meta │ │ ├── ZipExtraData.cs │ │ ├── ZipExtraData.cs.meta │ │ ├── ZipFile.cs │ │ ├── ZipFile.cs.meta │ │ ├── ZipHelperStream.cs │ │ ├── ZipHelperStream.cs.meta │ │ ├── ZipInputStream.cs │ │ ├── ZipInputStream.cs.meta │ │ ├── ZipNameTransform.cs │ │ ├── ZipNameTransform.cs.meta │ │ ├── ZipOutputStream.cs │ │ ├── ZipOutputStream.cs.meta │ │ ├── ZipStrings.cs │ │ └── ZipStrings.cs.meta ├── NGUI.meta ├── NGUI │ ├── Editor.meta │ ├── Editor │ │ ├── Preview.meta │ │ ├── Preview │ │ │ ├── Control - Background.png │ │ │ ├── Control - Background.png.meta │ │ │ ├── Control - Colored Button.png │ │ │ ├── Control - Colored Button.png.meta │ │ │ ├── Control - Colored Checkbox.png │ │ │ ├── Control - Colored Checkbox.png.meta │ │ │ ├── Control - Colored Horizontal Scroll Bar.png │ │ │ ├── Control - Colored Horizontal Scroll Bar.png.meta │ │ │ ├── Control - Colored Popup List.png │ │ │ ├── Control - Colored Popup List.png.meta │ │ │ ├── Control - Colored Progress Bar.png │ │ │ ├── Control - Colored Progress Bar.png.meta │ │ │ ├── Control - Colored Slider.png │ │ │ ├── Control - Colored Slider.png.meta │ │ │ ├── Control - Colored Vertical Scroll Bar.png │ │ │ ├── Control - Colored Vertical Scroll Bar.png.meta │ │ │ ├── Control - Simple Button.png │ │ │ ├── Control - Simple Button.png.meta │ │ │ ├── Control - Simple Checkbox.png │ │ │ ├── Control - Simple Checkbox.png.meta │ │ │ ├── Control - Simple Horizontal Scroll Bar.png │ │ │ ├── Control - Simple Horizontal Scroll Bar.png.meta │ │ │ ├── Control - Simple Horizontal Slider.png │ │ │ ├── Control - Simple Horizontal Slider.png.meta │ │ │ ├── Control - Simple Input Field.png │ │ │ ├── Control - Simple Input Field.png.meta │ │ │ ├── Control - Simple Popup List.png │ │ │ ├── Control - Simple Popup List.png.meta │ │ │ ├── Control - Simple Progress Bar.png │ │ │ ├── Control - Simple Progress Bar.png.meta │ │ │ ├── Control - Simple Text Box.png │ │ │ ├── Control - Simple Text Box.png.meta │ │ │ ├── Control - Simple Vertical Scroll Bar.png │ │ │ ├── Control - Simple Vertical Scroll Bar.png.meta │ │ │ ├── Control - Simple Vertical Slider.png │ │ │ └── Control - Simple Vertical Slider.png.meta │ │ ├── x86.meta │ │ ├── x86 │ │ │ ├── FreeType.dll │ │ │ ├── FreeType.dll.meta │ │ │ ├── FreeType.dylib │ │ │ └── FreeType.dylib.meta │ │ ├── x86_64.meta │ │ └── x86_64 │ │ │ ├── FreeType.dll │ │ │ └── FreeType.dll.meta │ ├── ReadMe - 2018.3.0.txt │ ├── ReadMe - 2018.3.0.txt.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Shaders.meta │ │ └── Shaders │ │ │ ├── Unlit - Premultiplied Colored (TextureClip).shader │ │ │ ├── Unlit - Premultiplied Colored (TextureClip).shader.meta │ │ │ ├── Unlit - Premultiplied Colored 1.shader │ │ │ ├── Unlit - Premultiplied Colored 1.shader.meta │ │ │ ├── Unlit - Premultiplied Colored 2.shader │ │ │ ├── Unlit - Premultiplied Colored 2.shader.meta │ │ │ ├── Unlit - Premultiplied Colored 3.shader │ │ │ ├── Unlit - Premultiplied Colored 3.shader.meta │ │ │ ├── Unlit - Premultiplied Colored.shader │ │ │ ├── Unlit - Premultiplied Colored.shader.meta │ │ │ ├── Unlit - Text (TextureClip).shader │ │ │ ├── Unlit - Text (TextureClip).shader.meta │ │ │ ├── Unlit - Text 1.shader │ │ │ ├── Unlit - Text 1.shader.meta │ │ │ ├── Unlit - Text 2.shader │ │ │ ├── Unlit - Text 2.shader.meta │ │ │ ├── Unlit - Text 3.shader │ │ │ ├── Unlit - Text 3.shader.meta │ │ │ ├── Unlit - Text.shader │ │ │ ├── Unlit - Text.shader.meta │ │ │ ├── Unlit - Transparent Colored (Packed) (TextureClip).shader │ │ │ ├── Unlit - Transparent Colored (Packed) (TextureClip).shader.meta │ │ │ ├── Unlit - Transparent Colored (TextureClip).shader │ │ │ ├── Unlit - Transparent Colored (TextureClip).shader.meta │ │ │ ├── Unlit - Transparent Colored 1.shader │ │ │ ├── Unlit - Transparent Colored 1.shader.meta │ │ │ ├── Unlit - Transparent Colored 2.shader │ │ │ ├── Unlit - Transparent Colored 2.shader.meta │ │ │ ├── Unlit - Transparent Colored 3.shader │ │ │ ├── Unlit - Transparent Colored 3.shader.meta │ │ │ ├── Unlit - Transparent Colored.shader │ │ │ ├── Unlit - Transparent Colored.shader.meta │ │ │ ├── Unlit - Transparent Masked 1.shader │ │ │ ├── Unlit - Transparent Masked 1.shader.meta │ │ │ ├── Unlit - Transparent Masked 2.shader │ │ │ ├── Unlit - Transparent Masked 2.shader.meta │ │ │ ├── Unlit - Transparent Masked 3.shader │ │ │ ├── Unlit - Transparent Masked 3.shader.meta │ │ │ ├── Unlit - Transparent Masked.shader │ │ │ ├── Unlit - Transparent Masked.shader.meta │ │ │ ├── Unlit - Transparent Packed 1.shader │ │ │ ├── Unlit - Transparent Packed 1.shader.meta │ │ │ ├── Unlit - Transparent Packed 2.shader │ │ │ ├── Unlit - Transparent Packed 2.shader.meta │ │ │ ├── Unlit - Transparent Packed 3.shader │ │ │ ├── Unlit - Transparent Packed 3.shader.meta │ │ │ ├── Unlit - Transparent Packed.shader │ │ │ └── Unlit - Transparent Packed.shader.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ActiveAnimationEditor.cs │ │ ├── ActiveAnimationEditor.cs.meta │ │ ├── BMFontReader.cs │ │ ├── BMFontReader.cs.meta │ │ ├── ComponentSelector.cs │ │ ├── ComponentSelector.cs.meta │ │ ├── EventDelegateDrawer.cs │ │ ├── EventDelegateDrawer.cs.meta │ │ ├── EventDelegateEditor.cs │ │ ├── EventDelegateEditor.cs.meta │ │ ├── FreeType.cs │ │ ├── FreeType.cs.meta │ │ ├── MinMaxRangeAttributeDrawer.cs │ │ ├── MinMaxRangeAttributeDrawer.cs.meta │ │ ├── NGUIAtlasInspector.cs │ │ ├── NGUIAtlasInspector.cs.meta │ │ ├── NGUIContextMenu.cs │ │ ├── NGUIContextMenu.cs.meta │ │ ├── NGUIEditorExtensions.cs │ │ ├── NGUIEditorExtensions.cs.meta │ │ ├── NGUIEditorTools.cs │ │ ├── NGUIEditorTools.cs.meta │ │ ├── NGUIFontInspector.cs │ │ ├── NGUIFontInspector.cs.meta │ │ ├── NGUIHandles.cs │ │ ├── NGUIHandles.cs.meta │ │ ├── NGUIHelp.cs │ │ ├── NGUIHelp.cs.meta │ │ ├── NGUIJson.cs │ │ ├── NGUIJson.cs.meta │ │ ├── NGUIMenu.cs │ │ ├── NGUIMenu.cs.meta │ │ ├── NGUISelectionTools.cs │ │ ├── NGUISelectionTools.cs.meta │ │ ├── NGUISettings.cs │ │ ├── NGUISettings.cs.meta │ │ ├── NGUISnap.cs │ │ ├── NGUISnap.cs.meta │ │ ├── NGUITransformInspector.cs │ │ ├── NGUITransformInspector.cs.meta │ │ ├── PropertyBindingEditor.cs │ │ ├── PropertyBindingEditor.cs.meta │ │ ├── PropertyReferenceDrawer.cs │ │ ├── PropertyReferenceDrawer.cs.meta │ │ ├── SpriteSelector.cs │ │ ├── SpriteSelector.cs.meta │ │ ├── TweenAlphaEditor.cs │ │ ├── TweenAlphaEditor.cs.meta │ │ ├── TweenColorEditor.cs │ │ ├── TweenColorEditor.cs.meta │ │ ├── TweenFOVEditor.cs │ │ ├── TweenFOVEditor.cs.meta │ │ ├── TweenHeightEditor.cs │ │ ├── TweenHeightEditor.cs.meta │ │ ├── TweenOrthoSizeEditor.cs │ │ ├── TweenOrthoSizeEditor.cs.meta │ │ ├── TweenPositionEditor.cs │ │ ├── TweenPositionEditor.cs.meta │ │ ├── TweenRotationEditor.cs │ │ ├── TweenRotationEditor.cs.meta │ │ ├── TweenScaleEditor.cs │ │ ├── TweenScaleEditor.cs.meta │ │ ├── TweenTransformEditor.cs │ │ ├── TweenTransformEditor.cs.meta │ │ ├── TweenVolumeEditor.cs │ │ ├── TweenVolumeEditor.cs.meta │ │ ├── TweenWidthEditor.cs │ │ ├── TweenWidthEditor.cs.meta │ │ ├── TypewriterEffectEditor.cs │ │ ├── TypewriterEffectEditor.cs.meta │ │ ├── UI2DSpriteEditor.cs │ │ ├── UI2DSpriteEditor.cs.meta │ │ ├── UIAnchorEditor.cs │ │ ├── UIAnchorEditor.cs.meta │ │ ├── UIAtlasInspector.cs │ │ ├── UIAtlasInspector.cs.meta │ │ ├── UIAtlasMaker.cs │ │ ├── UIAtlasMaker.cs.meta │ │ ├── UIBasicSpriteEditor.cs │ │ ├── UIBasicSpriteEditor.cs.meta │ │ ├── UIButtonColorEditor.cs │ │ ├── UIButtonColorEditor.cs.meta │ │ ├── UIButtonEditor.cs │ │ ├── UIButtonEditor.cs.meta │ │ ├── UIButtonKeysEditor.cs │ │ ├── UIButtonKeysEditor.cs.meta │ │ ├── UIButtonMessageEditor.cs │ │ ├── UIButtonMessageEditor.cs.meta │ │ ├── UICameraEditor.cs │ │ ├── UICameraEditor.cs.meta │ │ ├── UICameraTool.cs │ │ ├── UICameraTool.cs.meta │ │ ├── UIColorPickerEditor.cs │ │ ├── UIColorPickerEditor.cs.meta │ │ ├── UICreateNewUIWizard.cs │ │ ├── UICreateNewUIWizard.cs.meta │ │ ├── UICreateWidgetWizard.cs │ │ ├── UICreateWidgetWizard.cs.meta │ │ ├── UIDragObjectEditor.cs │ │ ├── UIDragObjectEditor.cs.meta │ │ ├── UIDrawCallInspector.cs │ │ ├── UIDrawCallInspector.cs.meta │ │ ├── UIDrawCallViewer.cs │ │ ├── UIDrawCallViewer.cs.meta │ │ ├── UIEventTriggerEditor.cs │ │ ├── UIEventTriggerEditor.cs.meta │ │ ├── UIFontInspector.cs │ │ ├── UIFontInspector.cs.meta │ │ ├── UIFontMaker.cs │ │ ├── UIFontMaker.cs.meta │ │ ├── UIForwardEventsEditor.cs │ │ ├── UIForwardEventsEditor.cs.meta │ │ ├── UIGridEditor.cs │ │ ├── UIGridEditor.cs.meta │ │ ├── UIImageButtonInspector.cs │ │ ├── UIImageButtonInspector.cs.meta │ │ ├── UIInputEditor.cs │ │ ├── UIInputEditor.cs.meta │ │ ├── UIKeyNavigationEditor.cs │ │ ├── UIKeyNavigationEditor.cs.meta │ │ ├── UILabelInspector.cs │ │ ├── UILabelInspector.cs.meta │ │ ├── UILocalizeEditor.cs │ │ ├── UILocalizeEditor.cs.meta │ │ ├── UIPanelInspector.cs │ │ ├── UIPanelInspector.cs.meta │ │ ├── UIPanelTool.cs │ │ ├── UIPanelTool.cs.meta │ │ ├── UIPlayAnimationEditor.cs │ │ ├── UIPlayAnimationEditor.cs.meta │ │ ├── UIPlayTweenEditor.cs │ │ ├── UIPlayTweenEditor.cs.meta │ │ ├── UIPopupListInspector.cs │ │ ├── UIPopupListInspector.cs.meta │ │ ├── UIPrefabTool.cs │ │ ├── UIPrefabTool.cs.meta │ │ ├── UIProgressBarEditor.cs │ │ ├── UIProgressBarEditor.cs.meta │ │ ├── UIRectEditor.cs │ │ ├── UIRectEditor.cs.meta │ │ ├── UIRootEditor.cs │ │ ├── UIRootEditor.cs.meta │ │ ├── UIScrollBarEditor.cs │ │ ├── UIScrollBarEditor.cs.meta │ │ ├── UIScrollViewEditor.cs │ │ ├── UIScrollViewEditor.cs.meta │ │ ├── UISliderEditor.cs │ │ ├── UISliderEditor.cs.meta │ │ ├── UISnapshotPointEditor.cs │ │ ├── UISnapshotPointEditor.cs.meta │ │ ├── UISpriteAnimationInspector.cs │ │ ├── UISpriteAnimationInspector.cs.meta │ │ ├── UISpriteCollectionEditor.cs │ │ ├── UISpriteCollectionEditor.cs.meta │ │ ├── UISpriteInspector.cs │ │ ├── UISpriteInspector.cs.meta │ │ ├── UIStretchEditor.cs │ │ ├── UIStretchEditor.cs.meta │ │ ├── UITableEditor.cs │ │ ├── UITableEditor.cs.meta │ │ ├── UITextureInspector.cs │ │ ├── UITextureInspector.cs.meta │ │ ├── UITexturePacker.cs │ │ ├── UITexturePacker.cs.meta │ │ ├── UIToggleInspector.cs │ │ ├── UIToggleInspector.cs.meta │ │ ├── UITweenerEditor.cs │ │ ├── UITweenerEditor.cs.meta │ │ ├── UIWidgetContainerEditor.cs │ │ ├── UIWidgetContainerEditor.cs.meta │ │ ├── UIWidgetInspector.cs │ │ ├── UIWidgetInspector.cs.meta │ │ ├── UIWrapContentEditor.cs │ │ └── UIWrapContentEditor.cs.meta │ │ ├── Interaction.meta │ │ ├── Interaction │ │ ├── EnvelopContent.cs │ │ ├── EnvelopContent.cs.meta │ │ ├── LanguageSelection.cs │ │ ├── LanguageSelection.cs.meta │ │ ├── TypewriterEffect.cs │ │ ├── TypewriterEffect.cs.meta │ │ ├── UIButton.cs │ │ ├── UIButton.cs.meta │ │ ├── UIButtonActivate.cs │ │ ├── UIButtonActivate.cs.meta │ │ ├── UIButtonColor.cs │ │ ├── UIButtonColor.cs.meta │ │ ├── UIButtonKeys.cs │ │ ├── UIButtonKeys.cs.meta │ │ ├── UIButtonMessage.cs │ │ ├── UIButtonMessage.cs.meta │ │ ├── UIButtonOffset.cs │ │ ├── UIButtonOffset.cs.meta │ │ ├── UIButtonRotation.cs │ │ ├── UIButtonRotation.cs.meta │ │ ├── UIButtonScale.cs │ │ ├── UIButtonScale.cs.meta │ │ ├── UICenterOnChild.cs │ │ ├── UICenterOnChild.cs.meta │ │ ├── UICenterOnClick.cs │ │ ├── UICenterOnClick.cs.meta │ │ ├── UIDragCamera.cs │ │ ├── UIDragCamera.cs.meta │ │ ├── UIDragDropContainer.cs │ │ ├── UIDragDropContainer.cs.meta │ │ ├── UIDragDropItem.cs │ │ ├── UIDragDropItem.cs.meta │ │ ├── UIDragDropRoot.cs │ │ ├── UIDragDropRoot.cs.meta │ │ ├── UIDragObject.cs │ │ ├── UIDragObject.cs.meta │ │ ├── UIDragResize.cs │ │ ├── UIDragResize.cs.meta │ │ ├── UIDragScrollView.cs │ │ ├── UIDragScrollView.cs.meta │ │ ├── UIDraggableCamera.cs │ │ ├── UIDraggableCamera.cs.meta │ │ ├── UIEventTrigger.cs │ │ ├── UIEventTrigger.cs.meta │ │ ├── UIForwardEvents.cs │ │ ├── UIForwardEvents.cs.meta │ │ ├── UIGrid.cs │ │ ├── UIGrid.cs.meta │ │ ├── UIImageButton.cs │ │ ├── UIImageButton.cs.meta │ │ ├── UIKeyBinding.cs │ │ ├── UIKeyBinding.cs.meta │ │ ├── UIKeyNavigation.cs │ │ ├── UIKeyNavigation.cs.meta │ │ ├── UIPlayAnimation.cs │ │ ├── UIPlayAnimation.cs.meta │ │ ├── UIPlaySound.cs │ │ ├── UIPlaySound.cs.meta │ │ ├── UIPlayTween.cs │ │ ├── UIPlayTween.cs.meta │ │ ├── UIPopupList.cs │ │ ├── UIPopupList.cs.meta │ │ ├── UIProgressBar.cs │ │ ├── UIProgressBar.cs.meta │ │ ├── UISavedOption.cs │ │ ├── UISavedOption.cs.meta │ │ ├── UIScrollBar.cs │ │ ├── UIScrollBar.cs.meta │ │ ├── UIScrollView.cs │ │ ├── UIScrollView.cs.meta │ │ ├── UIShowControlScheme.cs │ │ ├── UIShowControlScheme.cs.meta │ │ ├── UISlider.cs │ │ ├── UISlider.cs.meta │ │ ├── UISoundVolume.cs │ │ ├── UISoundVolume.cs.meta │ │ ├── UITable.cs │ │ ├── UITable.cs.meta │ │ ├── UIToggle.cs │ │ ├── UIToggle.cs.meta │ │ ├── UIToggledComponents.cs │ │ ├── UIToggledComponents.cs.meta │ │ ├── UIToggledObjects.cs │ │ ├── UIToggledObjects.cs.meta │ │ ├── UIWidgetContainer.cs │ │ ├── UIWidgetContainer.cs.meta │ │ ├── UIWrapContent.cs │ │ └── UIWrapContent.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ ├── ActiveAnimation.cs │ │ ├── ActiveAnimation.cs.meta │ │ ├── AnimationOrTween.cs │ │ ├── AnimationOrTween.cs.meta │ │ ├── BMFont.cs │ │ ├── BMFont.cs.meta │ │ ├── BMGlyph.cs │ │ ├── BMGlyph.cs.meta │ │ ├── BMSymbol.cs │ │ ├── BMSymbol.cs.meta │ │ ├── BetterList.cs │ │ ├── BetterList.cs.meta │ │ ├── ByteReader.cs │ │ ├── ByteReader.cs.meta │ │ ├── EventDelegate.cs │ │ ├── EventDelegate.cs.meta │ │ ├── Localization.cs │ │ ├── Localization.cs.meta │ │ ├── MinMaxRangeAttribute.cs │ │ ├── MinMaxRangeAttribute.cs.meta │ │ ├── NGUIDebug.cs │ │ ├── NGUIDebug.cs.meta │ │ ├── NGUIMath.cs │ │ ├── NGUIMath.cs.meta │ │ ├── NGUIText.cs │ │ ├── NGUIText.cs.meta │ │ ├── NGUITools.cs │ │ ├── NGUITools.cs.meta │ │ ├── PropertyBinding.cs │ │ ├── PropertyBinding.cs.meta │ │ ├── PropertyReference.cs │ │ ├── PropertyReference.cs.meta │ │ ├── RealTime.cs │ │ ├── RealTime.cs.meta │ │ ├── SpringPanel.cs │ │ ├── SpringPanel.cs.meta │ │ ├── UIBasicSprite.cs │ │ ├── UIBasicSprite.cs.meta │ │ ├── UIDrawCall.cs │ │ ├── UIDrawCall.cs.meta │ │ ├── UIEventListener.cs │ │ ├── UIEventListener.cs.meta │ │ ├── UIGeometry.cs │ │ ├── UIGeometry.cs.meta │ │ ├── UIRect.cs │ │ ├── UIRect.cs.meta │ │ ├── UISnapshotPoint.cs │ │ ├── UISnapshotPoint.cs.meta │ │ ├── UIWidget.cs │ │ └── UIWidget.cs.meta │ │ ├── Tweening.meta │ │ ├── Tweening │ │ ├── AnimatedAlpha.cs │ │ ├── AnimatedAlpha.cs.meta │ │ ├── AnimatedColor.cs │ │ ├── AnimatedColor.cs.meta │ │ ├── AnimatedWidget.cs │ │ ├── AnimatedWidget.cs.meta │ │ ├── SpringPosition.cs │ │ ├── SpringPosition.cs.meta │ │ ├── TweenAlpha.cs │ │ ├── TweenAlpha.cs.meta │ │ ├── TweenColor.cs │ │ ├── TweenColor.cs.meta │ │ ├── TweenFOV.cs │ │ ├── TweenFOV.cs.meta │ │ ├── TweenFill.cs │ │ ├── TweenFill.cs.meta │ │ ├── TweenHeight.cs │ │ ├── TweenHeight.cs.meta │ │ ├── TweenLetters.cs │ │ ├── TweenLetters.cs.meta │ │ ├── TweenOrthoSize.cs │ │ ├── TweenOrthoSize.cs.meta │ │ ├── TweenPosition.cs │ │ ├── TweenPosition.cs.meta │ │ ├── TweenRotation.cs │ │ ├── TweenRotation.cs.meta │ │ ├── TweenScale.cs │ │ ├── TweenScale.cs.meta │ │ ├── TweenTransform.cs │ │ ├── TweenTransform.cs.meta │ │ ├── TweenVolume.cs │ │ ├── TweenVolume.cs.meta │ │ ├── TweenWidth.cs │ │ ├── TweenWidth.cs.meta │ │ ├── UITweener.cs │ │ └── UITweener.cs.meta │ │ ├── UI.meta │ │ └── UI │ │ ├── NGUIAtlas.cs │ │ ├── NGUIAtlas.cs.meta │ │ ├── NGUIFont.cs │ │ ├── NGUIFont.cs.meta │ │ ├── UI2DSprite.cs │ │ ├── UI2DSprite.cs.meta │ │ ├── UI2DSpriteAnimation.cs │ │ ├── UI2DSpriteAnimation.cs.meta │ │ ├── UIAnchor.cs │ │ ├── UIAnchor.cs.meta │ │ ├── UIAtlas.cs │ │ ├── UIAtlas.cs.meta │ │ ├── UICamera.cs │ │ ├── UICamera.cs.meta │ │ ├── UIColorPicker.cs │ │ ├── UIColorPicker.cs.meta │ │ ├── UIFont.cs │ │ ├── UIFont.cs.meta │ │ ├── UIInput.cs │ │ ├── UIInput.cs.meta │ │ ├── UIInputOnGUI.cs │ │ ├── UIInputOnGUI.cs.meta │ │ ├── UILabel.cs │ │ ├── UILabel.cs.meta │ │ ├── UILocalize.cs │ │ ├── UILocalize.cs.meta │ │ ├── UIOrthoCamera.cs │ │ ├── UIOrthoCamera.cs.meta │ │ ├── UIPanel.cs │ │ ├── UIPanel.cs.meta │ │ ├── UIRoot.cs │ │ ├── UIRoot.cs.meta │ │ ├── UISprite.cs │ │ ├── UISprite.cs.meta │ │ ├── UISpriteAnimation.cs │ │ ├── UISpriteAnimation.cs.meta │ │ ├── UISpriteCollection.cs │ │ ├── UISpriteCollection.cs.meta │ │ ├── UISpriteData.cs │ │ ├── UISpriteData.cs.meta │ │ ├── UIStretch.cs │ │ ├── UIStretch.cs.meta │ │ ├── UITextList.cs │ │ ├── UITextList.cs.meta │ │ ├── UITexture.cs │ │ ├── UITexture.cs.meta │ │ ├── UITooltip.cs │ │ ├── UITooltip.cs.meta │ │ ├── UIViewport.cs │ │ └── UIViewport.cs.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Scripts.meta ├── Scripts │ ├── ZipHelper.cs │ ├── ZipHelper.cs.meta │ ├── ZipTest.cs │ └── ZipTest.cs.meta ├── StreamingAssets.meta ├── UI.meta ├── UI │ ├── Atlas.meta │ ├── Atlas │ │ ├── ReviewAtlas.mat │ │ ├── ReviewAtlas.mat.meta │ │ ├── ReviewAtlas.png │ │ ├── ReviewAtlas.png.meta │ │ ├── ReviewAtlas.prefab │ │ └── ReviewAtlas.prefab.meta │ ├── Sprite.meta │ ├── Sprite │ │ ├── Skill.meta │ │ ├── Skill │ │ │ ├── Skill_1.png │ │ │ └── Skill_1.png.meta │ │ ├── s1.png │ │ └── s1.png.meta │ ├── Texture.meta │ └── Texture │ │ ├── 1.png │ │ └── 1.png.meta ├── Unity-Logs-Viewer.meta └── Unity-Logs-Viewer │ ├── README.md │ ├── README.md.meta │ ├── Reporter.meta │ ├── Reporter │ ├── Editor.meta │ ├── Editor │ │ ├── ReporterEditor.cs │ │ └── ReporterEditor.cs.meta │ ├── Images.meta │ ├── Images │ │ ├── ComputerIcon.png │ │ ├── ComputerIcon.png.meta │ │ ├── Save.png │ │ ├── Save.png.meta │ │ ├── UnityIcon.png │ │ ├── UnityIcon.png.meta │ │ ├── back.png │ │ ├── back.png.meta │ │ ├── bar.png │ │ ├── bar.png.meta │ │ ├── buildFrom.png │ │ ├── buildFrom.png.meta │ │ ├── button_active.png │ │ ├── button_active.png.meta │ │ ├── chart.png │ │ ├── chart.png.meta │ │ ├── clear.png │ │ ├── clear.png.meta │ │ ├── clearOnSceneLoaded.png │ │ ├── clearOnSceneLoaded.png.meta │ │ ├── close.png │ │ ├── close.png.meta │ │ ├── collapse.png │ │ ├── collapse.png.meta │ │ ├── date.png │ │ ├── date.png.meta │ │ ├── error_icon.png │ │ ├── error_icon.png.meta │ │ ├── even_log.png │ │ ├── even_log.png.meta │ │ ├── fps.png │ │ ├── fps.png.meta │ │ ├── graphicCard.png │ │ ├── graphicCard.png.meta │ │ ├── info.png │ │ ├── info.png.meta │ │ ├── log_icon.png │ │ ├── log_icon.png.meta │ │ ├── memory.png │ │ ├── memory.png.meta │ │ ├── odd_log.png │ │ ├── odd_log.png.meta │ │ ├── reporterScrollerSkin.guiskin │ │ ├── reporterScrollerSkin.guiskin.meta │ │ ├── scroller_down_arraw.png │ │ ├── scroller_down_arraw.png.meta │ │ ├── scroller_horizental_back.png │ │ ├── scroller_horizental_back.png.meta │ │ ├── scroller_horizental_thumb.png │ │ ├── scroller_horizental_thumb.png.meta │ │ ├── scroller_left_arraw.png │ │ ├── scroller_left_arraw.png.meta │ │ ├── scroller_right_arraw.png │ │ ├── scroller_right_arraw.png.meta │ │ ├── scroller_up_arraw.png │ │ ├── scroller_up_arraw.png.meta │ │ ├── scroller_vertical_back.png │ │ ├── scroller_vertical_back.png.meta │ │ ├── scroller_vertical_thumb.png │ │ ├── scroller_vertical_thumb.png.meta │ │ ├── search.png │ │ ├── search.png.meta │ │ ├── selected.png │ │ ├── selected.png.meta │ │ ├── software.png │ │ ├── software.png.meta │ │ ├── timer_1.png │ │ ├── timer_1.png.meta │ │ ├── user.png │ │ ├── user.png.meta │ │ ├── warning_icon.png │ │ └── warning_icon.png.meta │ ├── MultiKeyDictionary.cs │ ├── MultiKeyDictionary.cs.meta │ ├── Reporter.cs │ ├── Reporter.cs.meta │ ├── ReporterGUI.cs │ ├── ReporterGUI.cs.meta │ ├── ReporterMessageReceiver.cs │ ├── ReporterMessageReceiver.cs.meta │ ├── Test.meta │ └── Test │ │ ├── ReporterScene.unity │ │ ├── ReporterScene.unity.meta │ │ ├── Rotate.cs │ │ ├── Rotate.cs.meta │ │ ├── TestReporter.cs │ │ ├── TestReporter.cs.meta │ │ ├── test1.unity │ │ ├── test1.unity.meta │ │ ├── test2.unity │ │ └── test2.unity.meta │ ├── ReporterDocumentation.meta │ └── ReporterDocumentation │ ├── GCMem.png │ ├── GCMem.png.meta │ ├── clear.png │ ├── clear.png.meta │ ├── clearOnNewScene.png │ ├── clearOnNewScene.png.meta │ ├── collapse.png │ ├── collapse.png.meta │ ├── error.png │ ├── error.png.meta │ ├── fps.png │ ├── fps.png.meta │ ├── index.htm │ ├── index.htm.meta │ ├── info.png │ ├── info.png.meta │ ├── log.png │ ├── log.png.meta │ ├── scene.png │ ├── scene.png.meta │ ├── screenShot11.png │ ├── screenShot11.png.meta │ ├── screenShot21.png │ ├── screenShot21.png.meta │ ├── screenShot3.png │ ├── screenShot3.png.meta │ ├── style.css │ ├── style.css.meta │ ├── time.png │ ├── time.png.meta │ ├── warning.png │ └── warning.png.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset ├── README.md └── UnityZip.sln /.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | Assets/AssetStoreTools* 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | 11 | # Autogenerated VS/MD/Consulo solution and project files 12 | ExportedObj/ 13 | .consulo/ 14 | *.csproj 15 | *.unityproj 16 | *.sln 17 | *.suo 18 | *.tmp 19 | *.user 20 | *.userprefs 21 | *.pidb 22 | *.booproj 23 | *.svd 24 | *.pdb 25 | *.opendb 26 | 27 | # Unity3D generated meta files 28 | *.pidb.meta 29 | *.pdb.meta 30 | 31 | # Unity3D Generated File On Crash Reports 32 | sysinfo.txt 33 | 34 | # Builds 35 | *.apk 36 | *.unitypackage 37 | -------------------------------------------------------------------------------- /.vs/UnityZip/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/.vs/UnityZip/v15/.suo -------------------------------------------------------------------------------- /.vs/UnityZip/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/.vs/UnityZip/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/UnityZip/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/.vs/UnityZip/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/UnityZip/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/.vs/UnityZip/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/UnityZip/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/.vs/UnityZip/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9deff1cd5f3591446a2cc140cc397583 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/BZip2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 799d4fbd194388644bb0cd6332e74ba3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/BZip2/BZip2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3a1b72b7689c9f47b4b9eadaec48deb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/BZip2/BZip2Constants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f3aa339539cb7b47badc78db012d010 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/BZip2/BZip2Exception.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ebcd8442014c9742919851f07acf668 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/BZip2/BZip2InputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc3e35c056d353448bd69fc68386dc32 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/BZip2/BZip2OutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80407abe0cac2fd4ca0ad522056b55c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Checksum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c37727e8a5045cc4d80e6300aa152d4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Checksum/Adler32.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee544b9b72672dd42aeba128c5b59c3d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Checksum/BZip2Crc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c9f5c03e68d8254dac866c1f8d6fa15 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Checksum/Crc32.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d575d0e385e5464d83f3c52d1724a1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Checksum/IChecksum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59f36074a4dc4c447b7184b814c5866b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77196c40d2a76204c813d226364b1893 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19247774e071763448afe579c1f5fe9c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/Exceptions/SharpZipBaseException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6799c174a1eecf46b085584f429b76b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/Exceptions/StreamDecodingException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b10678e89dc6e1478f8bce1826a726e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/Exceptions/StreamUnsupportedException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e085bb9a44086f14fba269b44a072920 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/Exceptions/UnexpectedEndOfStreamException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8be675c13872504c9c9b3271a44b024 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/Exceptions/ValueOutOfRangeException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0b40190aace0e043b7fea75a41f4231 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/FileSystemScanner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e1b5f2b30e205d4db2b1ffe19bce962 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/INameTransform.cs: -------------------------------------------------------------------------------- 1 | namespace ICSharpCode.SharpZipLib.Core 2 | { 3 | /// 4 | /// INameTransform defines how file system names are transformed for use with archives, or vice versa. 5 | /// 6 | public interface INameTransform 7 | { 8 | /// 9 | /// Given a file name determine the transformed value. 10 | /// 11 | /// The name to transform. 12 | /// The transformed file name. 13 | string TransformFile(string name); 14 | 15 | /// 16 | /// Given a directory name determine the transformed value. 17 | /// 18 | /// The name to transform. 19 | /// The transformed directory name 20 | string TransformDirectory(string name); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/INameTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd2e98441fdf8b640b10cb318c295f18 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/IScanFilter.cs: -------------------------------------------------------------------------------- 1 | namespace ICSharpCode.SharpZipLib.Core 2 | { 3 | /// 4 | /// Scanning filters support filtering of names. 5 | /// 6 | public interface IScanFilter 7 | { 8 | /// 9 | /// Test a name to see if it 'matches' the filter. 10 | /// 11 | /// The name to test. 12 | /// Returns true if the name matches the filter, false if it does not match. 13 | bool IsMatch(string name); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/IScanFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 253e0660f69a8df4893442cad9d32f5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/InvalidNameException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 595d5c60a9ea9cd488b39adec182791d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/NameFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e22f77b3888696f44a47787d40461506 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/PathFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ac4720274180424cb1439ef3f409e86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/StreamUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b094a86f0579cd41bc21f6ec9fc7a8d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Core/WindowsPathUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49c4128b5fadb47498d03cce4fa0ba9f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Encryption.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cc1fc33811103246952b1d8c0ca49db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Encryption/PkzipClassic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 463b7c93fecdd0f4dae6bda1f4cda928 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Encryption/ZipAESStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4332ab0d745075f4fa2c5df7d421df09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Encryption/ZipAESTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fcc2d612511df44094cc11d3e3944a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/GZip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b736da7dfcceb1240a73a0ef3e030cd4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/GZip/GZIPConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a7e7e1f7bb77ac4f9266fa7563b7229 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/GZip/GZip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7f211e1f8f15794fbefbf395e07bb01 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/GZip/GZipException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea41ca72f42330b4caff3773cb624e24 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/GZip/GzipInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e93ebedd017d594aa13601ac43bcce4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/GZip/GzipOutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a4d227018e205049940a30503e67dbe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Lzw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fa2ca0010ecbcd4396ad88a2aa6dc3c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Lzw/LzwConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c401d195556badb4f8ee155d2fde2d2c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Lzw/LzwException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ICSharpCode.SharpZipLib.Lzw 4 | { 5 | /// 6 | /// LzwException represents exceptions specific to LZW classes and code. 7 | /// 8 | public class LzwException : SharpZipBaseException 9 | { 10 | /// 11 | /// Initialise a new instance of . 12 | /// 13 | public LzwException() 14 | { 15 | } 16 | 17 | /// 18 | /// Initialise a new instance of with its message string. 19 | /// 20 | /// A that describes the error. 21 | public LzwException(string message) 22 | : base(message) 23 | { 24 | } 25 | 26 | /// 27 | /// Initialise a new instance of . 28 | /// 29 | /// A that describes the error. 30 | /// The that caused this exception. 31 | public LzwException(string message, Exception innerException) 32 | : base(message, innerException) 33 | { 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Lzw/LzwException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b35b240cdd66824f9aa66838605e818 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Lzw/LzwInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ae40ce3bb25e0d42a607ad0829e0089 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a7f8d011c2b0f47b59b7ef4b58aff1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/InvalidHeaderException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55edadc45767e604798073e9cdf0e31b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarArchive.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff0575369af12d643b56491d3038e724 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aca82b795f89f8443bbd3d39ac438742 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16f8396e8b34d404b94a3a23c84bb98e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ICSharpCode.SharpZipLib.Tar 4 | { 5 | /// 6 | /// TarException represents exceptions specific to Tar classes and code. 7 | /// 8 | public class TarException : SharpZipBaseException 9 | { 10 | /// 11 | /// Initialise a new instance of . 12 | /// 13 | public TarException() 14 | { 15 | } 16 | 17 | /// 18 | /// Initialise a new instance of with its message string. 19 | /// 20 | /// A that describes the error. 21 | public TarException(string message) 22 | : base(message) 23 | { 24 | } 25 | 26 | /// 27 | /// Initialise a new instance of . 28 | /// 29 | /// A that describes the error. 30 | /// The that caused this exception. 31 | public TarException(string message, Exception innerException) 32 | : base(message, innerException) 33 | { 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 539b0e81e06577b47b922e80137b7ce6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarExtendedHeaderReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25d1d917b88551f4abd2b4e323437151 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarHeader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f57c4037f640efa4dbf190f4697f3e9a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9521bf7d6eaa3d4e94488f319b5c508 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Tar/TarOutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52feeccfbe9d1c34e8a698a7caf3cbeb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ce1acc4ac5663f4e84e96b6fb72de8d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 957e90254a388ed42a2548024db589ad 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Deflater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58a3a077ac0cbd34ebe3302fa5ccd03a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/DeflaterConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0307fa202b13fc3448a6f9ca29e51b0c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/DeflaterEngine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90df59286aafa284aad356df84285636 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/DeflaterHuffman.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7866c5709fbd104ba9401badaba73ec 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/DeflaterPending.cs: -------------------------------------------------------------------------------- 1 | namespace ICSharpCode.SharpZipLib.Zip.Compression 2 | { 3 | /// 4 | /// This class stores the pending output of the Deflater. 5 | /// 6 | /// author of the original java version : Jochen Hoenicke 7 | /// 8 | public class DeflaterPending : PendingBuffer 9 | { 10 | /// 11 | /// Construct instance with default buffer size 12 | /// 13 | public DeflaterPending() : base(DeflaterConstants.PENDING_BUF_SIZE) 14 | { 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/DeflaterPending.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96073753aec3e7b489e97ec6582452a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Inflater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9db6d16c77a2d44fbb4258c4a056873 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/InflaterDynHeader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcdd8d914284afd47b28e088175ea0af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/InflaterHuffmanTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d807ff6cc81b3e4a8e2b1543f158f51 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/PendingBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6413f509545a364ea51deec4d8122df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Streams.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ef73cf1afb9fed4bbaf64983fe86fa2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Streams/DeflaterOutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5f6727daaf0b054a9f61cbb976b2aae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Streams/InflaterInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcb3c351f6ae9334cbf35e63a245310b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Streams/OutputWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a16f612abbf2d6442b01cb8de0ac948e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/Compression/Streams/StreamManipulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87ec44bd5c9a1e740bfd20926df5282a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/FastZip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d7504fd4cd5eba4598c7dd17d077a44 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/IEntryFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 274ade92961209c4ca6c5654cd175b97 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/WindowsNameTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92daded317103004f86a817493262f26 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd2fc44b7bd2c7942b8a4ace381a859b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e4d59ce180a2844098c827a0f9d7ca1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipEntryFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19b5a6132d2ae4f4090b9cba51601f8d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ICSharpCode.SharpZipLib.Zip 4 | { 5 | /// 6 | /// ZipException represents exceptions specific to Zip classes and code. 7 | /// 8 | public class ZipException : SharpZipBaseException 9 | { 10 | /// 11 | /// Initialise a new instance of . 12 | /// 13 | public ZipException() 14 | { 15 | } 16 | 17 | /// 18 | /// Initialise a new instance of with its message string. 19 | /// 20 | /// A that describes the error. 21 | public ZipException(string message) 22 | : base(message) 23 | { 24 | } 25 | 26 | /// 27 | /// Initialise a new instance of . 28 | /// 29 | /// A that describes the error. 30 | /// The that caused this exception. 31 | public ZipException(string message, Exception innerException) 32 | : base(message, innerException) 33 | { 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e763e78207b7a4b8f2a89b987916fc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipExtraData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 681c98bd171ef7145869e262fa8b3e41 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipFile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029427a6e4f4a534ebeb3058730a0e9f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipHelperStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae295b8c93cb67d46a24a54d84574057 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e33bca4879944f74bbc4a275763f9b7e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipNameTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4255d2a433cb9654e85e16417b47f7cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a111fce294cc889428a09dae63796aed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ICSharpCode.SharpZipLib/Zip/ZipStrings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a284995192c706943a75e0c0f3c9613a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/NGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb6bebf9a3fd6964e85fe337c5e7e0b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a247766a7966624e8204293958a6f4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7abc1bfabe3adb741a055c1da2f6f43f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Background.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Background.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c4e2225904897741851cb40a292d928 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 39 | spritePixelsToUnits: 100 40 | alphaIsTransparency: 0 41 | textureType: -1 42 | buildTargetSettings: [] 43 | spriteSheet: 44 | sprites: [] 45 | spritePackingTag: 46 | userData: 47 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Button.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Button.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cc8814ed8715f445bad8716f0a84360 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 39 | spritePixelsToUnits: 100 40 | alphaIsTransparency: 0 41 | textureType: -1 42 | buildTargetSettings: [] 43 | spriteSheet: 44 | sprites: [] 45 | spritePackingTag: 46 | userData: 47 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Checkbox.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Checkbox.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 737211ff6e83c5f4babd40d5cc5b2e94 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 39 | spritePixelsToUnits: 100 40 | alphaIsTransparency: 0 41 | textureType: -1 42 | buildTargetSettings: [] 43 | spriteSheet: 44 | sprites: [] 45 | spritePackingTag: 46 | userData: 47 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Horizontal Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Horizontal Scroll Bar.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Popup List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Popup List.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Progress Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Progress Bar.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Slider.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Slider.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51decac5933324a4ebb5df8e33571cc3 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 39 | spritePixelsToUnits: 100 40 | alphaIsTransparency: 0 41 | textureType: -1 42 | buildTargetSettings: [] 43 | spriteSheet: 44 | sprites: [] 45 | spritePackingTag: 46 | userData: 47 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Colored Vertical Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Colored Vertical Scroll Bar.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Button.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Button.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8f05a96f6d43d442a884ea5ba44713c 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 39 | spritePixelsToUnits: 100 40 | alphaIsTransparency: 0 41 | textureType: -1 42 | buildTargetSettings: [] 43 | spriteSheet: 44 | sprites: [] 45 | spritePackingTag: 46 | userData: 47 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Checkbox.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Horizontal Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Horizontal Scroll Bar.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Horizontal Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Horizontal Slider.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Input Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Input Field.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Popup List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Popup List.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Progress Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Progress Bar.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Text Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Text Box.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Vertical Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Vertical Scroll Bar.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/Preview/Control - Simple Vertical Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/Preview/Control - Simple Vertical Slider.png -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15e33f58971f8e347b8b39575769657e 3 | folderAsset: yes 4 | timeCreated: 1456923960 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86/FreeType.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/x86/FreeType.dll -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86/FreeType.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f801416effc99aa46b3cf89b61a49c6e 3 | PluginImporter: 4 | serializedVersion: 1 5 | iconMap: {} 6 | executionOrder: {} 7 | isPreloaded: 0 8 | platformData: 9 | Any: 10 | enabled: 0 11 | settings: {} 12 | Editor: 13 | enabled: 1 14 | settings: 15 | CPU: x86 16 | DefaultValueInitialized: true 17 | OS: Windows 18 | Linux: 19 | enabled: 0 20 | settings: 21 | CPU: x86 22 | Linux64: 23 | enabled: 0 24 | settings: 25 | CPU: x86_64 26 | OSXIntel: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | OSXIntel64: 31 | enabled: 0 32 | settings: 33 | CPU: AnyCPU 34 | Win: 35 | enabled: 0 36 | settings: 37 | CPU: AnyCPU 38 | Win64: 39 | enabled: 0 40 | settings: 41 | CPU: AnyCPU 42 | userData: 43 | assetBundleName: 44 | assetBundleVariant: 45 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86/FreeType.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/x86/FreeType.dylib -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86/FreeType.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83d67a4d19a9444f1bf70bcb6721b5d7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61d4be1abfd503a4dae05a680141950e 3 | folderAsset: yes 4 | timeCreated: 1456923975 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86_64/FreeType.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Editor/x86_64/FreeType.dll -------------------------------------------------------------------------------- /Assets/NGUI/Editor/x86_64/FreeType.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f04db6bee7da2094ea96d2d4541a3433 3 | PluginImporter: 4 | serializedVersion: 1 5 | iconMap: {} 6 | executionOrder: {} 7 | isPreloaded: 0 8 | platformData: 9 | Any: 10 | enabled: 0 11 | settings: {} 12 | Editor: 13 | enabled: 1 14 | settings: 15 | CPU: x86_64 16 | DefaultValueInitialized: true 17 | OS: Windows 18 | Linux: 19 | enabled: 0 20 | settings: 21 | CPU: x86 22 | Linux64: 23 | enabled: 0 24 | settings: 25 | CPU: x86_64 26 | OSXIntel: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | OSXIntel64: 31 | enabled: 0 32 | settings: 33 | CPU: AnyCPU 34 | Win: 35 | enabled: 0 36 | settings: 37 | CPU: AnyCPU 38 | Win64: 39 | enabled: 0 40 | settings: 41 | CPU: AnyCPU 42 | userData: 43 | assetBundleName: 44 | assetBundleVariant: 45 | -------------------------------------------------------------------------------- /Assets/NGUI/ReadMe - 2018.3.0.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d75e209a8e9dc4096a834edfea27bf 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70d846d32bd619b4a856519ce1779bfe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 298a41c43c8f58247ab89979efd1019b 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Premultiplied Colored (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 773952d1ab5b7714392cdc5473b20244 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Premultiplied Colored 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93c84009f8f004b4f84697c8cb12dd63 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Premultiplied Colored 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ca32170bb371f459991a5d7696a9ba 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Premultiplied Colored 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e82b392f79aa394fb1a579743600d5f 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Premultiplied Colored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed5591596df551e4c8f4b05ce88a7a07 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Text (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eec9c90e5acd4d74d9e021119fc70cf8 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Text 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f39f1d1f2f3ee04bb793082eee05819 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Text 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37590480333382341b5007dec2a032c6 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Text 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27275fc7df2ec0346ba12831e6a01345 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Text.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 773417da4aa1b46409bd1e7574dcb251 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Colored (Packed) (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e37f44f1a08cf594fb6b3919774527ed 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Colored (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 720c2c242cde13e4188964c550502b5e 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Colored 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf9ebc36d43f657468fecb524763e3bc 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Colored 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1682092270f88d04bb434756a984ea87 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Colored 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c0a1aa668787ad42a48d1a535825520 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Colored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e75727d9555d9d14ca51d91908c681bc 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Masked 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cd1f5408130bdc4cbcf8c8fab8efd21 3 | timeCreated: 1426208984 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Masked 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f11eb0ceeb5e044b3199208e1a99bf 3 | timeCreated: 1426209398 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Masked 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 222c64d503379884db00185ebbe08590 3 | timeCreated: 1426209465 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Masked.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9300d87db4ad0b0439f6fb97c3ce8ccf 3 | timeCreated: 1426208639 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Packed 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 182695e850938314fa6675a8926ad9ee 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Packed 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4f0faf73e6bf89419cf29b611f29ade 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Packed 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ba9e7ba321b2c4d97f6a19f1deab6a 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Resources/Shaders/Unlit - Transparent Packed.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3fd145b191cf4040ac6b55cda352a53 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af25cd26c99f6e8428bfa6573f05d74e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29136b1a63711a141bcfc47c02e4c3a1 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/ActiveAnimationEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(ActiveAnimation))] 10 | public class ActiveAnimationEditor : Editor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | NGUIEditorTools.SetLabelWidth(80f); 15 | ActiveAnimation aa = target as ActiveAnimation; 16 | GUILayout.Space(3f); 17 | NGUIEditorTools.DrawEvents("On Finished", aa, aa.onFinished); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/ActiveAnimationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ba9ab789855b274fa543308ac44781b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/BMFontReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e158bb7b8285214086ac67290f0cecd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/ComponentSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5a2a079a3e532341bc353243c67d9be 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/EventDelegateDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 919314d918a245a4bb343f8a5dfcaa97 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/EventDelegateEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb8e5b61ab758094e90874901b42da1f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/FreeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2276a2bded84b474baf9d0cab753c900 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/MinMaxRangeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb90f17437a4af49b55a2af54f5d1bd 3 | timeCreated: 1458958592 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIAtlasInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 132f4e1fd324369429abfa6abd65134e 3 | timeCreated: 1544308671 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIContextMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cc4eee160da88443a1fbb257749ca15 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIEditorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c4443a8d3d2c6d4ea480a08299aaceb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIEditorTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e758c1de6cfd8b498cd2526d5b629df 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIFontInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ccf1fdb0bd00c8428f57957c533ed40 3 | timeCreated: 1544322952 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIHandles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4102545b85744ff4d933400e48405407 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIHelp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be77d5f0fc53034eb1f99be556de17f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIJson.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d03d26915d3a63542807ee5e560595e0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUIMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e55520451765634c9abb4830c2b53b3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUISelectionTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34baafa8cf35dfe4b968d22d0e7556e2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUISettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06fab1249a3cb60469c68b2ee2a0701f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUISnap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa846fbc3d8dc874295406a55de7e200 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/NGUITransformInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9997db2c14b24cd4d94a8ebb76fff1f5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/PropertyBindingEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e580c777427c3a64983b83b4858c68e1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/PropertyReferenceDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788be684805fb7f4bb044f3cdf3206be 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/SpriteSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 623be2c02ff0ce24d83ce440e4fa393d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenAlphaEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenAlpha))] 10 | public class TweenAlphaEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenAlpha tw = target as TweenAlpha; 18 | GUI.changed = false; 19 | 20 | float from = EditorGUILayout.Slider("From", tw.from, 0f, 1f); 21 | float to = EditorGUILayout.Slider("To", tw.to, 0f, 1f); 22 | 23 | if (GUI.changed) 24 | { 25 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 26 | tw.from = from; 27 | tw.to = to; 28 | NGUITools.SetDirty(tw); 29 | } 30 | 31 | DrawCommonProperties(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenAlphaEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ca1a2b070be6f04f9dc2b6756d084ff 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenColorEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenColor))] 10 | public class TweenColorEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenColor tw = target as TweenColor; 18 | GUI.changed = false; 19 | 20 | Color from = EditorGUILayout.ColorField("From", tw.from); 21 | Color to = EditorGUILayout.ColorField("To", tw.to); 22 | 23 | if (GUI.changed) 24 | { 25 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 26 | tw.from = from; 27 | tw.to = to; 28 | NGUITools.SetDirty(tw); 29 | } 30 | 31 | DrawCommonProperties(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenColorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7928b5af346eed04ba391047b8b0ddc8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenFOVEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenFOV))] 10 | public class TweenFOVEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenFOV tw = target as TweenFOV; 18 | GUI.changed = false; 19 | 20 | float from = EditorGUILayout.Slider("From", tw.from, 1f, 180f); 21 | float to = EditorGUILayout.Slider("To", tw.to, 1f, 180f); 22 | 23 | if (GUI.changed) 24 | { 25 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 26 | tw.from = from; 27 | tw.to = to; 28 | NGUITools.SetDirty(tw); 29 | } 30 | 31 | DrawCommonProperties(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenFOVEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11db62d6da2a5f34590f41ebb958bd94 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenHeightEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenHeight))] 10 | public class TweenHeightEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenHeight tw = target as TweenHeight; 18 | GUI.changed = false; 19 | 20 | int from = EditorGUILayout.IntField("From", tw.from); 21 | int to = EditorGUILayout.IntField("To", tw.to); 22 | bool table = EditorGUILayout.Toggle("Update Table", tw.updateTable); 23 | 24 | if (from < 0) from = 0; 25 | if (to < 0) to = 0; 26 | 27 | if (GUI.changed) 28 | { 29 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 30 | tw.from = from; 31 | tw.to = to; 32 | tw.updateTable = table; 33 | NGUITools.SetDirty(tw); 34 | } 35 | 36 | DrawCommonProperties(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenHeightEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c135e5506eb921409b47fa6543134ec 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenOrthoSizeEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenOrthoSize))] 10 | public class TweenOrthoSizeEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenOrthoSize tw = target as TweenOrthoSize; 18 | GUI.changed = false; 19 | 20 | float from = EditorGUILayout.FloatField("From", tw.from); 21 | float to = EditorGUILayout.FloatField("To", tw.to); 22 | 23 | if (from < 0f) from = 0f; 24 | if (to < 0f) to = 0f; 25 | 26 | if (GUI.changed) 27 | { 28 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 29 | tw.from = from; 30 | tw.to = to; 31 | NGUITools.SetDirty(tw); 32 | } 33 | 34 | DrawCommonProperties(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenOrthoSizeEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37cda4ddb333a6d469473d36a439d20e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenPositionEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenPosition))] 10 | public class TweenPositionEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenPosition tw = target as TweenPosition; 18 | GUI.changed = false; 19 | 20 | Vector3 from = EditorGUILayout.Vector3Field("From", tw.from); 21 | Vector3 to = EditorGUILayout.Vector3Field("To", tw.to); 22 | 23 | if (GUI.changed) 24 | { 25 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 26 | tw.from = from; 27 | tw.to = to; 28 | NGUITools.SetDirty(tw); 29 | } 30 | 31 | DrawCommonProperties(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenPositionEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3ed7d7dc3fe434d8fbe43ba848c7de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenRotationEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenRotation))] 10 | public class TweenRotationEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenRotation tw = target as TweenRotation; 18 | GUI.changed = false; 19 | 20 | Vector3 from = EditorGUILayout.Vector3Field("From", tw.from); 21 | Vector3 to = EditorGUILayout.Vector3Field("To", tw.to); 22 | var quat = EditorGUILayout.Toggle("Quaternion", tw.quaternionLerp); 23 | 24 | if (GUI.changed) 25 | { 26 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 27 | tw.from = from; 28 | tw.to = to; 29 | tw.quaternionLerp = quat; 30 | NGUITools.SetDirty(tw); 31 | } 32 | 33 | DrawCommonProperties(); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenRotationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37920e4b9f98bd44fa1250a9d995475c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenScaleEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenScale))] 10 | public class TweenScaleEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenScale tw = target as TweenScale; 18 | GUI.changed = false; 19 | 20 | Vector3 from = EditorGUILayout.Vector3Field("From", tw.from); 21 | Vector3 to = EditorGUILayout.Vector3Field("To", tw.to); 22 | bool table = EditorGUILayout.Toggle("Update Table", tw.updateTable); 23 | 24 | if (GUI.changed) 25 | { 26 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 27 | tw.from = from; 28 | tw.to = to; 29 | tw.updateTable = table; 30 | NGUITools.SetDirty(tw); 31 | } 32 | 33 | DrawCommonProperties(); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenScaleEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50b7b0504ae552a42b20841c085dc185 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenTransformEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenTransform))] 10 | public class TweenTransformEditor : UITweenerEditor 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenTransformEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ff6713338f44844c82de82685521dd3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenVolumeEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenVolume))] 10 | public class TweenVolumeEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenVolume tw = target as TweenVolume; 18 | GUI.changed = false; 19 | 20 | float from = EditorGUILayout.Slider("From", tw.from, 0f, 1f); 21 | float to = EditorGUILayout.Slider("To", tw.to, 0f, 1f); 22 | 23 | if (GUI.changed) 24 | { 25 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 26 | tw.from = from; 27 | tw.to = to; 28 | NGUITools.SetDirty(tw); 29 | } 30 | 31 | DrawCommonProperties(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenVolumeEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 023e6404a70e48148b315cf9737211af 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenWidthEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CustomEditor(typeof(TweenWidth))] 10 | public class TweenWidthEditor : UITweenerEditor 11 | { 12 | public override void OnInspectorGUI () 13 | { 14 | GUILayout.Space(6f); 15 | NGUIEditorTools.SetLabelWidth(120f); 16 | 17 | TweenWidth tw = target as TweenWidth; 18 | GUI.changed = false; 19 | 20 | int from = EditorGUILayout.IntField("From", tw.from); 21 | int to = EditorGUILayout.IntField("To", tw.to); 22 | bool table = EditorGUILayout.Toggle("Update Table", tw.updateTable); 23 | 24 | if (from < 0) from = 0; 25 | if (to < 0) to = 0; 26 | 27 | if (GUI.changed) 28 | { 29 | NGUIEditorTools.RegisterUndo("Tween Change", tw); 30 | tw.from = from; 31 | tw.to = to; 32 | tw.updateTable = table; 33 | NGUITools.SetDirty(tw); 34 | } 35 | 36 | DrawCommonProperties(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TweenWidthEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d35cd8e39586acb4a842a0c77019d598 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/TypewriterEffectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d00aad4a2618d0c43b705a5834ec944a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UI2DSpriteEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b58c690fc6247742b470d68991b0b45 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIAnchorEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | [CustomEditor(typeof(UIAnchor))] 11 | public class UIAnchorEditor : Editor 12 | { 13 | public override void OnInspectorGUI () 14 | { 15 | base.OnInspectorGUI(); 16 | EditorGUILayout.HelpBox("All NGUI widgets have anchoring functionality built-in.", MessageType.Info); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIAnchorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ea085d118cd5e4419b53cd2a6037c70 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIAtlasInspector.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEditor; 7 | 8 | /// 9 | /// Inspector class used to edit the UIAtlas. 10 | /// 11 | 12 | [CustomEditor(typeof(UIAtlas))] 13 | public class UIAtlasInspector : NGUIAtlasInspector { } 14 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIAtlasInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7163253a2d8b90f4cbdd7b0630b84dcd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIAtlasMaker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6640bfdeeb55c3846ae12d39c4be16c7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIBasicSpriteEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bb84ce4e2503cc4d90712c5e8b16f75 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIButtonColorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 911094946c3d42444ae2f537f02a998e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIButtonEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5c5298e1d742444a84b57652af46ff8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIButtonKeysEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | #if UNITY_3_5 11 | [CustomEditor(typeof(UIButtonKeys))] 12 | #else 13 | [CustomEditor(typeof(UIButtonKeys), true)] 14 | #endif 15 | public class UIButtonKeysEditor : UIKeyNavigationEditor 16 | { 17 | public override void OnInspectorGUI () 18 | { 19 | base.OnInspectorGUI(); 20 | EditorGUILayout.HelpBox("This component has been replaced by UIKeyNavigation.", MessageType.Warning); 21 | 22 | if (GUILayout.Button("Auto-Upgrade")) 23 | { 24 | NGUIEditorTools.ReplaceClass(serializedObject, typeof(UIKeyNavigation)); 25 | Selection.activeGameObject = null; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIButtonKeysEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebef6265308ce534dbdb180b5240c568 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIButtonMessageEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | [CustomEditor(typeof(UIButtonMessage))] 11 | public class UIButtonMessageEditor : Editor 12 | { 13 | public override void OnInspectorGUI () 14 | { 15 | EditorGUILayout.HelpBox("This is a legacy component. Consider using the Event Trigger instead.", MessageType.Warning); 16 | base.OnInspectorGUI(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIButtonMessageEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c44704a953b80c343a2ed6cd9ea1a77d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UICameraEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0a55f2ca4ffa1b438ee5421182da48a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UICameraTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 395f00539de3dd44e8e1dffd3531a1ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIColorPickerEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | [CustomEditor(typeof(UIColorPicker))] 11 | public class UIColorPickerEditor : Editor 12 | { 13 | public override void OnInspectorGUI () 14 | { 15 | serializedObject.Update(); 16 | 17 | NGUIEditorTools.SetLabelWidth(100f); 18 | UIColorPicker picker = target as UIColorPicker; 19 | 20 | GUILayout.Space(6f); 21 | GUI.changed = false; 22 | 23 | NGUIEditorTools.DrawProperty(serializedObject, "value"); 24 | NGUIEditorTools.DrawProperty(serializedObject, "selectionWidget"); 25 | 26 | GUILayout.Space(6f); 27 | GUI.changed = false; 28 | 29 | NGUIEditorTools.DrawEvents("On Value Change", picker, picker.onChange); 30 | serializedObject.ApplyModifiedProperties(); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIColorPickerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad4bb028f6b2a704bb8a0fc75f6b0652 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UICreateNewUIWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d900a06197aa6b841b6f2ae5d629f2f3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UICreateWidgetWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 245788f199aedac469f04dfc612b041f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIDragObjectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b214795e1e6ed049b4f9679743d48fe 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIDrawCallInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba9d9afe888570648bcbad1b0d7a3971 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIDrawCallViewer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfd51f6d22e704742bbfa42849ad6d43 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIEventTriggerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8342876081aa9364485fc9d21d5f481f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIFontInspector.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEditor; 7 | 8 | /// 9 | /// Inspector class used to view and edit UIFonts. 10 | /// 11 | 12 | [CustomEditor(typeof(UIFont))] 13 | public class UIFontInspector : NGUIFontInspector { } -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIFontInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1bf769ed077fac4b821591f35174d8a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIFontMaker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e14f05c1fecce3c489e85a9d53b8c9a5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIForwardEventsEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | [CustomEditor(typeof(UIForwardEvents))] 11 | public class UIForwardEventsEditor : Editor 12 | { 13 | public override void OnInspectorGUI () 14 | { 15 | EditorGUILayout.HelpBox("This is a legacy component. Consider using the Event Trigger instead.", MessageType.Warning); 16 | base.OnInspectorGUI(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIForwardEventsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 852d1257bb24f5548baaa48bb3220ccb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIGridEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25768f77ff311df4280e5930a00c6a2a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIImageButtonInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a405728ee80ddd458732a8e2ac86dff 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIInputEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bb325a2f543b4d46af7efdc8dfac540 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIKeyNavigationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bd6e95688f06384c9b0c964d1a95dc2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UILabelInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04cb63f7bb5b23f4faa0e2bc480e77c8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UILocalizeEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6134566833bb545429829e1abb8bb4ba 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIPanelInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b826b69ae58db24e94e9e2441b5bde8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIPanelTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8ec094592868d540af38cb278cc80ce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIPlayAnimationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61efec75045d72f48be7163deac67659 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIPlayTweenEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd2d136a660d64e43b806d6016dd7d31 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIPopupListInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b34b6233cb2c16f46a5c82586eab2960 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIPrefabTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eb1f93f938c768488aabc5c498e5f86 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIProgressBarEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81229f2f75daa254298ceeba4651fa0d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIRectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa5b1144562b4be4a839a476a014319c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIRootEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167e85d0ec2d26c4e9d862a87e678254 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIScrollBarEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20f7848ea19ece0419ac9b5999ff0df5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIScrollViewEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a3b2fb31ed86914a9c7ae6b883de316 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UISliderEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | [CustomEditor(typeof(UISlider))] 11 | public class UISliderEditor : UIProgressBarEditor 12 | { 13 | } 14 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UISliderEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a43764fe69e698d40b5024e16213c5cc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UISnapshotPointEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d43571d32669b3f439cff5ea0ee6d6f6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UISpriteAnimationInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0691e062d343d1b41b435e34db5d467f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UISpriteCollectionEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17f0f36308e67ed489cff64b34002ef4 3 | timeCreated: 1538223059 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UISpriteInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 921cc3716d59a904faeee8dec757dea6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIStretchEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using UnityEditor; 8 | 9 | [CanEditMultipleObjects] 10 | [CustomEditor(typeof(UIStretch))] 11 | public class UIStretchEditor : Editor 12 | { 13 | public override void OnInspectorGUI () 14 | { 15 | base.OnInspectorGUI(); 16 | EditorGUILayout.HelpBox("UIStretch is a legacy component and should not be used anymore. All widgets have anchoring functionality built-in.", MessageType.Warning); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIStretchEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26aa400b9b7cfb04492304287feb589d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UITableEditor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | #if UNITY_3_5 7 | using UnityEngine; 8 | using UnityEditor; 9 | 10 | [CanEditMultipleObjects] 11 | [CustomEditor(typeof(UITable))] 12 | public class UITableEditor : UIWidgetContainerEditor 13 | { 14 | } 15 | #endif 16 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UITableEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cf395759d6024f4e953788182f97a84 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UITextureInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e772b2bb85dc225499db07c5206af708 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UITexturePacker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3212969823f62c4f90c010c49b4d816 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIToggleInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cb80309e29808443ae0cd9dc7de36db 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UITweenerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3564c93409a4aaa44a48de1e49be56ba 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIWidgetContainerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74b00d61990c33f4cb5a79a77af61196 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIWidgetInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8a786fe017602a438111c9d297ffcac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Editor/UIWrapContentEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21e41d478ab977b40b3bf8b95b0cdf6d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45d02d8d61ab82148beaa0e15dead959 3 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/EnvelopContent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afc132d2169cbe0478182768b713d882 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/LanguageSelection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c70d290e4a4da804eb63c8b0c528a1b7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/TypewriterEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5e1210a659c71f49b09ec14c4d40e77 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fdca5042b1d12a4890ec1bd4f04290d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonActivate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/NGUI/Scripts/Interaction/UIButtonActivate.cs -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonActivate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e1a147c24165da4b8936f4a453da17e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15cc9c62605319f4a9b20b15918913fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonKeys.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35a096bcfb49b9c409c3875999a2cda9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4c4ff40739c7904ca26c14ffbdc4176 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonOffset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10616d4ce51c5994086c006a7c1189e3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonRotation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f23d9cb4e13584439c9f9ddeed5e512 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIButtonScale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c041f61e4a9fbf4e830210f5d933ece 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UICenterOnChild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d35d721694fa0ee48a2d14bddfcbf4a4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 10 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UICenterOnClick.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72af25c2a1299f94a86fa9cace6e252a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6be1c23e94a0ec847bf5784666c3432d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragDropContainer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | [AddComponentMenu("NGUI/Interaction/Drag and Drop Container")] 9 | public class UIDragDropContainer : MonoBehaviour 10 | { 11 | public Transform reparentTarget; 12 | 13 | protected virtual void Start () { if (reparentTarget == null) reparentTarget = transform; } 14 | } 15 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragDropContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33bc83ab81ec0c44976c6fb1d44e55a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragDropItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9ee9adcf574fc42857acfaad9fb89e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragDropRoot.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | /// 9 | /// When Drag & Drop event begins in UIDragDropItem, it will re-parent itself to the UIDragDropRoot instead. 10 | /// It's useful when you're dragging something out of a clipped panel: you will want to reparent it before 11 | /// it can be dragged outside. 12 | /// 13 | 14 | [AddComponentMenu("NGUI/Interaction/Drag and Drop Root")] 15 | public class UIDragDropRoot : MonoBehaviour 16 | { 17 | static public Transform root; 18 | 19 | void OnEnable () { root = transform; } 20 | void OnDisable () { if (root == transform) root = null; } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragDropRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f58673abf18fa334bbffe3a5b682f103 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b90fc8427bee38c478f5b2f6f0ae9580 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -200 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragResize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e85fff0758f722468e15bd6605b5173 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDragScrollView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f02842fa4878db54f9587ff4de7d9f2d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIDraggableCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b2b2744de0a2904ca960e2d57e1ef56 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIEventTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e862f287df53bb64db191162f851a296 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIForwardEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ae3b1123bedc6429fcbcd3f1548030 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIGrid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07c4de3b4b6fe9045b059ee627c100df 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIImageButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4271d0dec29cc9845a75627e88f762af 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIKeyBinding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 049a2bcd8df653c4d9cb9d39404363a9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIKeyNavigation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 643ea4bc79b55444d974ddbd31a6cd5d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIPlayAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f093ad5830afe44aba6efa8b8a5d5b9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIPlaySound.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d44bc69c2ca5f943b845318866dc1bd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: 6 | - audioClip: {fileID: 8300000, guid: 76218f99e7130334bbabc49674f288bd, type: 3} 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIPlayTween.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaee0fa3c7a782f43ac65b3fea68c1d6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIPopupList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e428c9b6087304da439ec665b56a2d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 3 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIProgressBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b202fea542cfac43b87ef5b4ebda358 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UISavedOption.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7fee06681a472243a6427c8b9847475 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIScrollBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c8d596c16f05d949922ef16347e4cc9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 21 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIScrollView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d81807633ea807d4c8e3fff7e10c6000 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIShowControlScheme.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | /// 9 | /// Show or hide the widget based on whether the control scheme is appropriate. 10 | /// 11 | 12 | public class UIShowControlScheme : MonoBehaviour 13 | { 14 | public GameObject target; 15 | public bool mouse = false; 16 | public bool touch = false; 17 | public bool controller = true; 18 | 19 | void OnEnable () { UICamera.onSchemeChange += OnScheme; OnScheme(); } 20 | void OnDisable () { UICamera.onSchemeChange -= OnScheme; } 21 | 22 | void OnScheme () 23 | { 24 | if (target != null) 25 | { 26 | UICamera.ControlScheme scheme = UICamera.currentScheme; 27 | if (scheme == UICamera.ControlScheme.Mouse) target.SetActive(mouse); 28 | else if (scheme == UICamera.ControlScheme.Touch) target.SetActive(touch); 29 | else if (scheme == UICamera.ControlScheme.Controller) target.SetActive(controller); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIShowControlScheme.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbaaa3487adf4a8428d4b5e12a1ca023 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UISlider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c20815eb3063c24290a61b7020a1836 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 23 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UISoundVolume.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | /// 9 | /// Very simple script that can be attached to a slider and will control the volume of all sounds played via NGUITools.PlaySound, 10 | /// which includes all of UI's sounds. 11 | /// 12 | 13 | [RequireComponent(typeof(UISlider))] 14 | [AddComponentMenu("NGUI/Interaction/Sound Volume")] 15 | public class UISoundVolume : MonoBehaviour 16 | { 17 | void Awake () 18 | { 19 | UISlider slider = GetComponent(); 20 | slider.value = NGUITools.soundVolume; 21 | EventDelegate.Add(slider.onChange, OnChange); 22 | } 23 | 24 | void OnChange () 25 | { 26 | NGUITools.soundVolume = UISlider.current.value; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UISoundVolume.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0ca5f9597ed3ff48aab27234e363f92 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UITable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66ca9c6e5cbd4544ab22016a27d817a4 3 | timeCreated: 1462022145 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 200 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIToggle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 446d504799d99174383957fca80713c8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 40 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIToggledComponents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0480f64170b8ebe45812d18656dcfc44 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIToggledObjects.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f48ecc218d2db49baa9ac1bfe73ba9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIWidgetContainer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | using System.Collections; 8 | 9 | /// 10 | /// Widget container is a generic type class that acts like a non-resizeable widget when selecting things in the scene view. 11 | /// 12 | 13 | [AddComponentMenu("NGUI/Interaction/Widget Container")] 14 | public class UIWidgetContainer : MonoBehaviour { } 15 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIWidgetContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1bf488fc3345a41bad73504e63dce1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Interaction/UIWrapContent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7151fd3c05c1b4c499d4d972a6b88b50 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fce4680d39b38ae4fb4aa6a03f8f3b67 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/ActiveAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ee607e1177db1479c3cbf94cac327e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/AnimationOrTween.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | namespace AnimationOrTween 9 | { 10 | [DoNotObfuscateNGUI] public enum Trigger 11 | { 12 | OnClick, 13 | OnHover, 14 | OnPress, 15 | OnHoverTrue, 16 | OnHoverFalse, 17 | OnPressTrue, 18 | OnPressFalse, 19 | OnActivate, 20 | OnActivateTrue, 21 | OnActivateFalse, 22 | OnDoubleClick, 23 | OnSelect, 24 | OnSelectTrue, 25 | OnSelectFalse, 26 | Manual, 27 | } 28 | 29 | [DoNotObfuscateNGUI] public enum Direction 30 | { 31 | Reverse = -1, 32 | Toggle = 0, 33 | Forward = 1, 34 | } 35 | 36 | [DoNotObfuscateNGUI] public enum EnableCondition 37 | { 38 | DoNothing = 0, 39 | EnableThenPlay, 40 | IgnoreDisabledState, 41 | } 42 | 43 | [DoNotObfuscateNGUI] public enum DisableCondition 44 | { 45 | DisableAfterReverse = -1, 46 | DoNotDisable = 0, 47 | DisableAfterForward = 1, 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/AnimationOrTween.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0249dc991b57a1f4fa6f192e9f4a3883 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/BMFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9254a456c0f8d064a9f8c8596ce772c3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/BMGlyph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43133e037305160469507743bfeb73fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/BMSymbol.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf11dfea9b50b5745b17e71aaccde1c7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/BetterList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06647390effa1ca49a5b31219b23963c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/ByteReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69381003764fe1547ae1574f92908a15 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/EventDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3f2106c60b06a74ab95b50f1fab1e83 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/Localization.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4850261060aea044ae098e8e9979e62 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -300 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/MinMaxRangeAttribute.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | public class MinMaxRangeAttribute : PropertyAttribute 9 | { 10 | public float minLimit, maxLimit; 11 | 12 | public MinMaxRangeAttribute (float minLimit, float maxLimit) 13 | { 14 | this.minLimit = minLimit; 15 | this.maxLimit = maxLimit; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/MinMaxRangeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94f43f87071788c43885c97441c8fdc8 3 | timeCreated: 1458958592 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/NGUIDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecb9547bf2766f645b5e6046483a6c72 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/NGUIMath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24438193675d223439c8b044419aab8c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/NGUIText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a8ace6ca0abad0469f6f961e94e9b28 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/NGUITools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0956b9fe87fb4d43ad76a06b9b0b3a1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/PropertyBinding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 501d3db605fb18e43bfa0d782ccf1586 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/PropertyReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c5dfd3a35d7b364dba380b1615a414a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/RealTime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19247bef9e8504440bfc43d9529e4515 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -400 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/SpringPanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be10cbaaf1096094ca8285024d49002e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UIBasicSprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13a634c325376bf48bda936d36ad7e9d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UIDrawCall.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f5158b7acfccaf4ca4a8a581255b653 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UIEventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1bd99dcf43f97d48bb6215c70f0cd40 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UIGeometry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4033f00d093b3164a9ab789dcce5a78c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UIRect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5a11779a4614cc4cb971686291ca92e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UISnapshotPoint.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | [ExecuteInEditMode] 9 | [AddComponentMenu("NGUI/Internal/Snapshot Point")] 10 | public class UISnapshotPoint : MonoBehaviour 11 | { 12 | public bool isOrthographic = true; 13 | public float nearClip = -100f; 14 | public float farClip = 100f; 15 | 16 | [Range(10, 80)] 17 | public int fieldOfView = 35; 18 | public float orthoSize = 30f; 19 | 20 | public Texture2D thumbnail; 21 | 22 | void Start () { if (tag != "EditorOnly") tag = "EditorOnly"; } 23 | } 24 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UISnapshotPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f06f6958f58e84478860551165902ec 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Internal/UIWidget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 858a20c1b21a3f94bb5b2d3b901c9aaf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6bdd27938945f0449bc8fe7947f2bf2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/AnimatedAlpha.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | /// 9 | /// Makes it possible to animate alpha of the widget or a panel. 10 | /// 11 | 12 | [ExecuteInEditMode] 13 | public class AnimatedAlpha : MonoBehaviour 14 | { 15 | [Range(0f, 1f)] 16 | public float alpha = 1f; 17 | 18 | UIWidget mWidget; 19 | UIPanel mPanel; 20 | 21 | void OnEnable () 22 | { 23 | mWidget = GetComponent(); 24 | mPanel = GetComponent(); 25 | LateUpdate(); 26 | } 27 | 28 | void LateUpdate () 29 | { 30 | if (mWidget != null) mWidget.alpha = alpha; 31 | if (mPanel != null) mPanel.alpha = alpha; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/AnimatedAlpha.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f9aef6d5962d8849aa830ef46c7c993 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/AnimatedColor.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | /// 9 | /// Makes it possible to animate a color of the widget. 10 | /// 11 | 12 | [ExecuteInEditMode] 13 | [RequireComponent(typeof(UIWidget))] 14 | public class AnimatedColor : MonoBehaviour 15 | { 16 | public Color color = Color.white; 17 | 18 | UIWidget mWidget; 19 | 20 | void OnEnable () { mWidget = GetComponent(); LateUpdate(); } 21 | void LateUpdate () { mWidget.color = color; } 22 | } 23 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/AnimatedColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2278f9af1633ae43a759ad6cdb74608 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/AnimatedWidget.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------- 2 | // NGUI: Next-Gen UI kit 3 | // Copyright © 2011-2019 Tasharen Entertainment Inc 4 | //------------------------------------------------- 5 | 6 | using UnityEngine; 7 | 8 | /// 9 | /// Makes it possible to animate the widget's width and height using Unity's animations. 10 | /// 11 | 12 | [ExecuteInEditMode] 13 | public class AnimatedWidget : MonoBehaviour 14 | { 15 | public float width = 1f; 16 | public float height = 1f; 17 | 18 | UIWidget mWidget; 19 | 20 | void OnEnable () 21 | { 22 | mWidget = GetComponent(); 23 | LateUpdate(); 24 | } 25 | 26 | void LateUpdate () 27 | { 28 | if (mWidget != null) 29 | { 30 | mWidget.width = Mathf.RoundToInt(width); 31 | mWidget.height = Mathf.RoundToInt(height); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/AnimatedWidget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27adfee35dd94cb4a8d0cd2ed7d934be 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/SpringPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b07b9d136934c04b965f9adb7054484 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenAlpha.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e2747e3775af504da1a4d5a46c5a1ce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfa4a4a103e4fed43a7e9e9df4a6915c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenFOV.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0153adb55685cee4d97c4ee2d52124e5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenFill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ba7f59a1f412544f85ac3e66f0b5227 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenHeight.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66a6ab21c5f860946ade65b47cc0270b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -92 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenLetters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49c8ea27ad4a61946bf9a14121002ada 3 | timeCreated: 1480282258 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: -220 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenOrthoSize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 365827806a6dd8b4583deeefe6e483c9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d166255cacf07b4292b8402b3ddefc5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -98 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenRotation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d1b7c9e9a19a24ab67123a43c6544b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -95 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenScale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75e7459110b9666449485c40f25362a5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -94 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d805c79a1ab11643bfd9d91e10c195a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenVolume.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17aeef7ce6c142344959e650cab20151 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/TweenWidth.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fe5d396737f89f4ea1534bc147cad2e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -93 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/Tweening/UITweener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c96860f5597f2494abb42d29cdca0bcc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5949771cb7bf2144b457d1226aaa7b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/NGUIAtlas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 125b9f6e6906d6e4897a443b3c12729c 3 | timeCreated: 1544301676 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/NGUIFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a3c1ecb0cfff2e4d9d70fbd9552f19a 3 | timeCreated: 1544312514 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UI2DSprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e96b31ce75e592f45a1cff563a4869db 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 5 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UI2DSpriteAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f945d2f8b430a140a60224c850dbbdb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIAnchor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8077b76001d36d489868d20d28bddb9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -23 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIAtlas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d0c51bb0b6e93049af5e88f93826e3b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UICamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a92b5d748695fd44aac9feef17ba415 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -90 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIColorPicker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02e5d51ade5cb9d49b9a4ab78bc8d622 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b4eb3a400afab046abb8471a9d746d6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac5060295fbd39b4a88d20d0c83d925e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 1 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIInputOnGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f555bda46cc2e6f448cde6a38c0de59b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UILabel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9d0b5f3bbe925a408bd595c79d0bf63 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UILocalize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa69d5b40401f77469779cf7f6fc94a0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIOrthoCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e99a627c1d84ba64faaf1a819b50fd6e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIPanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae942c9068183dc40a9d01f648273726 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 300 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c5ecb5660b11414fb042fb826e03b73 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -250 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UISprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3dc54f924693f41b5cbecb267e647a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UISpriteAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9bfb5c080dac24cbbc6c9f595ed413 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UISpriteCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2b95cb0cd9111f49a55b78074ddd945 3 | timeCreated: 1538212941 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UISpriteData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23d662aa841b434588de6b8c3cb5b3e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIStretch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94b5bd8d2e1bcbe4580036799fb6ca41 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -21 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UITextList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 020d0c1db3283a342ab86731270ea060 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UITexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5c5ca47aa5c01740810b7c66662099f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UITooltip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc946d84fba95f41a0136cf378875be 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NGUI/Scripts/UI/UIViewport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a4738b17d7857b4fa52eb2d3ca0cb3a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f704ae4b4f98ae41a0bce26658850c1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99c9720ab356a0642a771bea13969a05 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59805d5000b9df446ad319d1ae5c34b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/ZipHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8032b6de7c1ee854e92234127fc7c9a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ZipTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e02f89eb9e748040b1230f2fed27697 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 943d092ff71824c45b61293c75fda32e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b3f97c33f643294786dd18786fe6e2c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UI/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3baaff2e18a947d4c80c49f8f90a5d68 3 | folderAsset: yes 4 | timeCreated: 1539170041 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UI/Atlas/ReviewAtlas.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: ReviewAtlas 10 | m_Shader: {fileID: 4800000, guid: e75727d9555d9d14ca51d91908c681bc, type: 3} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | - first: 19 | name: _MainTex 20 | second: 21 | m_Texture: {fileID: 2800000, guid: a295fdb4194995c4f88d8d8a4f50fe7b, type: 3} 22 | m_Scale: {x: 1, y: 1} 23 | m_Offset: {x: 0, y: 0} 24 | m_Floats: [] 25 | m_Colors: [] 26 | -------------------------------------------------------------------------------- /Assets/UI/Atlas/ReviewAtlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2f409c333c370840971dcfa953365a8 3 | timeCreated: 1545205303 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UI/Atlas/ReviewAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/UI/Atlas/ReviewAtlas.png -------------------------------------------------------------------------------- /Assets/UI/Atlas/ReviewAtlas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7928e1c4a9f062b46a29426d5f4d7704 3 | timeCreated: 1545205304 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UI/Sprite.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adc84d9812065c948b5a52465a452e76 3 | folderAsset: yes 4 | timeCreated: 1539164438 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UI/Sprite/Skill.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d0ceb35016d9c040a9583b6e6617b19 3 | folderAsset: yes 4 | timeCreated: 1545044030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UI/Sprite/Skill/Skill_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/UI/Sprite/Skill/Skill_1.png -------------------------------------------------------------------------------- /Assets/UI/Sprite/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/UI/Sprite/s1.png -------------------------------------------------------------------------------- /Assets/UI/Texture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d628d6d4c8fe1f34c92232369f49868c 3 | folderAsset: yes 4 | timeCreated: 1539164858 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UI/Texture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/UI/Texture/1.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bc14b7604790e2468edade63bf006e0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eba0540f13fa814e8365f9609fe4480 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be59a0c4d5f3fb74cb91151a927cdabb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15d89de0102fd6743afd4d727f43d481 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Editor/ReporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 639e2d9db58377f4997f7678b50e7e7a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7482c424dbd8a48489e4b2091f858a69 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/ComputerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/ComputerIcon.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/Save.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/UnityIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/UnityIcon.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/back.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/bar.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/buildFrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/buildFrom.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/button_active.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/chart.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/clear.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/clearOnSceneLoaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/clearOnSceneLoaded.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/close.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/collapse.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/date.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/error_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/error_icon.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/even_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/even_log.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/fps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/fps.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/graphicCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/graphicCard.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/info.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/log_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/log_icon.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/memory.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/odd_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/odd_log.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/reporterScrollerSkin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/reporterScrollerSkin.guiskin -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/reporterScrollerSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cc68832d00d3284a9324a4dc05be753 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_down_arraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_down_arraw.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_horizental_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_horizental_back.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_horizental_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_horizental_thumb.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_left_arraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_left_arraw.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_right_arraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_right_arraw.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_up_arraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_up_arraw.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_vertical_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_vertical_back.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/scroller_vertical_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/scroller_vertical_thumb.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/search.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/selected.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/software.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/timer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/timer_1.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/user.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Images/warning_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Images/warning_icon.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/MultiKeyDictionary.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | 5 | public class MultiKeyDictionary : Dictionary> 6 | { 7 | new public Dictionary this[T1 key] 8 | { 9 | get 10 | { 11 | if (!ContainsKey(key)) 12 | Add(key, new Dictionary()); 13 | 14 | Dictionary returnObj; 15 | TryGetValue(key, out returnObj); 16 | 17 | return returnObj; 18 | } 19 | } 20 | 21 | public bool ContainsKey(T1 key1, T2 key2) 22 | { 23 | Dictionary returnObj; 24 | TryGetValue(key1, out returnObj); 25 | if (returnObj == null) 26 | return false; 27 | 28 | return returnObj.ContainsKey(key2); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/MultiKeyDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d432a5d3d68af34aa3aefa93fc296c1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Reporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 600c02144c4813244abd262cbcbe8825 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/ReporterGUI.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class ReporterGUI : MonoBehaviour 5 | { 6 | Reporter reporter; 7 | void Awake() 8 | { 9 | reporter = gameObject.GetComponent(); 10 | } 11 | 12 | void OnGUI() 13 | { 14 | reporter.OnGUIDraw(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/ReporterGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c866050b2c752d488112993fd0ddfce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/ReporterMessageReceiver.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class ReporterMessageReceiver : MonoBehaviour 5 | { 6 | Reporter reporter; 7 | void Start() 8 | { 9 | reporter = gameObject.GetComponent(); 10 | } 11 | 12 | void OnPreStart() 13 | { 14 | //To Do : this method is called before initializing reporter, 15 | //we can for example check the resultion of our device ,then change the size of reporter 16 | if (reporter == null) 17 | reporter = gameObject.GetComponent(); 18 | 19 | if (Screen.width < 1000) 20 | reporter.size = new Vector2(32, 32); 21 | else 22 | reporter.size = new Vector2(48, 48); 23 | 24 | reporter.UserData = "Put user date here like his account to know which user is playing on this device"; 25 | } 26 | 27 | void OnHideReporter() 28 | { 29 | //TO DO : resume your game 30 | } 31 | 32 | void OnShowReporter() 33 | { 34 | //TO DO : pause your game and disable its GUI 35 | } 36 | 37 | void OnLog(Reporter.Log log) 38 | { 39 | //TO DO : put you custom code 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/ReporterMessageReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6767a180de870304caa2013b2772dd62 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c32ffadc35cc8045a81f08654eaf6cf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/ReporterScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Test/ReporterScene.unity -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/ReporterScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50197f88423d447488d9bff2736b47dc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/Rotate.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class Rotate : MonoBehaviour 5 | { 6 | Vector3 angle; 7 | 8 | void Start() 9 | { 10 | angle = transform.eulerAngles; 11 | } 12 | 13 | void Update() 14 | { 15 | angle.y += Time.deltaTime * 100; 16 | transform.eulerAngles = angle; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/Rotate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa24ce3e8b4a445479906686d9756911 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/TestReporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac68c003767bec459aa60dc282ff67d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/test1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Test/test1.unity -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/test1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cf4e2e23b6e31d498242c9db1608ccd 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/test2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/Reporter/Test/test2.unity -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/Reporter/Test/test2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91c6d29558bd35e4d9d9883614fa135b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11368ea0d621d04489e23258e84e57e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/GCMem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/GCMem.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/clear.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/clearOnNewScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/clearOnNewScene.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/collapse.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/error.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/fps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/fps.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/index.htm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68b70a292ec196a428883c28b8faa79b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/info.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/log.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/scene.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/screenShot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/screenShot11.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/screenShot21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/screenShot21.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/screenShot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/screenShot3.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/style.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 972750b1714134f49b129b3610db8fae 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/time.png -------------------------------------------------------------------------------- /Assets/Unity-Logs-Viewer/ReporterDocumentation/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/Assets/Unity-Logs-Viewer/ReporterDocumentation/warning.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0f2 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkumao/UnityZip/98fa450363639216f2f729262b0d01bd8ed48f03/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UnityZip 2 | 使用SharpZipLib实现Unity压缩/解压缩 3 | 4 | Unity版本556, SharpZipLib 0.8 5 | 如果使用Unity2018.3以后的版本 可以自己把SharpZipLib升级到最新, 最新版需要C#7.0的语法支持 6 | 7 | 解压时安卓上会分配大量的mono堆内存. 8 | 9 | 测试压缩包200mb, 包内全是几十k的png图片. 10 | 大概每10mb 需要最多 1s 的解压时间. 也就是 200mb的zip文件 解压需要18-21左右. 11 | 12 | 正常项目中使用 需要放到多线程中进行解压缩操作. 13 | 14 | Unity-Logs-Viewer方便查看日志和内存占用. 15 | 16 | 只测试了zip格式. 17 | 18 | 19 | 20 | **New 升级到了2018.3 SharpZipLib 也升级到了最新版 1.10** 21 | 22 | ![](https://github.com/huangkumao/GitProjectImgs/blob/master/UnityZip/1.png) 23 | ![](https://github.com/huangkumao/GitProjectImgs/blob/master/UnityZip/2.png) 24 | 25 | --------------------------------------------------------------------------------