├── .gitattributes ├── .gitignore ├── Assets ├── Editor.meta ├── Editor │ ├── BuildPackage.cs │ ├── BuildPackage.cs.meta │ ├── CheckUnityVersion.cs │ ├── CheckUnityVersion.cs.meta │ ├── PrepForUASExport.cs │ ├── PrepForUASExport.cs.meta │ ├── Tests.meta │ └── Tests │ │ ├── TestImportGltf.cs │ │ └── TestImportGltf.cs.meta ├── PolyToolkit.meta ├── PolyToolkit │ ├── Editor.meta │ ├── Editor │ │ ├── AnalyticsSender.cs │ │ ├── AnalyticsSender.cs.meta │ │ ├── AssetBrowser.meta │ │ ├── AssetBrowser │ │ │ ├── AssetBrowserManager.cs │ │ │ ├── AssetBrowserManager.cs.meta │ │ │ ├── AssetBrowserWindow.cs │ │ │ ├── AssetBrowserWindow.cs.meta │ │ │ ├── GUIHelper.cs │ │ │ ├── GUIHelper.cs.meta │ │ │ ├── ThumbnailCache.cs │ │ │ ├── ThumbnailCache.cs.meta │ │ │ ├── WelcomeWindow.cs │ │ │ └── WelcomeWindow.cs.meta │ │ ├── CheckBuild.cs │ │ ├── CheckBuild.cs.meta │ │ ├── DummyVERSION.txt │ │ ├── DummyVERSION.txt.meta │ │ ├── Importer.meta │ │ ├── Importer │ │ │ ├── AttributionFileGenerator.cs │ │ │ ├── AttributionFileGenerator.cs.meta │ │ │ ├── PolyImporter.cs │ │ │ └── PolyImporter.cs.meta │ │ ├── PostInstallHandler.cs │ │ ├── PostInstallHandler.cs.meta │ │ ├── PtAnalytics.cs │ │ ├── PtAnalytics.cs.meta │ │ ├── PtSettingsEditor.cs │ │ ├── PtSettingsEditor.cs.meta │ │ ├── PtUtils.cs │ │ ├── PtUtils.cs.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── BackArrow.png │ │ │ ├── BackArrow.png.meta │ │ │ ├── BackArrowDark.png │ │ │ ├── BackArrowDark.png.meta │ │ │ ├── DarkGrey.png │ │ │ ├── DarkGrey.png.meta │ │ │ ├── LightGrey.png │ │ │ ├── LightGrey.png.meta │ │ │ ├── PolyToolkitTitle.png │ │ │ ├── PolyToolkitTitle.png.meta │ │ │ ├── PolyToolkitWelcome.png │ │ │ └── PolyToolkitWelcome.png.meta │ │ ├── WarnAboutUsingPolyInternal.cs │ │ ├── WarnAboutUsingPolyInternal.cs.meta │ │ ├── WarnIfManagerNotInScene.cs │ │ └── WarnIfManagerNotInScene.cs.meta │ ├── ExampleScenes.meta │ ├── ExampleScenes │ │ ├── HelloPoly.unity │ │ ├── HelloPoly.unity.meta │ │ ├── ShowFeaturedExample.unity │ │ └── ShowFeaturedExample.unity.meta │ ├── ExampleScripts.meta │ ├── ExampleScripts │ │ ├── HelloPoly.cs │ │ ├── HelloPoly.cs.meta │ │ ├── Rotate.cs │ │ ├── Rotate.cs.meta │ │ ├── ShowFeaturedExample.cs │ │ └── ShowFeaturedExample.cs.meta │ ├── Internal.meta │ ├── Internal │ │ ├── AsyncImporter.cs │ │ ├── AsyncImporter.cs.meta │ │ ├── AttributionGeneration.cs │ │ ├── AttributionGeneration.cs.meta │ │ ├── Authenticator.cs │ │ ├── Authenticator.cs.meta │ │ ├── AutoStringify.cs │ │ ├── AutoStringify.cs.meta │ │ ├── CoroutineRunner.cs │ │ ├── CoroutineRunner.cs.meta │ │ ├── DisabledPropertyAttribute.cs │ │ ├── DisabledPropertyAttribute.cs.meta │ │ ├── EditTimeImportOptions.cs │ │ ├── EditTimeImportOptions.cs.meta │ │ ├── Features.cs │ │ ├── Features.cs.meta │ │ ├── Gltf1Schema.cs │ │ ├── Gltf1Schema.cs.meta │ │ ├── Gltf2Schema.cs │ │ ├── Gltf2Schema.cs.meta │ │ ├── GltfMaterialConverter.cs │ │ ├── GltfMaterialConverter.cs.meta │ │ ├── GltfSchemaCommon.cs │ │ ├── GltfSchemaCommon.cs.meta │ │ ├── HelpTextAttribute.cs │ │ ├── HelpTextAttribute.cs.meta │ │ ├── IUriLoader.cs │ │ ├── IUriLoader.cs.meta │ │ ├── ImportGltf.cs │ │ ├── ImportGltf.cs.meta │ │ ├── IntRange.cs │ │ ├── IntRange.cs.meta │ │ ├── MathUtils.cs │ │ ├── MathUtils.cs.meta │ │ ├── MeasurementUnits.cs │ │ ├── MeasurementUnits.cs.meta │ │ ├── PolyInternalUtils.cs │ │ ├── PolyInternalUtils.cs.meta │ │ ├── PolyMainInternal.cs │ │ ├── PolyMainInternal.cs.meta │ │ ├── PolyUtils.cs │ │ ├── PolyUtils.cs.meta │ │ ├── PtDebug.cs │ │ ├── PtDebug.cs.meta │ │ ├── PtSettings.cs │ │ ├── PtSettings.cs.meta │ │ ├── ThumbnailFetcher.cs │ │ ├── ThumbnailFetcher.cs.meta │ │ ├── UnityCompat.cs │ │ ├── UnityCompat.cs.meta │ │ ├── Version.cs │ │ ├── Version.cs.meta │ │ ├── api_clients.meta │ │ ├── api_clients │ │ │ ├── poly_client.meta │ │ │ └── poly_client │ │ │ │ ├── PolyClient.cs │ │ │ │ ├── PolyClient.cs.meta │ │ │ │ ├── PolyClientUtils.cs │ │ │ │ └── PolyClientUtils.cs.meta │ │ ├── caching.meta │ │ ├── caching │ │ │ ├── PersistentBlobCache.cs │ │ │ └── PersistentBlobCache.cs.meta │ │ ├── entitlement.meta │ │ ├── entitlement │ │ │ ├── OAuth2Identity.cs │ │ │ └── OAuth2Identity.cs.meta │ │ ├── model.meta │ │ ├── model │ │ │ ├── export.meta │ │ │ ├── export │ │ │ │ ├── ExportUtils.cs │ │ │ │ ├── ExportUtils.cs.meta │ │ │ │ ├── Exporter.cs │ │ │ │ └── Exporter.cs.meta │ │ │ ├── util.meta │ │ │ └── util │ │ │ │ ├── BackgroundMain.cs │ │ │ │ ├── BackgroundMain.cs.meta │ │ │ │ ├── BackgroundWork.cs │ │ │ │ ├── BackgroundWork.cs.meta │ │ │ │ ├── ConcurrentQueue.cs │ │ │ │ ├── ConcurrentQueue.cs.meta │ │ │ │ ├── WebRequestManager.cs │ │ │ │ └── WebRequestManager.cs.meta │ │ ├── tbt.meta │ │ ├── tbt │ │ │ ├── Brushes.meta │ │ │ ├── Brushes │ │ │ │ ├── AllBrushes.asset │ │ │ │ ├── AllBrushes.asset.meta │ │ │ │ ├── Basic.meta │ │ │ │ ├── Basic │ │ │ │ │ ├── Bubbles.meta │ │ │ │ │ ├── Bubbles │ │ │ │ │ │ ├── Bubbles.asset │ │ │ │ │ │ ├── Bubbles.asset.meta │ │ │ │ │ │ ├── Bubbles.mat │ │ │ │ │ │ ├── Bubbles.mat.meta │ │ │ │ │ │ ├── Bubbles.shader │ │ │ │ │ │ ├── Bubbles.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── CelVinyl.meta │ │ │ │ │ ├── CelVinyl │ │ │ │ │ │ ├── CelVinyl.shader │ │ │ │ │ │ ├── CelVinyl.shader.meta │ │ │ │ │ │ ├── CelVinyl_16.asset │ │ │ │ │ │ ├── CelVinyl_16.asset.meta │ │ │ │ │ │ ├── CelVinyl_16.mat │ │ │ │ │ │ ├── CelVinyl_16.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── ChromaticWave.meta │ │ │ │ │ ├── ChromaticWave │ │ │ │ │ │ ├── ChromaticWave.asset │ │ │ │ │ │ ├── ChromaticWave.asset.meta │ │ │ │ │ │ ├── ChromaticWave.mat │ │ │ │ │ │ ├── ChromaticWave.mat.meta │ │ │ │ │ │ ├── ChromaticWave.shader │ │ │ │ │ │ └── ChromaticWave.shader.meta │ │ │ │ │ ├── CoarseBristles.meta │ │ │ │ │ ├── CoarseBristles │ │ │ │ │ │ ├── CoarseBristles.asset │ │ │ │ │ │ ├── CoarseBristles.asset.meta │ │ │ │ │ │ ├── CoarseBristles.mat │ │ │ │ │ │ ├── CoarseBristles.mat.meta │ │ │ │ │ │ ├── leaves.png │ │ │ │ │ │ └── leaves.png.meta │ │ │ │ │ ├── CoarseBristlesSingleSided.meta │ │ │ │ │ ├── CoarseBristlesSingleSided │ │ │ │ │ │ ├── CoarseBristlesSingleSided.asset │ │ │ │ │ │ ├── CoarseBristlesSingleSided.asset.meta │ │ │ │ │ │ ├── CoarseBristlesSingleSided.mat │ │ │ │ │ │ └── CoarseBristlesSingleSided.mat.meta │ │ │ │ │ ├── Comet.meta │ │ │ │ │ ├── Comet │ │ │ │ │ │ ├── Comet.shader │ │ │ │ │ │ ├── Comet.shader.meta │ │ │ │ │ │ ├── Comet_16.asset │ │ │ │ │ │ ├── Comet_16.asset.meta │ │ │ │ │ │ ├── Comet_16.mat │ │ │ │ │ │ ├── Comet_16.mat.meta │ │ │ │ │ │ ├── gradient.png │ │ │ │ │ │ ├── gradient.png.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── DiamondHull.meta │ │ │ │ │ ├── DiamondHull │ │ │ │ │ │ ├── DiamondHull.shader │ │ │ │ │ │ ├── DiamondHull.shader.meta │ │ │ │ │ │ ├── DiamondHull_16.asset │ │ │ │ │ │ ├── DiamondHull_16.asset.meta │ │ │ │ │ │ ├── DiamondHull_16.mat │ │ │ │ │ │ ├── DiamondHull_16.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── Disco.meta │ │ │ │ │ ├── Disco │ │ │ │ │ │ ├── Disco.asset │ │ │ │ │ │ ├── Disco.asset.meta │ │ │ │ │ │ ├── Disco.mat │ │ │ │ │ │ ├── Disco.mat.meta │ │ │ │ │ │ ├── Disco.shader │ │ │ │ │ │ └── Disco.shader.meta │ │ │ │ │ ├── DotMarker.meta │ │ │ │ │ ├── DotMarker │ │ │ │ │ │ ├── DotMarker.asset │ │ │ │ │ │ ├── DotMarker.asset.meta │ │ │ │ │ │ ├── DotMarker.mat │ │ │ │ │ │ ├── DotMarker.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Dots.meta │ │ │ │ │ ├── Dots │ │ │ │ │ │ ├── Dots.asset │ │ │ │ │ │ ├── Dots.asset.meta │ │ │ │ │ │ ├── Dots.mat │ │ │ │ │ │ ├── Dots.mat.meta │ │ │ │ │ │ ├── Dots.shader │ │ │ │ │ │ ├── Dots.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── DoubleTaperedFlat.meta │ │ │ │ │ ├── DoubleTaperedFlat │ │ │ │ │ │ ├── DiffuseNoTextureDoubleSided.shader │ │ │ │ │ │ ├── DiffuseNoTextureDoubleSided.shader.meta │ │ │ │ │ │ ├── DoubleTaperedFlat.asset │ │ │ │ │ │ ├── DoubleTaperedFlat.asset.meta │ │ │ │ │ │ ├── DoubleTaperedFlat.mat │ │ │ │ │ │ └── DoubleTaperedFlat.mat.meta │ │ │ │ │ ├── DoubleTaperedMarker.meta │ │ │ │ │ ├── DoubleTaperedMarker │ │ │ │ │ │ ├── DoubleTaperedMarker.asset │ │ │ │ │ │ ├── DoubleTaperedMarker.asset.meta │ │ │ │ │ │ ├── DoubleTaperedMarker.mat │ │ │ │ │ │ ├── DoubleTaperedMarker.mat.meta │ │ │ │ │ │ ├── DoubleTaperedMarker.shader │ │ │ │ │ │ └── DoubleTaperedMarker.shader.meta │ │ │ │ │ ├── DuctTape.meta │ │ │ │ │ ├── DuctTape │ │ │ │ │ │ ├── DuctTape.asset │ │ │ │ │ │ ├── DuctTape.asset.meta │ │ │ │ │ │ ├── DuctTape.mat │ │ │ │ │ │ ├── DuctTape.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ ├── main.png.meta │ │ │ │ │ │ ├── normal.png │ │ │ │ │ │ └── normal.png.meta │ │ │ │ │ ├── DuctTapeSingleSided.meta │ │ │ │ │ ├── DuctTapeSingleSided │ │ │ │ │ │ ├── DuctTapeSingleSided.asset │ │ │ │ │ │ ├── DuctTapeSingleSided.asset.meta │ │ │ │ │ │ ├── DuctTapeSingleSided.mat │ │ │ │ │ │ └── DuctTapeSingleSided.mat.meta │ │ │ │ │ ├── Electricity.meta │ │ │ │ │ ├── Electricity │ │ │ │ │ │ ├── Electricity.asset │ │ │ │ │ │ ├── Electricity.asset.meta │ │ │ │ │ │ ├── Electricity.mat │ │ │ │ │ │ ├── Electricity.mat.meta │ │ │ │ │ │ ├── Electricity.shader │ │ │ │ │ │ └── Electricity.shader.meta │ │ │ │ │ ├── Embers.meta │ │ │ │ │ ├── Embers │ │ │ │ │ │ ├── Embers.asset │ │ │ │ │ │ ├── Embers.asset.meta │ │ │ │ │ │ ├── Embers.mat │ │ │ │ │ │ ├── Embers.mat.meta │ │ │ │ │ │ ├── Embers.shader │ │ │ │ │ │ ├── Embers.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Fire.meta │ │ │ │ │ ├── Fire │ │ │ │ │ │ ├── Fire.asset │ │ │ │ │ │ ├── Fire.asset.meta │ │ │ │ │ │ ├── Fire.mat │ │ │ │ │ │ ├── Fire.mat.meta │ │ │ │ │ │ ├── Fire.shader │ │ │ │ │ │ ├── Fire.shader.meta │ │ │ │ │ │ ├── fire.png │ │ │ │ │ │ └── fire.png.meta │ │ │ │ │ ├── Flat.meta │ │ │ │ │ ├── Flat │ │ │ │ │ │ ├── Flat.asset │ │ │ │ │ │ ├── Flat.asset.meta │ │ │ │ │ │ ├── Flat.mat │ │ │ │ │ │ └── Flat.mat.meta │ │ │ │ │ ├── FlatDeprecated.meta │ │ │ │ │ ├── FlatDeprecated │ │ │ │ │ │ ├── FlatDeprecated.asset │ │ │ │ │ │ ├── FlatDeprecated.asset.meta │ │ │ │ │ │ ├── FlatDeprecated.mat │ │ │ │ │ │ └── FlatDeprecated.mat.meta │ │ │ │ │ ├── FlatSingleSided.meta │ │ │ │ │ ├── FlatSingleSided │ │ │ │ │ │ ├── FlatSingleSided.asset │ │ │ │ │ │ ├── FlatSingleSided.asset.meta │ │ │ │ │ │ ├── FlatSingleSided.mat │ │ │ │ │ │ └── FlatSingleSided.mat.meta │ │ │ │ │ ├── Highlighter.meta │ │ │ │ │ ├── Highlighter │ │ │ │ │ │ ├── AdditiveCutout.shader │ │ │ │ │ │ ├── AdditiveCutout.shader.meta │ │ │ │ │ │ ├── Highlighter.asset │ │ │ │ │ │ ├── Highlighter.asset.meta │ │ │ │ │ │ ├── Highlighter.mat │ │ │ │ │ │ ├── Highlighter.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── HyperGrid.meta │ │ │ │ │ ├── HyperGrid │ │ │ │ │ │ ├── HyperGrid.asset │ │ │ │ │ │ ├── HyperGrid.asset.meta │ │ │ │ │ │ ├── HyperGrid.mat │ │ │ │ │ │ ├── HyperGrid.mat.meta │ │ │ │ │ │ ├── HyperGrid.shader │ │ │ │ │ │ ├── HyperGrid.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Hypercolor.meta │ │ │ │ │ ├── Hypercolor │ │ │ │ │ │ ├── Hypercolor.asset │ │ │ │ │ │ ├── Hypercolor.asset.meta │ │ │ │ │ │ ├── Hypercolor.mat │ │ │ │ │ │ ├── Hypercolor.mat.meta │ │ │ │ │ │ ├── HypercolorDoubleSided.shader │ │ │ │ │ │ ├── HypercolorDoubleSided.shader.meta │ │ │ │ │ │ ├── HypercolorSingleSided.shader │ │ │ │ │ │ ├── HypercolorSingleSided.shader.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ ├── main.png.meta │ │ │ │ │ │ ├── normal.png │ │ │ │ │ │ └── normal.png.meta │ │ │ │ │ ├── HypercolorSingleSided.meta │ │ │ │ │ ├── HypercolorSingleSided │ │ │ │ │ │ ├── HypercolorSingleSided.asset │ │ │ │ │ │ ├── HypercolorSingleSided.asset.meta │ │ │ │ │ │ ├── HypercolorSingleSided.mat │ │ │ │ │ │ └── HypercolorSingleSided.mat.meta │ │ │ │ │ ├── Icing.meta │ │ │ │ │ ├── Icing │ │ │ │ │ │ ├── Icing_16.asset │ │ │ │ │ │ ├── Icing_16.asset.meta │ │ │ │ │ │ ├── Icing_16.mat │ │ │ │ │ │ ├── Icing_16.mat.meta │ │ │ │ │ │ ├── normal.png │ │ │ │ │ │ └── normal.png.meta │ │ │ │ │ ├── Ink.meta │ │ │ │ │ ├── Ink │ │ │ │ │ │ ├── Ink.asset │ │ │ │ │ │ ├── Ink.asset.meta │ │ │ │ │ │ ├── Ink.mat │ │ │ │ │ │ ├── Ink.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ ├── maintexture.png.meta │ │ │ │ │ │ ├── maintexture_normal.png │ │ │ │ │ │ └── maintexture_normal.png.meta │ │ │ │ │ ├── InkSingleSided.meta │ │ │ │ │ ├── InkSingleSided │ │ │ │ │ │ ├── InkSingleSided.asset │ │ │ │ │ │ ├── InkSingleSided.asset.meta │ │ │ │ │ │ ├── InkSingleSided.mat │ │ │ │ │ │ └── InkSingleSided.mat.meta │ │ │ │ │ ├── Leaves.meta │ │ │ │ │ ├── Leaves │ │ │ │ │ │ ├── Leaves.asset │ │ │ │ │ │ ├── Leaves.asset.meta │ │ │ │ │ │ ├── Leaves.mat │ │ │ │ │ │ ├── Leaves.mat.meta │ │ │ │ │ │ ├── leaves.png │ │ │ │ │ │ ├── leaves.png.meta │ │ │ │ │ │ ├── normal.png │ │ │ │ │ │ └── normal.png.meta │ │ │ │ │ ├── LeavesSingleSided.meta │ │ │ │ │ ├── LeavesSingleSided │ │ │ │ │ │ ├── LeavesSingleSided.asset │ │ │ │ │ │ ├── LeavesSingleSided.asset.meta │ │ │ │ │ │ ├── LeavesSingleSided.mat │ │ │ │ │ │ └── LeavesSingleSided.mat.meta │ │ │ │ │ ├── Light.meta │ │ │ │ │ ├── Light │ │ │ │ │ │ ├── Light.asset │ │ │ │ │ │ ├── Light.asset.meta │ │ │ │ │ │ ├── Light.mat │ │ │ │ │ │ ├── Light.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── LightWire.meta │ │ │ │ │ ├── LightWire │ │ │ │ │ │ ├── LightWire.asset │ │ │ │ │ │ ├── LightWire.asset.meta │ │ │ │ │ │ ├── LightWire.mat │ │ │ │ │ │ ├── LightWire.mat.meta │ │ │ │ │ │ ├── LightWire.shader │ │ │ │ │ │ ├── LightWire.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Lofted.meta │ │ │ │ │ ├── Lofted │ │ │ │ │ │ ├── Lofted_16.asset │ │ │ │ │ │ ├── Lofted_16.asset.meta │ │ │ │ │ │ ├── Lofted_16.mat │ │ │ │ │ │ └── Lofted_16.mat.meta │ │ │ │ │ ├── Marker.meta │ │ │ │ │ ├── Marker │ │ │ │ │ │ ├── Marker.asset │ │ │ │ │ │ ├── Marker.asset.meta │ │ │ │ │ │ ├── Marker.mat │ │ │ │ │ │ ├── Marker.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── MatteHull.meta │ │ │ │ │ ├── MatteHull │ │ │ │ │ │ ├── MatteHull_16.asset │ │ │ │ │ │ ├── MatteHull_16.asset.meta │ │ │ │ │ │ ├── MatteHull_16.mat │ │ │ │ │ │ └── MatteHull_16.mat.meta │ │ │ │ │ ├── NeonPulse.meta │ │ │ │ │ ├── NeonPulse │ │ │ │ │ │ ├── NeonPulse.asset │ │ │ │ │ │ ├── NeonPulse.asset.meta │ │ │ │ │ │ ├── NeonPulse.mat │ │ │ │ │ │ └── NeonPulse.mat.meta │ │ │ │ │ ├── OilPaint.meta │ │ │ │ │ ├── OilPaint │ │ │ │ │ │ ├── OilPaint.asset │ │ │ │ │ │ ├── OilPaint.asset.meta │ │ │ │ │ │ ├── OilPaint.mat │ │ │ │ │ │ ├── OilPaint.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ ├── main.png.meta │ │ │ │ │ │ ├── normal.png │ │ │ │ │ │ └── normal.png.meta │ │ │ │ │ ├── OilPaintSingleSided.meta │ │ │ │ │ ├── OilPaintSingleSided │ │ │ │ │ │ ├── OilPaintSingleSided.asset │ │ │ │ │ │ ├── OilPaintSingleSided.asset.meta │ │ │ │ │ │ ├── OilPaintSingleSided.mat │ │ │ │ │ │ └── OilPaintSingleSided.mat.meta │ │ │ │ │ ├── Paper.meta │ │ │ │ │ ├── Paper │ │ │ │ │ │ ├── Paper.asset │ │ │ │ │ │ ├── Paper.asset.meta │ │ │ │ │ │ ├── Paper.mat │ │ │ │ │ │ ├── Paper.mat.meta │ │ │ │ │ │ ├── bump.png │ │ │ │ │ │ ├── bump.png.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── PaperSingleSided.meta │ │ │ │ │ ├── PaperSingleSided │ │ │ │ │ │ ├── PaperSingleSided.asset │ │ │ │ │ │ ├── PaperSingleSided.asset.meta │ │ │ │ │ │ ├── PaperSingleSided.mat │ │ │ │ │ │ └── PaperSingleSided.mat.meta │ │ │ │ │ ├── Petal.meta │ │ │ │ │ ├── Petal │ │ │ │ │ │ ├── Petal.shader │ │ │ │ │ │ ├── Petal.shader.meta │ │ │ │ │ │ ├── Petal_16.asset │ │ │ │ │ │ ├── Petal_16.asset.meta │ │ │ │ │ │ ├── Petal_16.mat │ │ │ │ │ │ └── Petal_16.mat.meta │ │ │ │ │ ├── Plasma.meta │ │ │ │ │ ├── Plasma │ │ │ │ │ │ ├── Plasma.asset │ │ │ │ │ │ ├── Plasma.asset.meta │ │ │ │ │ │ ├── Plasma.mat │ │ │ │ │ │ ├── Plasma.mat.meta │ │ │ │ │ │ ├── Plasma.shader │ │ │ │ │ │ ├── Plasma.shader.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── Rainbow.meta │ │ │ │ │ ├── Rainbow │ │ │ │ │ │ ├── Rainbow.asset │ │ │ │ │ │ ├── Rainbow.asset.meta │ │ │ │ │ │ ├── Rainbow.mat │ │ │ │ │ │ ├── Rainbow.mat.meta │ │ │ │ │ │ ├── Rainbow.shader │ │ │ │ │ │ └── Rainbow.shader.meta │ │ │ │ │ ├── ShinyHull.meta │ │ │ │ │ ├── ShinyHull │ │ │ │ │ │ ├── ShinyHull_16.asset │ │ │ │ │ │ ├── ShinyHull_16.asset.meta │ │ │ │ │ │ ├── ShinyHull_16.mat │ │ │ │ │ │ └── ShinyHull_16.mat.meta │ │ │ │ │ ├── Smoke.meta │ │ │ │ │ ├── Smoke │ │ │ │ │ │ ├── Smoke.asset │ │ │ │ │ │ ├── Smoke.asset.meta │ │ │ │ │ │ ├── Smoke.mat │ │ │ │ │ │ ├── Smoke.mat.meta │ │ │ │ │ │ ├── Smoke.shader │ │ │ │ │ │ ├── Smoke.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Snow.meta │ │ │ │ │ ├── Snow │ │ │ │ │ │ ├── Snow.asset │ │ │ │ │ │ ├── Snow.asset.meta │ │ │ │ │ │ ├── Snow.mat │ │ │ │ │ │ ├── Snow.mat.meta │ │ │ │ │ │ ├── Snow.shader │ │ │ │ │ │ ├── Snow.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── SoftHighlighter.meta │ │ │ │ │ ├── SoftHighlighter │ │ │ │ │ │ ├── SoftHighlighter.asset │ │ │ │ │ │ ├── SoftHighlighter.asset.meta │ │ │ │ │ │ ├── SoftHighlighter.mat │ │ │ │ │ │ ├── SoftHighlighter.mat.meta │ │ │ │ │ │ ├── SoftHighlighter.shader │ │ │ │ │ │ ├── SoftHighlighter.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Spikes.meta │ │ │ │ │ ├── Spikes │ │ │ │ │ │ ├── Spikes_16.asset │ │ │ │ │ │ ├── Spikes_16.asset.meta │ │ │ │ │ │ ├── Spikes_16.mat │ │ │ │ │ │ └── Spikes_16.mat.meta │ │ │ │ │ ├── Splatter.meta │ │ │ │ │ ├── Splatter │ │ │ │ │ │ ├── Splatter.asset │ │ │ │ │ │ ├── Splatter.asset.meta │ │ │ │ │ │ ├── Splatter.mat │ │ │ │ │ │ ├── Splatter.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── SplatterSingleSided.meta │ │ │ │ │ ├── SplatterSingleSided │ │ │ │ │ │ ├── SplatterSingleSided.asset │ │ │ │ │ │ ├── SplatterSingleSided.asset.meta │ │ │ │ │ │ ├── SplatterSingleSided.mat │ │ │ │ │ │ └── SplatterSingleSided.mat.meta │ │ │ │ │ ├── Stars.meta │ │ │ │ │ ├── Stars │ │ │ │ │ │ ├── Stars.asset │ │ │ │ │ │ ├── Stars.asset.meta │ │ │ │ │ │ ├── Stars.mat │ │ │ │ │ │ ├── Stars.mat.meta │ │ │ │ │ │ ├── Stars.shader │ │ │ │ │ │ ├── Stars.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Streamers.meta │ │ │ │ │ ├── Streamers │ │ │ │ │ │ ├── Streamers.asset │ │ │ │ │ │ ├── Streamers.asset.meta │ │ │ │ │ │ ├── Streamers.mat │ │ │ │ │ │ ├── Streamers.mat.meta │ │ │ │ │ │ ├── Streamers.shader │ │ │ │ │ │ ├── Streamers.shader.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── Taffy.meta │ │ │ │ │ ├── Taffy │ │ │ │ │ │ ├── Taffy.asset │ │ │ │ │ │ ├── Taffy.asset.meta │ │ │ │ │ │ ├── Taffy.mat │ │ │ │ │ │ ├── Taffy.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── TaperedFlat.meta │ │ │ │ │ ├── TaperedFlat │ │ │ │ │ │ ├── TaperedFlat.asset │ │ │ │ │ │ ├── TaperedFlat.asset.meta │ │ │ │ │ │ ├── TaperedFlat.mat │ │ │ │ │ │ ├── TaperedFlat.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── TaperedFlatSingleSided.meta │ │ │ │ │ ├── TaperedFlatSingleSided │ │ │ │ │ │ ├── TaperedFlatSingleSided.asset │ │ │ │ │ │ ├── TaperedFlatSingleSided.asset.meta │ │ │ │ │ │ ├── TaperedFlatSingleSided.mat │ │ │ │ │ │ └── TaperedFlatSingleSided.mat.meta │ │ │ │ │ ├── TaperedMarker.meta │ │ │ │ │ ├── TaperedMarker │ │ │ │ │ │ ├── TaperedMarker.asset │ │ │ │ │ │ ├── TaperedMarker.asset.meta │ │ │ │ │ │ ├── TaperedMarker.mat │ │ │ │ │ │ ├── TaperedMarker.mat.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── TaperedMarker_Flat.meta │ │ │ │ │ ├── TaperedMarker_Flat │ │ │ │ │ │ ├── TaperedMarker_Flat.asset │ │ │ │ │ │ ├── TaperedMarker_Flat.asset.meta │ │ │ │ │ │ ├── TaperedMarker_Flat.mat │ │ │ │ │ │ └── TaperedMarker_Flat.mat.meta │ │ │ │ │ ├── ThickPaint.meta │ │ │ │ │ ├── ThickPaint │ │ │ │ │ │ ├── ThickPaint.asset │ │ │ │ │ │ ├── ThickPaint.asset.meta │ │ │ │ │ │ ├── ThickPaint.mat │ │ │ │ │ │ ├── ThickPaint.mat.meta │ │ │ │ │ │ ├── streakystroke.png │ │ │ │ │ │ ├── streakystroke.png.meta │ │ │ │ │ │ ├── streakystroke_bump.png │ │ │ │ │ │ └── streakystroke_bump.png.meta │ │ │ │ │ ├── ThickPaintSingleSided.meta │ │ │ │ │ ├── ThickPaintSingleSided │ │ │ │ │ │ ├── ThickPaintSingleSided.asset │ │ │ │ │ │ ├── ThickPaintSingleSided.asset.meta │ │ │ │ │ │ ├── ThickPaintSingleSided.mat │ │ │ │ │ │ └── ThickPaintSingleSided.mat.meta │ │ │ │ │ ├── Toon.meta │ │ │ │ │ ├── Toon │ │ │ │ │ │ ├── Toon.asset │ │ │ │ │ │ ├── Toon.asset.meta │ │ │ │ │ │ ├── Toon.mat │ │ │ │ │ │ ├── Toon.mat.meta │ │ │ │ │ │ ├── Toon.shader │ │ │ │ │ │ └── Toon.shader.meta │ │ │ │ │ ├── UnlitHull.meta │ │ │ │ │ ├── UnlitHull │ │ │ │ │ │ ├── UnlitHull_16.asset │ │ │ │ │ │ ├── UnlitHull_16.asset.meta │ │ │ │ │ │ ├── UnlitHull_16.mat │ │ │ │ │ │ └── UnlitHull_16.mat.meta │ │ │ │ │ ├── VelvetInk.meta │ │ │ │ │ ├── VelvetInk │ │ │ │ │ │ ├── VelvetInk.asset │ │ │ │ │ │ ├── VelvetInk.asset.meta │ │ │ │ │ │ ├── VelvetInk.mat │ │ │ │ │ │ ├── VelvetInk.mat.meta │ │ │ │ │ │ ├── VelvetInk.shader │ │ │ │ │ │ ├── VelvetInk.shader.meta │ │ │ │ │ │ ├── maintexture.png │ │ │ │ │ │ └── maintexture.png.meta │ │ │ │ │ ├── Waveform.meta │ │ │ │ │ ├── Waveform │ │ │ │ │ │ ├── Waveform.asset │ │ │ │ │ │ ├── Waveform.asset.meta │ │ │ │ │ │ ├── Waveform.mat │ │ │ │ │ │ ├── Waveform.mat.meta │ │ │ │ │ │ ├── Waveform.shader │ │ │ │ │ │ ├── Waveform.shader.meta │ │ │ │ │ │ ├── waveform.png │ │ │ │ │ │ └── waveform.png.meta │ │ │ │ │ ├── WaveformPulse.meta │ │ │ │ │ ├── WaveformPulse │ │ │ │ │ │ ├── NeonPulse.shader │ │ │ │ │ │ ├── NeonPulse.shader.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── WetPaint.meta │ │ │ │ │ ├── WetPaint │ │ │ │ │ │ ├── WetPaint_16.asset │ │ │ │ │ │ ├── WetPaint_16.asset.meta │ │ │ │ │ │ ├── WetPaint_16.mat │ │ │ │ │ │ ├── WetPaint_16.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ ├── main.png.meta │ │ │ │ │ │ ├── normal.png │ │ │ │ │ │ └── normal.png.meta │ │ │ │ │ ├── WetPaintSingleSided.meta │ │ │ │ │ ├── WetPaintSingleSided │ │ │ │ │ │ ├── WetPaintSingleSided.asset │ │ │ │ │ │ ├── WetPaintSingleSided.asset.meta │ │ │ │ │ │ ├── WetPaintSingleSided.mat │ │ │ │ │ │ └── WetPaintSingleSided.mat.meta │ │ │ │ │ ├── WigglyGraphite.meta │ │ │ │ │ ├── WigglyGraphite │ │ │ │ │ │ ├── WigglyGraphiteDoubleSided.shader │ │ │ │ │ │ ├── WigglyGraphiteDoubleSided.shader.meta │ │ │ │ │ │ ├── WigglyGraphite_16.asset │ │ │ │ │ │ ├── WigglyGraphite_16.asset.meta │ │ │ │ │ │ ├── WigglyGraphite_16.mat │ │ │ │ │ │ ├── WigglyGraphite_16.mat.meta │ │ │ │ │ │ ├── main.png │ │ │ │ │ │ └── main.png.meta │ │ │ │ │ ├── WigglyGraphiteSingleSided.meta │ │ │ │ │ ├── WigglyGraphiteSingleSided │ │ │ │ │ │ ├── WigglyGraphiteSingleSided.asset │ │ │ │ │ │ ├── WigglyGraphiteSingleSided.asset.meta │ │ │ │ │ │ ├── WigglyGraphiteSingleSided.mat │ │ │ │ │ │ └── WigglyGraphiteSingleSided.mat.meta │ │ │ │ │ ├── Wire.meta │ │ │ │ │ └── Wire │ │ │ │ │ │ ├── Wire.asset │ │ │ │ │ │ ├── Wire.asset.meta │ │ │ │ │ │ ├── Wire.mat │ │ │ │ │ │ └── Wire.mat.meta │ │ │ │ ├── Blocks.meta │ │ │ │ ├── Blocks │ │ │ │ │ ├── BlocksGem.meta │ │ │ │ │ ├── BlocksGem │ │ │ │ │ │ ├── BlocksGem.asset │ │ │ │ │ │ ├── BlocksGem.asset.meta │ │ │ │ │ │ ├── BlocksGem.mat │ │ │ │ │ │ ├── BlocksGem.mat.meta │ │ │ │ │ │ ├── BlocksGem.shader │ │ │ │ │ │ ├── BlocksGem.shader.meta │ │ │ │ │ │ ├── BlocksGemPT.mat │ │ │ │ │ │ └── BlocksGemPT.mat.meta │ │ │ │ │ ├── BlocksGlass.meta │ │ │ │ │ ├── BlocksGlass │ │ │ │ │ │ ├── BlocksGlass.asset │ │ │ │ │ │ ├── BlocksGlass.asset.meta │ │ │ │ │ │ ├── BlocksGlass.mat │ │ │ │ │ │ ├── BlocksGlass.mat.meta │ │ │ │ │ │ ├── BlocksGlass.shader │ │ │ │ │ │ ├── BlocksGlass.shader.meta │ │ │ │ │ │ ├── BlocksGlassPT.mat │ │ │ │ │ │ └── BlocksGlassPT.mat.meta │ │ │ │ │ ├── BlocksPaper.meta │ │ │ │ │ └── BlocksPaper │ │ │ │ │ │ ├── BlocksPaper.asset │ │ │ │ │ │ ├── BlocksPaper.asset.meta │ │ │ │ │ │ ├── BlocksPaper.mat │ │ │ │ │ │ ├── BlocksPaper.mat.meta │ │ │ │ │ │ ├── BlocksPaper.shader │ │ │ │ │ │ └── BlocksPaper.shader.meta │ │ │ │ ├── Poly.meta │ │ │ │ ├── Poly │ │ │ │ │ ├── PbrTemplate.meta │ │ │ │ │ ├── PbrTemplate │ │ │ │ │ │ ├── PbrTemplate.asset │ │ │ │ │ │ └── PbrTemplate.asset.meta │ │ │ │ │ ├── PbrTransparentTemplate.meta │ │ │ │ │ └── PbrTransparentTemplate │ │ │ │ │ │ ├── PbrTransparentTemplate.asset │ │ │ │ │ │ └── PbrTransparentTemplate.asset.meta │ │ │ │ ├── Shared.meta │ │ │ │ └── Shared │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ └── Shaders │ │ │ │ │ ├── Bloom.shader │ │ │ │ │ ├── Bloom.shader.meta │ │ │ │ │ ├── DiffuseDoubleSided.shader │ │ │ │ │ ├── DiffuseDoubleSided.shader.meta │ │ │ │ │ ├── DiffuseOpaqueDoubleSided.shader │ │ │ │ │ ├── DiffuseOpaqueDoubleSided.shader.meta │ │ │ │ │ ├── DiffuseOpaqueSingleSided.shader │ │ │ │ │ ├── DiffuseOpaqueSingleSided.shader.meta │ │ │ │ │ ├── DiffuseSingleSided.shader │ │ │ │ │ ├── DiffuseSingleSided.shader.meta │ │ │ │ │ ├── StandardDoubleSided.shader │ │ │ │ │ ├── StandardDoubleSided.shader.meta │ │ │ │ │ ├── StandardSingleSided.shader │ │ │ │ │ ├── StandardSingleSided.shader.meta │ │ │ │ │ ├── Unlit.shader │ │ │ │ │ └── Unlit.shader.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── BrushDescriptor.cs │ │ │ │ ├── BrushDescriptor.cs.meta │ │ │ │ ├── BrushManifest.cs │ │ │ │ ├── BrushManifest.cs.meta │ │ │ │ ├── SerializableGuid.cs │ │ │ │ └── SerializableGuid.cs.meta │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ │ ├── Include.meta │ │ │ │ ├── Include │ │ │ │ ├── Brush.cginc │ │ │ │ ├── Brush.cginc.meta │ │ │ │ ├── Particles.cginc │ │ │ │ └── Particles.cginc.meta │ │ │ │ ├── Unlit-Diffuse.shader │ │ │ │ └── Unlit-Diffuse.shader.meta │ │ ├── tests.meta │ │ └── tests │ │ │ ├── TestRuntimeImport.cs │ │ │ └── TestRuntimeImport.cs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── BasePbrBlendDoubleSided.mat │ │ ├── BasePbrBlendDoubleSided.mat.meta │ │ ├── BasePbrOpaqueDoubleSided.mat │ │ └── BasePbrOpaqueDoubleSided.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── PolyToolkitManager.prefab │ │ └── PolyToolkitManager.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── PtSettings.asset │ │ └── PtSettings.asset.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── PolyApi.cs │ │ ├── PolyApi.cs.meta │ │ ├── PolyConfigTypes.cs │ │ ├── PolyConfigTypes.cs.meta │ │ ├── PolyImportOptions.cs │ │ ├── PolyImportOptions.cs.meta │ │ ├── PolyToolkitManager.cs │ │ ├── PolyToolkitManager.cs.meta │ │ ├── PolyTypes.cs │ │ ├── PolyTypes.cs.meta │ │ ├── PtAsset.cs │ │ ├── PtAsset.cs.meta │ │ ├── PtAssetObject.cs │ │ └── PtAssetObject.cs.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── PolyToolkitPbrBlendDoubleSided.shader │ │ ├── PolyToolkitPbrBlendDoubleSided.shader.meta │ │ ├── PolyToolkitPbrOpaqueDoubleSided.shader │ │ └── PolyToolkitPbrOpaqueDoubleSided.shader.meta │ ├── ThirdParty.meta │ ├── ThirdParty │ │ ├── GPU-Voronoi-Noise.meta │ │ ├── GPU-Voronoi-Noise │ │ │ ├── Assets.meta │ │ │ ├── Assets │ │ │ │ ├── GPUVoronoiNoise.meta │ │ │ │ └── GPUVoronoiNoise │ │ │ │ │ ├── Shader.meta │ │ │ │ │ ├── Shader │ │ │ │ │ ├── BlocksGemGPUVoronoiNoise.cginc │ │ │ │ │ └── BlocksGemGPUVoronoiNoise.cginc.meta │ │ │ │ │ ├── VoronoNoise2D.unity │ │ │ │ │ ├── VoronoNoise2D.unity.meta │ │ │ │ │ ├── VoronoNoise3D.unity │ │ │ │ │ ├── VoronoNoise3D.unity.meta │ │ │ │ │ ├── VoronoNoise4D.unity │ │ │ │ │ └── VoronoNoise4D.unity.meta │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── METADATA │ │ │ ├── METADATA.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ │ ├── Json-NET-for-Unity.meta │ │ ├── Json-NET-for-Unity │ │ │ ├── Assemblies.meta │ │ │ ├── Assemblies │ │ │ │ ├── AOT.meta │ │ │ │ ├── AOT │ │ │ │ │ ├── Newtonsoft.Json.XML │ │ │ │ │ ├── Newtonsoft.Json.XML.meta │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.dll.meta │ │ │ │ ├── Standalone.meta │ │ │ │ ├── Standalone │ │ │ │ │ ├── Newtonsoft.Json.XML │ │ │ │ │ ├── Newtonsoft.Json.XML.meta │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.dll.meta │ │ │ │ ├── Windows.meta │ │ │ │ └── Windows │ │ │ │ │ ├── Newtonsoft.Json.XML │ │ │ │ │ ├── Newtonsoft.Json.XML.meta │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── Newtonsoft.Json.dll.meta │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── METADATA │ │ │ ├── METADATA.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ │ ├── Noise.meta │ │ └── Noise │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── METADATA │ │ │ ├── METADATA.meta │ │ │ ├── README │ │ │ ├── README.meta │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ ├── Noise.cginc │ │ │ └── Noise.cginc.meta │ ├── poly_toolkit_manifest.dat │ └── poly_toolkit_manifest.dat.meta ├── TestScenes.meta ├── TestScenes │ ├── PolyToolkitCmd.meta │ └── PolyToolkitCmd │ │ ├── CopyRectTransformSize.cs │ │ ├── CopyRectTransformSize.cs.meta │ │ ├── Grid.mat │ │ ├── Grid.mat.meta │ │ ├── PolyToolkitCmd.cs │ │ ├── PolyToolkitCmd.cs.meta │ │ ├── PolyToolkitCmd.unity │ │ ├── PolyToolkitCmd.unity.meta │ │ ├── RetroSkybox.mat │ │ ├── RetroSkybox.mat.meta │ │ ├── RobotoMono-Bold.ttf │ │ ├── RobotoMono-Bold.ttf.meta │ │ ├── RobotoMono-Regular.ttf │ │ ├── RobotoMono-Regular.ttf.meta │ │ ├── grid.png │ │ └── grid.png.meta ├── csc.rsp ├── csc.rsp.meta ├── mcs.rsp ├── mcs.rsp.meta ├── smcs.rsp └── smcs.rsp.meta ├── CONTRIBUTING.md ├── DOCBUILD ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Unity generates these with LF, so keep them LF to prevent 2 | # spurious diffs when Unity overwrites CRLF with LF 3 | *.mat text eol=lf 4 | *.asset text eol=lf 5 | *.meta text eol=lf 6 | *.unity text eol=lf 7 | *.prefab text eol=lf 8 | 9 | # Resharper generates these with LF; keep them LF even on Windows 10 | *.DotSettings text eol=lf 11 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de75e7aa54dab604f8c0ca2c61404d3e 3 | folderAsset: yes 4 | timeCreated: 1503066569 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/BuildPackage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09a8d4c9fdec87b4fb65e5d1bded05ad 3 | timeCreated: 1502212896 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/CheckUnityVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0aeb2edd1021234abdc2fc688668b02 3 | timeCreated: 1503066572 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/PrepForUASExport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0af39852857bc054d90e606b809745db 3 | timeCreated: 1502212896 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f671615ce2fe698419388d7b2f130a5c 3 | folderAsset: yes 4 | timeCreated: 1502741824 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Editor/Tests/TestImportGltf.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e277bb3dece7c364cb6b04c415a2a6a2 3 | timeCreated: 1506089899 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a9fa793fc8f02459d9be9778ec9c08 3 | folderAsset: yes 4 | timeCreated: 1502214983 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 592516d013dd78d49af0ca35fba9323f 3 | folderAsset: yes 4 | timeCreated: 1502218497 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AnalyticsSender.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03007da89a74c904badac2bac6eb608b 3 | timeCreated: 1507658204 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AssetBrowser.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2b9acc3fa389c147ba2960fae000d99 3 | folderAsset: yes 4 | timeCreated: 1502218477 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14062b472501c1044943c630506b24bc 3 | timeCreated: 1502218484 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb8ea7ffee97b8d41a7f33638ea373f7 3 | timeCreated: 1502218484 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AssetBrowser/GUIHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68c770de4589eb4898a4008ad01c81e 3 | timeCreated: 1503592604 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AssetBrowser/ThumbnailCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d923ed03eb49c14098eb5fd63a14a9a 3 | timeCreated: 1502824297 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08776fb35a5a85148a7f89c2a607b36b 3 | timeCreated: 1505829176 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/CheckBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efa7b7e584b83a84ba2e5d5161b7a56d 3 | timeCreated: 1510086089 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/DummyVERSION.txt: -------------------------------------------------------------------------------- 1 | n/a 2 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/DummyVERSION.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e99ab5f9c17d0ce479b1996e5074e744 3 | timeCreated: 1502213233 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Importer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ed43b0c18dd2a0439dc5015537cb7ca 3 | folderAsset: yes 4 | timeCreated: 1502375326 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45fe4e76f778c794d836427af1815601 3 | timeCreated: 1503437013 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Importer/PolyImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bcb6c884f2edae4eae8337eaaecf68e 3 | timeCreated: 1502375326 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/PostInstallHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3d00049448513c4f80278c19eca81f4 3 | timeCreated: 1505831695 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/PtAnalytics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c92cab08cb256b44282cc813e8abd250 3 | timeCreated: 1507658679 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/PtSettingsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4aaeeb8c2de4ac459fc0632d96c1be5 3 | timeCreated: 1503603097 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/PtUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a47beff868188a4d85dd8d7cb4ebd0a 3 | timeCreated: 1502375945 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59656b07927efec4cbcc1f256a9d1947 3 | folderAsset: yes 4 | timeCreated: 1503511752 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures/BackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Editor/Textures/BackArrow.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures/BackArrowDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Editor/Textures/BackArrowDark.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures/DarkGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Editor/Textures/DarkGrey.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures/LightGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Editor/Textures/LightGrey.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dba2d004725503a4a852a2e095195bb9 3 | timeCreated: 1507826025 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Editor/WarnIfManagerNotInScene.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d1b183bf0f2be34da82358842b2ca83 3 | timeCreated: 1502418897 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c302ff4b9f934346897210a258d59d9 3 | folderAsset: yes 4 | timeCreated: 1507578477 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScenes/HelloPoly.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3d3490dc233a2d40b998b1288b203f3 3 | timeCreated: 1509130848 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb13f4edbde9be34aadafd653e3bff9e 3 | timeCreated: 1507578528 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab179786a54d5874295e86eab7128bcf 3 | folderAsset: yes 4 | timeCreated: 1507578483 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScripts/HelloPoly.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19bb0d5cd0f9a4344b7352930854a4af 3 | timeCreated: 1507578538 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScripts/Rotate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d86541618ff5fc745bb4482f919d2b5d 3 | timeCreated: 1507578538 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ExampleScripts/ShowFeaturedExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b193722383226d418840e718e6199e9 3 | timeCreated: 1507578538 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cd7a9a9fc08de74e9b21d6e5bbaaf41 3 | folderAsset: yes 4 | timeCreated: 1502214992 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/AsyncImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d4753417449cc46bc7a554f0be097e 3 | timeCreated: 1509725480 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/AttributionGeneration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9925f5efc16424d4c8fec9fa728c415e 3 | timeCreated: 1509051231 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/Authenticator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d45bf07e063f7643b99a4971a67c22f 3 | timeCreated: 1494954510 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/AutoStringify.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fbe3c7f46be3e44fb3dc136d11526d5 3 | timeCreated: 1508268305 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/CoroutineRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa6e28eaf932d0c4aa8ba33e7aafec25 3 | timeCreated: 1501861096 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/DisabledPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8214b1e93247af64bad10ae0fe180071 3 | timeCreated: 1503434135 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/EditTimeImportOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c9884ba956bc2648a0299f2dd09b525 3 | timeCreated: 1503610809 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/Features.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c9e517a09a646348b90c085b765e821 3 | timeCreated: 1495657360 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/Gltf1Schema.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 066d2944ecf7cd84b9e570761abd8fe1 3 | timeCreated: 1502306163 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/Gltf2Schema.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ccda7f5e9d295042b901c4e9cd17302 3 | timeCreated: 1506009710 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/GltfMaterialConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 323480cbcea75f3449284d50bbcadba4 3 | timeCreated: 1506102462 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/GltfSchemaCommon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c7080a01def4f49900c122879bb31c 3 | timeCreated: 1506019645 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/HelpTextAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f1b07f35e75afe4684f07170d9ffc7c 3 | timeCreated: 1502910136 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/IUriLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 836eeae312a7b7649b5687a470ed2db2 3 | timeCreated: 1504144555 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/ImportGltf.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 970ae5dc6ceedf1409381dc4aaae648a 3 | timeCreated: 1502227619 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/IntRange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d3fc8b95a1c2de4082f9333cafee1dd 3 | timeCreated: 1502331763 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/MathUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 967feabbaa8822641add475087aeda4a 3 | timeCreated: 1502239723 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/MeasurementUnits.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11fa1c7039e414342bc8c4a453eb3d10 3 | timeCreated: 1503610809 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/PolyInternalUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db4c2a72db7758e438e85f1b2ff07343 3 | timeCreated: 1498595327 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/PolyMainInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d6a36ce07efcd84c92489695140f206 3 | timeCreated: 1495657360 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/PolyUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c6dd409854d1dd46bff92ae5fb04289 3 | timeCreated: 1494954510 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/PtDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5294f6e6da35c42bf224e48a788c5a 3 | timeCreated: 1502219021 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/PtSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a603ca56417194c4fbf2ac70d2c3efd1 3 | timeCreated: 1502412334 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/ThumbnailFetcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ccd64dba3997064789ac173855e1dbd 3 | timeCreated: 1501597496 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/UnityCompat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11c848c82fbd6bb4784bb2d9b904e38d 3 | timeCreated: 1511286342 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/Version.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b761db401d1c4a64abbea7dd57467443 3 | timeCreated: 1502731336 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/api_clients.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05543502f368ddf41b6a5ab1f3d59e0a 3 | folderAsset: yes 4 | timeCreated: 1494880449 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/api_clients/poly_client.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8989db4aed4ba9d44b317a70f835eda1 3 | folderAsset: yes 4 | timeCreated: 1502917321 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f55c10254e78a3a4cb73e95dfbb9df4e 3 | timeCreated: 1502917321 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClientUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7db72f0e0db7a6a48b9c8a5d295e086e 3 | timeCreated: 1502917321 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/caching.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 365aca6e1eb9fa744aef99649f68cdd9 3 | folderAsset: yes 4 | timeCreated: 1502725377 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/caching/PersistentBlobCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3117be03c2cc51240bd0c0e494d3b230 3 | timeCreated: 1502725377 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/entitlement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e376385ee1758ac4fbdfdfe17da68656 3 | folderAsset: yes 4 | timeCreated: 1497023960 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/entitlement/OAuth2Identity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b38968dfb5d3a94dbc4f289aa1b2d34 3 | timeCreated: 1497023972 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f36087f76014c498409e33c129575a 3 | folderAsset: yes 4 | timeCreated: 1494881719 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/export.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35b9f049048d0c349919305a778aa184 3 | folderAsset: yes 4 | timeCreated: 1494881867 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/export/ExportUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 888a02759b5e87f4c8c4ad5e6c25690c 3 | timeCreated: 1494881976 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/export/Exporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 886608b14fa9a314787ada9fc99e7f1d 3 | timeCreated: 1494881896 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4dfcad767ee8844f85d3207ad03954d 3 | folderAsset: yes 4 | timeCreated: 1494881725 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/util/BackgroundMain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fac7dd670b9fb074b9736a9911cc612d 3 | timeCreated: 1495653800 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/util/BackgroundWork.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23702cfc251d4a34f9dc29d4ff7d3ea0 3 | timeCreated: 1494881730 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/util/ConcurrentQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 000b4aa2be11f674f9e98c1516edad15 3 | timeCreated: 1495653800 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/model/util/WebRequestManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1f3cb0e9bee92d49838df1e35da91e7 3 | timeCreated: 1495654997 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d8d82b29081749489f47d756f6a9152 3 | folderAsset: yes 4 | timeCreated: 1502140174 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 417b2f1bdc1c34fea98eb6ace9531e4e 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b3e59298bb8cfc47bddd1e1ea01be06 3 | timeCreated: 1495576363 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02e7509562ea74d65a8d6ae3d32a61eb 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c27d77dc6d1c3b4f805e7661fbafdbc 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cadc04d18daae874aa63168911a19ba6 3 | timeCreated: 1495127967 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d104cdd012426bb5b3bbaee63ac43c 3 | timeCreated: 1495148312 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecfbf36005cdcc94d881047728719bd8 3 | timeCreated: 1467773228 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1ac470b25cdeb54da536f27d9b604ae 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ece14794d9fb9c42a263008101ca435 3 | timeCreated: 1496853657 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94e865ca3b92ee5568334254825adac1 3 | timeCreated: 1529443736 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 700f3aa89a7c23848b8aea028905dd8c 3 | timeCreated: 1496858561 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76dbfacbeaac545c2969f4083610a42a 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58575cce2727fec449fd95b38f249b39 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f0ff7b2a67745eba7d60cd7206f4816 3 | timeCreated: 1481917492 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89cb52de98c379048bcf61a01a3c5f18 3 | timeCreated: 1457578865 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a65beed478c1c9f418ba66dc62f24a25 3 | folderAsset: yes 4 | timeCreated: 1510081038 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d654adeb77b0e4e57be9d81558a4eab8 3 | timeCreated: 1529443738 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1161af8250cf47db97060c3576d43c43 3 | timeCreated: 1496878118 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55c48f5b982f74c8f8e56dc6231d813b 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07ab675df8bcbd148809e406fcd485fd 3 | timeCreated: 1529443739 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79168f106961464a8be157ed364c5600 3 | timeCreated: 1496878118 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b4c3eee0cc3c24fbf0d7540d0c17c7 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8224f6980454ee9448eaf50da5fc3ca4 3 | timeCreated: 1497652398 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac595c6b6de2ec859a96231504448d7c 3 | timeCreated: 1529443740 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1caa6d7df0153f543a4b8b5354d39f81 3 | timeCreated: 1497650213 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15b3dae174161574f92dffb874c697d6 3 | folderAsset: yes 4 | timeCreated: 1526501037 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8521b049d4675f340a0d50e4bd78cd0d 3 | timeCreated: 1452563229 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6fa15292ff30d25f819be478121d74e 3 | timeCreated: 1529443740 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8313697256347fc832e290f4c04b901 3 | timeCreated: 1498761536 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d0680480acf64901a479aed908e5392 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Disco 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: 4391aaaa-df73-4396-9e33-31e4e4930b27 16 | m_DurableName: Disco 17 | m_Material: {fileID: 2100000, guid: 4391aaaadf7343969e3331e4e4930b27, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 3 20 | m_uv0Semantic: 3 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4d57e30cdd022945b067d76b7ded1c7 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4391aaaadf7343969e3331e4e4930b27 3 | timeCreated: 1481917491 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d606fd47b43446739974645ed823957 3 | timeCreated: 1466956512 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d3ce30a8c46f47ad84d3a50877ece4d 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d06e0e0a68a1c488e9eb9bc2ca3abc 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1d991f2e7a04cf1b328f57e915e6260 3 | timeCreated: 1481917493 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a31e800d4b353d4d8f6631e850a83ed 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Dots 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: 6a1cf9f9-032c-45ec-9b1d-a6680bee30f7 16 | m_DurableName: Dots 17 | m_Material: {fileID: 2100000, guid: 6a1cf9f9032c45ec9b1da6680bee30f7, type: 2} 18 | m_IsParticle: 1 19 | m_uv0Size: 4 20 | m_uv0Semantic: 5 21 | m_uv1Size: 3 22 | m_uv1Semantic: 1 23 | m_bUseNormals: 1 24 | m_normalSemantic: 1 25 | m_bFbxExportNormalAsTexcoord1: 1 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f2dcdb5c7d9fc94db14b323331d5860 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a1cf9f9032c45ec9b1da6680bee30f7 3 | timeCreated: 1495148315 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 732f16cce31764a49a67b2c782bf444a 3 | timeCreated: 1467773228 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecdbe1078986341c3b94ed404d076c11 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4496a9baf3f2fc446bbaff38336003df 3 | timeCreated: 1467133606 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4ed52160dfaf694ea666a6294e38f42 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d3889f33ede470c8af4f44813306126 3 | timeCreated: 1481917485 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd12599a16bf4feba6b1694d9e51d82 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2b9f7e0f4fb54b41b7dbeb23b117551 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d3889f33ede470c8af4de4813306126 3 | timeCreated: 1481917483 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e412fb1c98a347b4ab08429cbf1d0894 3 | timeCreated: 1466535959 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffa22675c212ec74daba38fd9964c1f1 3 | folderAsset: yes 4 | timeCreated: 1510081710 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1087726a0694716539a6894556a3a557 3 | timeCreated: 1529443745 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0262945853c44819cbd88586bed93cb 3 | timeCreated: 1496877848 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6cb0b8fea62f4f66973b6024e34e3fe 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d014762200f4014fa8a87bcfaa038fe 3 | timeCreated: 1529443745 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca16e2fbdcd4da28631dcef342f40f1 3 | timeCreated: 1496877848 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45a14045d019d4064a97f49921582ead 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e268406bbadd084a825dda73d24387a 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6e85de36dcc4e7f87fdcee8c3d25d51 3 | timeCreated: 1481917490 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 698f6f8dc012a8b4e9d6f36db04f0dd3 3 | timeCreated: 1466532907 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65e0ccd50cf557d46bbf232d10d03ef6 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f45a29bbed9af6479948c03267fe239 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ffb8667fb24d15b7611012cefb1360 3 | timeCreated: 1495148303 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f62b84c7d6bc5f24487edcd3a458ce88 3 | timeCreated: 1467773228 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 519a9b5621c794a688fcf572323c263e 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Fire 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: cb92b597-94ca-4255-b017-0e3f42f12f9e 16 | m_DurableName: Fire 17 | m_Material: {fileID: 2100000, guid: cb92b59794ca4255b0170e3f42f12f9e, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 2 20 | m_uv0Semantic: 5 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c7ec9f584dd60e4a9308abe95b9f22e 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb92b59794ca4255b0170e3f42f12f9e 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aed6c5abd15318e448cc6f01d2ac0dd1 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df3a7affa05536c4a9815e1cf740ea74 3 | folderAsset: yes 4 | timeCreated: 1510081809 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Flat 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: 2d35bcf0-e4d8-452c-97b1-3311be063130 16 | m_DurableName: Flat 17 | m_Material: {fileID: 2100000, guid: 2d35bcf0e4d8452c97b13311be063130, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 2 20 | m_uv0Semantic: 5 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de779677f45c66b5bb80d8fdc8604238 3 | timeCreated: 1529443748 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d35bcf0e4d8452c97b13311be063130 3 | timeCreated: 1496877550 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7cbb64986bcb4e67934bdc279296ac4 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 969b71c814f75e9408602593d4e10e3e 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55303bc4c7494a7298d9d23e68e76e18 3 | timeCreated: 1481917494 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5eed852bc1da4426a68c1020bc52f93 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a97674f9669261b48a61cfed32378345 3 | timeCreated: 1529443749 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 280c0a7aaad8416ca7d2df63d129ca70 3 | timeCreated: 1496877550 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b24fe8a12e5894d89bdaeaeb25427398 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2d9c195722354e42a5a45e5b73a9f19 3 | timeCreated: 1449195007 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cfb52fb947fb6e4786ed9f2bdc5328c 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf019139d41c4eb0a1d05cf54b0a42f3 3 | timeCreated: 1481917484 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a83c5167788fe4207b5053212294c36b 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88ecf340d7ce92a4bada6eac937e887a 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a1cf9f9032c45ec9b6ea6680bee32e9 3 | timeCreated: 1481917492 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2fa29912c23a774898a1b8b236ed79d 3 | timeCreated: 1467942564 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ef3bb3a348b70a4b87f63d2a4c81e8a 3 | folderAsset: yes 4 | timeCreated: 1510081710 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b22741da3567d9353a0ccc88393d8c8e 3 | timeCreated: 1529443751 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dce872c27b494684b59bc45387949c5c 3 | timeCreated: 1443583622 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a1f8894d4b051a43a120f0b237cd2f8 3 | timeCreated: 1443582864 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea5570411cfab2d4b9b3f053e5497f0a 3 | timeCreated: 1443582864 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e9f1c1c33aed4d949af4efc0604eb17 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3251442494b7f6c43aa51c2ede6c409e 3 | timeCreated: 1529443752 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ef32b1baa8460a9c2c9cf8506794f5 3 | timeCreated: 1443583622 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce2758a38cc333d47b9092a3508a04b9 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fcc165667ef68c5780910cc28494a38 3 | timeCreated: 1529443753 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f212815f4d3c1a4681afeeaf9c6dc37 3 | timeCreated: 1496358003 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91b1fb85bb70c524484acdf2b069432e 3 | folderAsset: yes 4 | timeCreated: 1510081710 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Ink 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: f5c336cf-5108-4b40-ade9-c687504385ab 16 | m_DurableName: Ink 17 | m_Material: {fileID: 2100000, guid: f5c336cf51084b40ade9c687504385ab, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 2 20 | m_uv0Semantic: 5 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f83c05f7491995a53af9be352980ef25 3 | timeCreated: 1529443754 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5c336cf51084b40ade9c687504385ab 3 | timeCreated: 1496877187 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10e42e3354872413887cf7c0cf1f93bf 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c27caca67a732d4f9d59b028c4dd9a8 3 | timeCreated: 1529443755 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c00120953ffd40408ee1fc180d346eaa 3 | timeCreated: 1496877187 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0761f8bc1bd1a54e914d8e875a22d18 3 | folderAsset: yes 4 | timeCreated: 1510081710 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e08a273b7cdf2b50b4db8fcd5d3d9b2 3 | timeCreated: 1510081749 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a76a27a44d84bfe9a8c713749a499b0 3 | timeCreated: 1496879712 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de327f6b8aa1b4ef6a931a145d39b360 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 362043fe9dab1704fa0f912c4f1e0d09 3 | timeCreated: 1529443756 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea19de07d0c04484919818489a3c1487 3 | timeCreated: 1496879712 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc0199b9f13244b5d8b1d981a1e5a156 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Light 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: 2241cd32-8ba2-48a5-9ee7-2caef7e9ed62 16 | m_DurableName: Light 17 | m_Material: {fileID: 2100000, guid: 2241cd328ba248a59ee72caef7e9ed62, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 2 20 | m_uv0Semantic: 5 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54a30b55c2e961643a7701bedc663c88 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2241cd328ba248a59ee72caef7e9ed62 3 | timeCreated: 1481917485 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b15b915c3d848adadd97270c9632d9 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f55fba4b64913b419cf4a17ba5d489b 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4391aaaadf8143969e3331e4e4930b27 3 | timeCreated: 1481917492 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b4cc34a39a839049b4387ce42e3b56c 3 | timeCreated: 1468009950 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9b716f4dec38ad4fb9c81c8a204e928 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d8b02cc1233fee5fae7728123e6257d 3 | timeCreated: 1529443758 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d381e0f53def4a0d885331e9200bcbda 3 | timeCreated: 1480279860 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1fe226ea5a194dfca407b77aeb18203 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fd505f4dc669fe4c86c80d009ec2efd 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 429ed64a4e97446684d3145a861ef684 3 | timeCreated: 1481917483 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b417516d271ce9e48b616776ba472ff5 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc8a936db644b835cb1d6ac3836f65f2 3 | timeCreated: 1529443760 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79348357432d47468e290e25c112e3aa 3 | timeCreated: 1498761536 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d30be1916e364cef92e6789c6ef55cc 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71228caab923caf46a89c3275938564a 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2ffef01eaaa4ab5aa6495a2c4f5dbc6 3 | timeCreated: 1481917491 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de21f3bce5e9c4a4fba53df768c4d7ba 3 | folderAsset: yes 4 | timeCreated: 1510081710 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 542d61ce63831da52a2faf8cb6e2d161 3 | timeCreated: 1529443761 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f72ec0e7a8444e3882e3140c44772699 3 | timeCreated: 1496877084 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed3ecb2d3c34947499301c7968449653 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7ada22e6a436e742910a7553f159550 3 | timeCreated: 1529443762 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c515dad74393468181ad162ef052241b 3 | timeCreated: 1496877084 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8625be97b62688a4e863ad1bdfa3cc98 3 | folderAsset: yes 4 | timeCreated: 1510081710 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Paper 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: f1114e2e-eb8d-4fde-915a-6e653b54e9f5 16 | m_DurableName: Paper 17 | m_Material: {fileID: 2100000, guid: f1114e2eeb8d4fde915a6e653b54e9f5, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 2 20 | m_uv0Semantic: 5 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c750113c587a7e5c97a5627a917967e 3 | timeCreated: 1529443763 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1114e2eeb8d4fde915a6e653b54e9f5 3 | timeCreated: 1496878249 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03693478f2a54469091fd2233c689891 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b77a7cd7bb6c0244bca8ab8221af846 3 | timeCreated: 1529443764 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 759f1ebd20cd47208d41234e0da63716 3 | timeCreated: 1496878249 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e233c138c5b50db499054712013bd11f 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 542a05b67e6a6ef4c994b08f44143639 3 | timeCreated: 1498166764 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8f488f387b09e35dba50b6e9904301b 3 | timeCreated: 1529443765 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0abbc800f80e85449708924a0863dcc 3 | timeCreated: 1498166756 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a75af0d0dd8543fbaa7a6bdfac414dd 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e6a9b8a0ad82cf4da20e86f1a326040 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33714d1b2f9412ebd501884c9d46336 3 | timeCreated: 1481917493 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0417065cc2dc3244588be4534f9bbd91 3 | timeCreated: 1442704399 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9b8d92482e7d473487ecfe04679bd29 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d75833fb286458e468c00cc5b0ac5f4d 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad1ad43776e2450da23ae17f8310b960 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2427d50c8f9a5c04592a6dbb537bfa0d 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a0c46a0755510a44bdb56e138030b6b 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaaca97d63dd3d156ad1632b76baaf8d 3 | timeCreated: 1529443767 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faaa4d44fcfb417796be753ac0421ba3 3 | timeCreated: 1498761536 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 236799d609fcf4d459cf192c6dfe4212 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84e07a49ce756cf44ab7ea2dbdc064c4 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70d79ccab1594f35990cf02193947fe8 3 | timeCreated: 1495148303 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b00f8a3e2356b6144b32fe4a62905a7b 3 | timeCreated: 1467773228 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efc8e06447270804a96b7c7e3b9c4de0 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Snow 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: d902ed8b-d0d1-476c-a8de-878a79e3a34c 16 | m_DurableName: Snow 17 | m_Material: {fileID: 2100000, guid: d902ed8bd0d1476ca8de878a79e3a34c, type: 2} 18 | m_IsParticle: 1 19 | m_uv0Size: 4 20 | m_uv0Semantic: 5 21 | m_uv1Size: 3 22 | m_uv1Semantic: 1 23 | m_bUseNormals: 1 24 | m_normalSemantic: 1 25 | m_bFbxExportNormalAsTexcoord1: 1 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ccf5a61af1914e409b526a98d43354b 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d902ed8bd0d1476ca8de878a79e3a34c 3 | timeCreated: 1495148304 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f18bedecafd24f8a663a28a1e1b42 3 | timeCreated: 1467773228 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 868cb1f12b09a445bbc18f983f171220 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf5c0e36bc63d7b418af3ac347cfdcfd 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: accb32f54509454f93f81df3fd31df1b 3 | timeCreated: 1481917485 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63ee81a0fbf19bc44bec7e2ca3ba73e1 3 | timeCreated: 1467842216 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 383ce8f88c6a43741a36ad0aab01a4e2 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa162493b08406a5a82822709c50af77 3 | timeCreated: 1529443770 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf7f00597aeb53a42b67c83d863a9ffa 3 | timeCreated: 1498171568 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 198d4474be9a7264fa23ee405d0cce11 3 | folderAsset: yes 4 | timeCreated: 1510081709 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e65e1c9af17105b8a58d0d04ad41c8 3 | timeCreated: 1529443771 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dc4a70cd5584efda5edd4e860f40dc3 3 | timeCreated: 1496878064 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a4e128289e674525ba66decee6a2e6c 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 402a078d5db9ad0468dda690396443bc 3 | timeCreated: 1529443772 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a1c810750c54b709a39421576d6617e 3 | timeCreated: 1496878064 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d724e09c655ee64489991e4cf5fec78b 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1626af60ae7a31419a1c40afb39c5ed 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eb4db273f82408db5a119ebd7d5b711 3 | timeCreated: 1495148305 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5ccca3779289ff49a2768609995604b 3 | timeCreated: 1467773228 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fc50bfae5a43400cb7d40e6e321d746 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12b98790c761f47429559af03b6669d2 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44bb800afbc34592842694ecb05ddec3 3 | timeCreated: 1481917490 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3f113ebb941b344eab871b7ff555989 3 | timeCreated: 1443567489 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f38271d47ec954eec8ea9720428c39a6 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38f5be2edab11fa429b090756d26d000 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0077f88cd93a42f3b59bb31c50cdb414 3 | timeCreated: 1481917494 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0125f3e1ba620954db96015dda538645 3 | folderAsset: yes 4 | timeCreated: 1510081709 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a713e4e48dc9bed57b2da96e510f3770 3 | timeCreated: 1529443775 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b468c1fbf25441ed8ec957030bc5660c 3 | timeCreated: 1496877602 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e085203924e0b41c0949b2e73fece58a 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ec06c48c590ea4ebe400ce6a278efe 3 | timeCreated: 1529443776 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8ccb53dae1345ef8afbb730d81394eb 3 | timeCreated: 1496877602 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cdb27e2c28f3462ab1c7f83866c93d6 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b39f584eb1440404289d9461a0973e35 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d90c6ad8af0f4b54b422e0f92abe1b3c 3 | timeCreated: 1481917483 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cbf65aec22a5426eaaffe7be4155e64 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26d7464425c0b84479a8a21a695b194c 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a26b8c08a074f8a9facd2ef36e0cad0 3 | timeCreated: 1481917495 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14f44d51a57757c47b3b9696e3075df2 3 | folderAsset: yes 4 | timeCreated: 1510081709 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de4112b6c3a19ae5bb03397212a78339 3 | timeCreated: 1529443778 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75b32cf0fdd64d89a64be2a00b247b0f 3 | timeCreated: 1496877269 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c7ba54c914f94ae89941400898f7fdc 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94cb84ebeec44c540bb15b32797e5a98 3 | timeCreated: 1529443779 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdf0326ac0d14fedb1019db0ff6d071f 3 | timeCreated: 1496877269 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5290c8da3eb84038a25969cf22ee24a 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Toon 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: 4391385a-df73-4396-9e33-31e4e4930b27 16 | m_DurableName: Toon 17 | m_Material: {fileID: 2100000, guid: 4391385adf7343969e3331e4e4930b27, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 3 20 | m_uv0Semantic: 3 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8a2349e67797ea4593639454ef74543 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4391385adf7343969e3331e4e4930b27 3 | timeCreated: 1481917489 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f642cb91c8b664571967bdb587334e76 3 | timeCreated: 1466953084 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 448158fa71444cd4787d10ccbd0ab8c9 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6226d3ece719e15aae431e9b1bacf2d 3 | timeCreated: 1529443780 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8fea537da7c4d4b817f24f074725d6d 3 | timeCreated: 1498761536 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85a1c7cc29b6340859bf980ddf5bb89f 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5398e778cce3fdf469bbfa388aa46d5d 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d229d335c334495aa801660ac8a87360 3 | timeCreated: 1481917487 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfa82537bb6dcf94a8d673eb2ac036f0 3 | timeCreated: 1468367742 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8721da132c114b4aacae4ee9a74de54 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebe8a9d99afbd6b46909ea24a9896258 3 | timeCreated: 1495162083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10201aa3ebc242d884b72e63f6eeb8ab 3 | timeCreated: 1481917488 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9296f4d6e8a59fa4b86aa34b80d895ba 3 | timeCreated: 1456355323 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afbcb7dd613e446e2a8ec086d60ee8d3 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39f9ec0559d25f44bad64ce4dbc8a0c4 3 | timeCreated: 1457493617 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 744bddeb8fe4ff74fb77c6eb2bbcdc23 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb620f38d66c44f559d8abd0efa6a295 3 | timeCreated: 1529443783 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b67c0e81ce6d40a8aeb0ef036b081aa3 3 | timeCreated: 1496701463 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18c2ce081aa9beb41b242f9f1497ede1 3 | folderAsset: yes 4 | timeCreated: 1526501037 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 979dc653ba7d1d358a1a3c25bf5d033f 3 | timeCreated: 1526500943 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dea67637cd1a27e4c9b152f4bbcb84e5 3 | timeCreated: 1496701463 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1040052c0052bc4b83c5394cf938e08 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e1540b883dd10647a305c0ec4ae14ed 3 | timeCreated: 1488504258 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b250a068d80bad858be65c3d4675b50d 3 | timeCreated: 1529443784 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5347acf0a8e247b6834630c70719d763 3 | timeCreated: 1488504943 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d71634861e64122458230bb78b06e6bd 3 | folderAsset: yes 4 | timeCreated: 1526501038 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34192af8b5bb56258ba49d0cf281f850 3 | timeCreated: 1526500945 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e814fef197fd71944a2f50c2bb918be2 3 | timeCreated: 1488504943 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 102aa32bd38d040aca46704252113fbe 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 103cd3480fe93f646be28a7da5812871, type: 3} 12 | m_Name: Wire 13 | m_EditorClassIdentifier: 14 | m_Guid: 15 | m_storage: 4391385a-cf83-4396-9e33-31e4e4930b27 16 | m_DurableName: Wire 17 | m_Material: {fileID: 2100000, guid: 4391385acf8343969e3331e4e4930b27, type: 2} 18 | m_IsParticle: 0 19 | m_uv0Size: 2 20 | m_uv0Semantic: 5 21 | m_uv1Size: 0 22 | m_uv1Semantic: 0 23 | m_bUseNormals: 1 24 | m_normalSemantic: 0 25 | m_bFbxExportNormalAsTexcoord1: 0 26 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a72bd3c1fe3d784ab8896ec9fdfd058 3 | timeCreated: 1495162082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4391385acf8343969e3331e4e4930b27 3 | timeCreated: 1481917482 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d086c32b105e6ae4e82b91075e02682a 3 | folderAsset: yes 4 | timeCreated: 1507248510 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7510be7e36a9313459cd08af1865366b 3 | folderAsset: yes 4 | timeCreated: 1507248510 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71dc5ead67382b75789dd72c8058d553 3 | timeCreated: 1507250767 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 232998f8d35747a2993a53415df9be10 3 | timeCreated: 1502926363 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd72ccec010118e44bcae69ab6186eb4 3 | timeCreated: 1503342700 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79b25d2d8ffdf4c4eb448df9609dfdc7 3 | timeCreated: 1502926363 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61428f4e95dd6a74cbb57d9b3a31228e 3 | folderAsset: yes 4 | timeCreated: 1507248510 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 185ca6407d6d6095e95d6695d994a12b 3 | timeCreated: 1507250768 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d813d82583944508ddc8e889ecd96c7 3 | timeCreated: 1502926363 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fbe2fe7dc7c2a64a9b2abac67b85b54 3 | timeCreated: 1503342687 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 537db0387b31e004888533b91562f23d 3 | timeCreated: 1502926363 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d86c549a4d4b1e4b909a462189ecdd1 3 | folderAsset: yes 4 | timeCreated: 1507248510 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f6de76308b4b05386f187491479d94 3 | timeCreated: 1507250768 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e87b49c65463a343a448a556d7d6c3e 3 | timeCreated: 1502926363 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50d409e7765e3e8489865238cdf646e7 3 | timeCreated: 1426624476 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Poly.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d06f3cc308462143ac9bfd596505643 3 | folderAsset: yes 4 | timeCreated: 1510551825 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 250c85fc8dc14044b8aeb1b3f0170f5e 3 | folderAsset: yes 4 | timeCreated: 1510551825 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64222159a2860fd5d8a9efd7fac6610a 3 | timeCreated: 1510551544 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fada679b5c7067240b7d43a1bb93ee9c 3 | folderAsset: yes 4 | timeCreated: 1510551825 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 116cd5bf02ca0345da1f33cc3484c5ec 3 | timeCreated: 1510551545 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78b2304c05c2b421581c084093d84be7 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efd695d4f560e4b34afd9ff8bc3687c1 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3623f1b71da7dda49b588a77c984e1de 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76dc2f7fe973ede4bbbedfc291269c84 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86ab46f12486fa446b99415e1f4785ca 3 | timeCreated: 1474306204 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc163d24473ddd04881e4fc188ed5802 3 | timeCreated: 1474306204 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561cd39ab4e063843a09f5c11c3a8531 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eca343108a01a946a82e0c33f58fda1 3 | timeCreated: 1426624476 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af6ca8fad7576846a6a44f5c6d7bf6b 3 | timeCreated: 1426624476 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0688c89ab91f95a49a7395fe0da3a0a6 3 | timeCreated: 1449103631 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5072846c5c66a24ba393b30ef500fcb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Scripts/BrushDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 103cd3480fe93f646be28a7da5812871 3 | timeCreated: 1495127825 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Scripts/BrushManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a4e1c4479d3ef54a83ac7187217ec6a 3 | timeCreated: 1495578773 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: 8 | - m_DefaultManifest: {fileID: 11400000, guid: 2b3e59298bb8cfc47bddd1e1ea01be06, 9 | type: 2} 10 | executionOrder: 0 11 | icon: {instanceID: 0} 12 | userData: 13 | assetBundleName: 14 | assetBundleVariant: 15 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Scripts/SerializableGuid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 614800611c666bd498aa946dc06be1f0 3 | timeCreated: 1495127911 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32a313623a2af425486f94b12345ceda 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Shaders/Include.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b693034723d7064d8ddb143f73ad45e 3 | folderAsset: yes 4 | timeCreated: 1494992040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Shaders/Include/Brush.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0164a5aba2bc140afe140e9f53a38f 3 | timeCreated: 1449082003 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Shaders/Include/Particles.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c7a84b6a3eeb04794295998eb56657 3 | timeCreated: 1494557205 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6138546a7a6c6459f5bb9f1a60a114 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2943216ebf1a6ce40938576a1b01424e 3 | folderAsset: yes 4 | timeCreated: 1506004121 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4938c3b173177547ac856fd6cff5aa3 3 | timeCreated: 1505922913 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c4747f61e693af4daef0c8fa8f56a28 3 | folderAsset: yes 4 | timeCreated: 1506090882 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2b07ce943390e34993803beeb1e8548 3 | timeCreated: 1506436272 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a24c5cab5717b124889fe758761686b4 3 | timeCreated: 1506436272 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab29faf716419db4ba214e6524fc948b 3 | folderAsset: yes 4 | timeCreated: 1507834296 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13c13d3c28878fc4ab122b555674fe1f 3 | timeCreated: 1507834328 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8aa961a93d7c9c488b8dfe89e668109 3 | folderAsset: yes 4 | timeCreated: 1505485983 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Resources/PtSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86eb32a1d469be44a99294025e7795de 3 | timeCreated: 1502413196 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bd6607824d4c174bb7591f24a18d0ce 3 | folderAsset: yes 4 | timeCreated: 1502412334 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PolyApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bffc1b9d57b39eb47a9ca38dcb349814 3 | timeCreated: 1505755815 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PolyConfigTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1530f2ba1ee5dc547ae44f65fc61f142 3 | timeCreated: 1494961792 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PolyImportOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7d56f410e6f86f47aba5e2c24b79571 3 | timeCreated: 1505404028 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PolyToolkitManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 182cbbbef9cdbe1499d8032718118cf1 3 | timeCreated: 1502414230 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: 8 | - settings: {fileID: 11400000, guid: 86eb32a1d469be44a99294025e7795de, type: 2} 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PolyTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3365558c9fb5b74ab914a51890c14ab 3 | timeCreated: 1495730751 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PtAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33a7a203f9e09e74e9c082121e4f44c1 3 | timeCreated: 1502920343 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Scripts/PtAssetObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec0c7f9abd0af2840a99d45af7227d62 3 | timeCreated: 1503001782 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e135f6ec71501a9409f3968800bd6cb5 3 | folderAsset: yes 4 | timeCreated: 1506090885 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54d2dca8417702d4e849ce93707a354b 3 | timeCreated: 1506436870 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdd67cb064f9adf4ea9ff64d948f9387 3 | timeCreated: 1506436870 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 878df629c9c7f72428bb6a371a19c897 3 | folderAsset: yes 4 | timeCreated: 1502140377 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9b7137aa48a9d478eba951d92e9372 3 | folderAsset: yes 4 | timeCreated: 1509461606 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f77f413b4fe48924daaa58aa31b2d7ae 3 | folderAsset: yes 4 | timeCreated: 1509461606 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9726b590579e8f47a8d60d8a0a3094f 3 | folderAsset: yes 4 | timeCreated: 1489635539 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01e344b081967b04f843f671232bf01f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3809946657c170a439d20c3aadd2362b 3 | timeCreated: 1509461611 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5355925e161fc0478e21907b66fecd5 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce325d2c832991645a3200b1a0851507 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8741b22f2702e2d49a2ba9f1b357e808 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cec9053afa21c5747b11565fa1ec2ac5 3 | timeCreated: 1509461606 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA: -------------------------------------------------------------------------------- 1 | name: "GPU-Voronoi-Noise" 2 | description: 3 | "GPU Voronoi noise in Unity" 4 | 5 | third_party { 6 | url { 7 | type: HOMEPAGE 8 | value: "https://github.com/Scrawk/GPU-Voronoi-Noise" 9 | } 10 | url { 11 | type: GIT 12 | value: "https://github.com/Scrawk/GPU-Voronoi-Noise" 13 | } 14 | version: "b7c96d64a45895f1ef3c64396bb314a43db2c038" 15 | last_upgrade_date { year: 2017 month: 10 day: 30 } 16 | license_type: NOTICE 17 | } 18 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c25127ea4c77f74bb21044fa649cda0 3 | timeCreated: 1509461606 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f27c263530f5f9d40ad63dc92a7f95f2 3 | timeCreated: 1509461606 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe73f75d7bd71754191b2add24e6add1 3 | folderAsset: yes 4 | timeCreated: 1510073616 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16f52eac4a8117e4cb1a23fa4c89f618 3 | folderAsset: yes 4 | timeCreated: 1510073616 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e98a718a8c605408436e36c48a5e39 3 | folderAsset: yes 4 | timeCreated: 1510073616 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54a99b6d5acbfdb4a871352ac8936022 3 | timeCreated: 1510073635 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c7b5a371a5849e4e9a665ac6ca12668 3 | folderAsset: yes 4 | timeCreated: 1510073616 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 094475dd9f47ada408904a510ad4e6e9 3 | timeCreated: 1510073635 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f347024a78e14094abda6e002caf60c2 3 | folderAsset: yes 4 | timeCreated: 1510073616 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09cb941ab4e74b94d9372fed282605ca 3 | timeCreated: 1510073635 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ece906468b240b4683b1e5aeb0f96d9 3 | timeCreated: 1510073616 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA: -------------------------------------------------------------------------------- 1 | name: "Json-NET-for-Unity" 2 | description: 3 | "JSON parsing library for Unity based on JSON.NET." 4 | 5 | third_party { 6 | url { 7 | type: HOMEPAGE 8 | value: "https://github.com/ianmacgillivray/Json-NET-for-Unity/" 9 | } 10 | url { 11 | type: GIT 12 | value: "https://github.com/ianmacgillivray/Json-NET-for-Unity/" 13 | } 14 | version: "0b8416150e0a72df2ce91c97169275806f9e1515" 15 | last_upgrade_date { year: 2017 month: 11 day: 7 } 16 | license_type: NOTICE 17 | local_modifications: 18 | "Built DLLs locally from source, placed them in Assemblies/" 19 | } 20 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d10861831321b241b98579f39aeec23 3 | timeCreated: 1510073616 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md: -------------------------------------------------------------------------------- 1 | # Json-NET-for-Unity 2 | 3 | https://github.com/ianmacgillivray/Json-NET-for-Unity/ 4 | 5 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8772094ea4a463f4d9e21676d0c11887 3 | timeCreated: 1510073616 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6565751afc03c42ebbd6410247d1aa28 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15931af0ce6bc2c40899c2398dd2a2c8 3 | timeCreated: 1480711613 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise/METADATA: -------------------------------------------------------------------------------- 1 | name: "webgl-noise" 2 | description: 3 | "GLSL procedural noise functions compatible with WebGL" 4 | 5 | third_party { 6 | url { 7 | type: HOMEPAGE 8 | value: "https://github.com/stegu/webgl-noise" 9 | } 10 | url { 11 | type: GIT 12 | value: "https://github.com/stegu/webgl-noise" 13 | } 14 | version: "6f9521f39c2327b4601c67ea3355e8e9519c6f1b" 15 | last_upgrade_date { year: 2017 month: 10 day: 30 } 16 | license_type: NOTICE 17 | local_modifications: 18 | "Removed unneeded src/, demos/, benchmark/ directories." 19 | "Created Shaders/Noise.cginc for use in Unity." 20 | } 21 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise/METADATA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c14892961a64fe429c28a7880fd8acd 3 | timeCreated: 1509461606 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise/README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 746b1a10fb10dff409d634c229b666c7 3 | timeCreated: 1480711613 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94a9989d1def24c5b9fabd8d761ecf70 3 | folderAsset: yes 4 | timeCreated: 1480629351 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/ThirdParty/Noise/Shaders/Noise.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47b72df894c60b9438c4346e953ad62e 3 | timeCreated: 1466548022 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/poly_toolkit_manifest.dat: -------------------------------------------------------------------------------- 1 | # Poly Toolkit for Unity 2 | # Manifest file. Do not modify or delete. 3 | # Among other things, this file indicates where Poly Toolkit is installed 4 | # in your folder hierarchy. 5 | -------------------------------------------------------------------------------- /Assets/PolyToolkit/poly_toolkit_manifest.dat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b188a89e99d347d4ba303dd9b9b45c5f 3 | timeCreated: 1526930513 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TestScenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66be44fbf9d753e47ae88fb6afa1054a 3 | folderAsset: yes 4 | timeCreated: 1507905201 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9320c89306844e4f90d93b4a8414bdf 3 | folderAsset: yes 4 | timeCreated: 1507908274 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/CopyRectTransformSize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f3944cd0e6bec44a8a8e645f926da52 3 | timeCreated: 1507910985 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/Grid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd9c6d1742ea724438db68c4c84d11df 3 | timeCreated: 1507909296 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ec03136213897846857b83ee5acfc2d 3 | timeCreated: 1507910985 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 015cad98944f8ab439e4ffcc5dcd06f6 3 | timeCreated: 1507908283 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1238e89f8fdc5c8419eafffe367cee30 3 | timeCreated: 1507909037 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 614cfab74158e1e4dbad8ee7db2dd365 3 | timeCreated: 1507909728 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontName: Roboto Mono 13 | fontNames: 14 | - Roboto Mono 15 | fallbackFontReferences: [] 16 | customCharacters: 17 | fontRenderingMode: 0 18 | ascentCalculationMode: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96a7fdf6b3072d0469dc810ce094088b 3 | timeCreated: 1507909728 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontName: Roboto Mono 13 | fontNames: 14 | - Roboto Mono 15 | fallbackFontReferences: 16 | - {fileID: 12800000, guid: 614cfab74158e1e4dbad8ee7db2dd365, type: 3} 17 | customCharacters: 18 | fontRenderingMode: 0 19 | ascentCalculationMode: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/TestScenes/PolyToolkitCmd/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/poly-toolkit-unity/90c202c3db51fb863c8fea528e02142cfbbe75ac/Assets/TestScenes/PolyToolkitCmd/grid.png -------------------------------------------------------------------------------- /Assets/csc.rsp: -------------------------------------------------------------------------------- 1 | -unsafe 2 | -------------------------------------------------------------------------------- /Assets/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d179a41448edbc40925d62e4ec94ada 3 | timeCreated: 1502245222 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/mcs.rsp: -------------------------------------------------------------------------------- 1 | -unsafe 2 | -------------------------------------------------------------------------------- /Assets/mcs.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1532aeaa22d606468784936f6d84203 3 | timeCreated: 1502245222 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/smcs.rsp: -------------------------------------------------------------------------------- 1 | -unsafe 2 | -------------------------------------------------------------------------------- /Assets/smcs.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1358dd6553600df43a66f332ddd7346d 3 | timeCreated: 1507330555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | We do not currently accept pull requests. 2 | 3 | Found a bug? Have a feature request? 4 | Please [file an issue](https://github.com/googlevr/poly-toolkit-unity/issues). 5 | 6 | -------------------------------------------------------------------------------- /DOCBUILD: -------------------------------------------------------------------------------- 1 | [{ 2 | "project_name": "poly_toolkit", 3 | "project_title": "Poly Toolkit for Unity API Reference", 4 | "project_desc": "These are the reference pages for the Unity API.", 5 | "target_type": "csharp-unity", 6 | "source_path": "Assets/PolyToolkit/Scripts", 7 | "source_files": [ 8 | "**/*.cs" 9 | ], 10 | "book_path": "/poly/", 11 | "project_path": "/poly/", 12 | "html_path": "/poly/reference/toolkit/", 13 | "stylesheet_file": "/poly/style.css" 14 | }] 15 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_DisableAudio: 0 16 | m_VirtualizeEffects: 1 17 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_EnablePCM: 1 18 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 19 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_DefaultBehaviorMode: 0 10 | m_SpritePackerMode: 0 11 | m_SpritePackerPaddingPower: 1 12 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 13 | m_ProjectGenerationRootNamespace: 14 | m_UserGeneratedProjectSuffix: 15 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.3f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | --------------------------------------------------------------------------------