diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b3d4649 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,55 @@ +# origin https://github.com/adrenak/upm-template/blob/master/.github/workflows/ci.yml +# origin licensed under MIT License Copyright (c) 2020 Vatsal Ambastha +# origin license https://github.com/adrenak/upm-template/blob/master/LICENSE +# you can read more about how to use upm-template at https://github.com/adrenak/upm-template/ + +name: CI +on: + push: + branches: + - main +jobs: + release: + if: "!contains(github.event.head_commit.message, 'skip ci')" + name: Release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Semantic Release + id: semantic + uses: cycjimmy/semantic-release-action@v3.4.2 + with: + extra_plugins: | + @semantic-release/changelog + @semantic-release/git + branch: main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Create UPM branch + run: | + git config user.name github-actions + git config user.email github-actions@github.com + + git branch -d upm &> /dev/null || echo upm branch not found + git subtree split -P "$PKG_ROOT" -b upm + git checkout upm + if [[ -d "Samples" ]]; then + git mv Samples Samples~ + rm -f Samples.meta + git commit -am "fix: Samples => Samples~" + fi + git push -f -u origin upm + env: + PKG_ROOT: "Packages/icosa-api-client-unity/" + + - name: Create UPM git tag + if: steps.semantic.outputs.new_release_published == 'true' + run: | + git tag $TAG upm + git push origin --tags + env: + TAG: upm/v${{ steps.semantic.outputs.new_release_version }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index d62196e..3b7e9c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,37 +1,73 @@ -# Standard unity stuff -/Temp/ -/Obj/ -/Build/ -/Library/ - -# mono debugging files, automatically created by UnityVS -*.dll.mdb -*.dll.mdb.meta - -# MonoDevelop and Visual Studio files, automatically created by Unity -/Assembly-Csharp*.csproj -/Assembly-UnityScript*.unityproj -/*.csproj -/*.csproj.user -/*.CSharp.*user -*.suo -/*.sln -/*.userprefs -/.vs/ +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore +# +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Uu]ser[Ss]ettings/ + +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +/[Mm]emoryCaptures/ + +# Recordings can get excessive in size +/[Rr]ecordings/ -# PT currently drops files into Poly/, so ignore that temporarily -/Assets/Poly/ -/Assets/Poly.meta +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* -/Assets/PolyToolkit/Editor/upgrade.dat -/Assets/PolyToolkit/Editor/upgrade.dat.meta +# Autogenerated Jetbrains Rider plugin +/[Aa]ssets/Plugins/Editor/JetBrains* -.DS_Store +# Visual Studio cache directory +.vs/ -# Ignore built unity packages, we don't want to check those in. +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.aab *.unitypackage +*.app + +# Crashlytics generated file +crashlytics-build.properties +# Packed Addressables +/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* -# Don't commit the Asset Store Tools plugin. -/Assets/AssetStoreTools/ -/Assets/AssetStoreTools.meta +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* +/.idea/* diff --git a/.releaserc.yml b/.releaserc.yml new file mode 100644 index 0000000..0b75c84 --- /dev/null +++ b/.releaserc.yml @@ -0,0 +1,25 @@ +# origin https://github.com/adrenak/upm-template/blob/master/.releaserc.json +# origin licensed under MIT License Copyright (c) 2020 Vatsal Ambastha +# origin license https://github.com/adrenak/upm-template/blob/master/LICENSE +# you can read more about how to use upm-template at https://github.com/adrenak/upm-template/ + +tagFormat: v${version} +plugins: + - - '@semantic-release/commit-analyzer' + - preset: angular + - '@semantic-release/release-notes-generator' + - - '@semantic-release/changelog' + - preset: angular + changelogFile: Packages/icosa-api-client-unity/CHANGELOG.MD + - - '@semantic-release/npm' + - npmPublish: false + pkgRoot: Packages/icosa-api-client-unity + - - '@semantic-release/git' + - assets: + - Packages/open-brush-unity-tools/package.json + - Packages/open-brush-unity-tools/CHANGELOG.md + message: |- + chore(release): ${nextRelease.version} [skip ci] + + ${nextRelease.notes} + - '@semantic-release/github' diff --git a/Assets/Editor/CheckUnityVersion.cs b/Assets/Editor/CheckUnityVersion.cs deleted file mode 100644 index 080a0d1..0000000 --- a/Assets/Editor/CheckUnityVersion.cs +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright 2017 Google Inc. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -using UnityEngine; -using UnityEditor; - -// PolyToolkitDev namespace is for classes that exist only for developing Poly Toolkit itself, -// and don't ship out to users in the build. -namespace PolyToolkitDev { - -[InitializeOnLoad] -public class CheckUnityVersion { - private const string SUPPORTED_UNITY_VERSION = "5.6.3f1"; - static CheckUnityVersion() { - if (Application.unityVersion != SUPPORTED_UNITY_VERSION) { - EditorUtility.DisplayDialog( - "Unsupported Unity version for the PolyToolkit project.", - string.Format( - "You are using Unity version:\n {0}.\n" + - "The known-good supported Unity version for this project is:\n {1}.\n\n" + - "Please DO NOT COMMIT any Unity asset files generated with an unsupported Unity " + - "version, as that might break other team members.\n\n" + - "Please switch to the supported Unity version asap!\n\n" + - "(If you know this message is out of date, please fix Assets/Editor/CheckUnityVersion.cs)", - Application.unityVersion, SUPPORTED_UNITY_VERSION), "OK"); - } - } -} - -} \ No newline at end of file diff --git a/Assets/Editor/CheckUnityVersion.cs.meta b/Assets/Editor/CheckUnityVersion.cs.meta deleted file mode 100644 index 34eb5f7..0000000 --- a/Assets/Editor/CheckUnityVersion.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c0aeb2edd1021234abdc2fc688668b02 -timeCreated: 1503066572 -licenseType: Pro -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ExampleScenes.meta b/Assets/ExampleScenes.meta similarity index 78% rename from Assets/PolyToolkit/ExampleScenes.meta rename to Assets/ExampleScenes.meta index a5ecf00..ac41c78 100644 --- a/Assets/PolyToolkit/ExampleScenes.meta +++ b/Assets/ExampleScenes.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 2c302ff4b9f934346897210a258d59d9 folderAsset: yes -timeCreated: 1507578477 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ExampleScenes/HelloPoly.unity b/Assets/ExampleScenes/HelloPoly.unity similarity index 72% rename from Assets/PolyToolkit/ExampleScenes/HelloPoly.unity rename to Assets/ExampleScenes/HelloPoly.unity index de3c27f..079ae58 100644 --- a/Assets/PolyToolkit/ExampleScenes/HelloPoly.unity +++ b/Assets/ExampleScenes/HelloPoly.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -39,30 +39,30 @@ RenderSettings: m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 1 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -71,23 +71,34 @@ LightmapSettings: m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 - m_MixedBakeMode: 3 + m_MixedBakeMode: 2 m_BakeBackend: 0 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 1 --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -107,13 +118,16 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} --- !u!1 &4838500 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4838503} - component: {fileID: 4838502} @@ -128,12 +142,13 @@ GameObject: --- !u!114 &4838501 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4838500} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} m_Name: m_EditorClassIdentifier: m_HorizontalAxis: Horizontal @@ -146,12 +161,13 @@ MonoBehaviour: --- !u!114 &4838502 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4838500} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} m_Name: m_EditorClassIdentifier: m_FirstSelected: {fileID: 0} @@ -160,8 +176,9 @@ MonoBehaviour: --- !u!4 &4838503 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4838500} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -173,13 +190,13 @@ Transform: --- !u!1 &880079428 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 880079433} - component: {fileID: 880079432} - - component: {fileID: 880079431} - component: {fileID: 880079430} - component: {fileID: 880079429} m_Layer: 0 @@ -192,34 +209,36 @@ GameObject: --- !u!81 &880079429 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_Enabled: 1 --- !u!124 &880079430 Behaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 880079428} - m_Enabled: 1 ---- !u!92 &880079431 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_Enabled: 1 --- !u!20 &880079432 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 2 m_BackGroundColor: {r: 0, g: 0.375, b: 0.375, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -241,16 +260,17 @@ Camera: m_TargetEye: 3 m_HDR: 1 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 --- !u!4 &880079433 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_LocalRotation: {x: 0.11320323, y: 0, z: 0, w: 0.9935719} m_LocalPosition: {x: 0, y: 2.6, z: -11} @@ -262,9 +282,10 @@ Transform: --- !u!1 &1075746127 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1075746128} - component: {fileID: 1075746130} @@ -279,8 +300,9 @@ GameObject: --- !u!224 &1075746128 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1075746127} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -297,22 +319,22 @@ RectTransform: --- !u!114 &1075746129 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1075746127} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} m_FontSize: 14 @@ -326,61 +348,63 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: '...' + m_Text: ... --- !u!222 &1075746130 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1075746127} + m_CullTransparentMesh: 0 --- !u!1001 &1278461420 -Prefab: +PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalPosition.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalRotation.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalRotation.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalRotation.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} - propertyPath: m_RootOrder - value: 3 - objectReference: {fileID: 0} m_RemovedComponents: [] - m_ParentPrefab: {fileID: 100100000, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} - m_IsPrefabParent: 0 + m_SourcePrefab: {fileID: 100100000, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} --- !u!1 &1390242805 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1390242807} - component: {fileID: 1390242806} @@ -394,8 +418,9 @@ GameObject: --- !u!114 &1390242806 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1390242805} m_Enabled: 1 m_EditorHideFlags: 0 @@ -406,8 +431,9 @@ MonoBehaviour: --- !u!4 &1390242807 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1390242805} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: -0.6143403, y: -2.0584645, z: 1.4303007} @@ -419,9 +445,10 @@ Transform: --- !u!1 &1510094965 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1510094969} - component: {fileID: 1510094968} @@ -437,12 +464,13 @@ GameObject: --- !u!114 &1510094966 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1510094965} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} m_Name: m_EditorClassIdentifier: m_IgnoreReversedGraphics: 1 @@ -453,12 +481,13 @@ MonoBehaviour: --- !u!114 &1510094967 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1510094965} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} m_Name: m_EditorClassIdentifier: m_UiScaleMode: 0 @@ -474,8 +503,9 @@ MonoBehaviour: --- !u!223 &1510094968 Canvas: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1510094965} m_Enabled: 1 serializedVersion: 3 @@ -494,8 +524,9 @@ Canvas: --- !u!224 &1510094969 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1510094965} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -513,9 +544,10 @@ RectTransform: --- !u!1 &1622693827 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1622693829} - component: {fileID: 1622693828} @@ -529,16 +561,19 @@ GameObject: --- !u!108 &1622693828 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1622693827} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -548,6 +583,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -555,18 +608,23 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 4 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &1622693829 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1622693827} m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} m_LocalPosition: {x: 0, y: 3, z: 0} diff --git a/Assets/PolyToolkit/ExampleScenes/HelloPoly.unity.meta b/Assets/ExampleScenes/HelloPoly.unity.meta similarity index 76% rename from Assets/PolyToolkit/ExampleScenes/HelloPoly.unity.meta rename to Assets/ExampleScenes/HelloPoly.unity.meta index 7167c7d..993a9fe 100644 --- a/Assets/PolyToolkit/ExampleScenes/HelloPoly.unity.meta +++ b/Assets/ExampleScenes/HelloPoly.unity.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: c3d3490dc233a2d40b998b1288b203f3 -timeCreated: 1509130848 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity b/Assets/ExampleScenes/ShowFeaturedExample.unity similarity index 73% rename from Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity rename to Assets/ExampleScenes/ShowFeaturedExample.unity index 1fb80e5..7f03c9d 100644 --- a/Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity +++ b/Assets/ExampleScenes/ShowFeaturedExample.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -39,30 +39,30 @@ RenderSettings: m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 1 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -71,23 +71,34 @@ LightmapSettings: m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 - m_MixedBakeMode: 3 + m_MixedBakeMode: 2 m_BakeBackend: 0 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 1 --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -107,13 +118,16 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} --- !u!1 &84350989 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 84350990} m_Layer: 5 @@ -126,8 +140,9 @@ GameObject: --- !u!224 &84350990 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 84350989} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -145,9 +160,10 @@ RectTransform: --- !u!1 &91594354 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 91594355} - component: {fileID: 91594357} @@ -162,8 +178,9 @@ GameObject: --- !u!224 &91594355 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 91594354} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -180,22 +197,22 @@ RectTransform: --- !u!114 &91594356 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 91594354} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} m_FontSize: 14 @@ -213,15 +230,18 @@ MonoBehaviour: --- !u!222 &91594357 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 91594354} + m_CullTransparentMesh: 0 --- !u!1 &150951390 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 150951391} - component: {fileID: 150951394} @@ -237,8 +257,9 @@ GameObject: --- !u!224 &150951391 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150951390} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -256,12 +277,13 @@ RectTransform: --- !u!114 &150951392 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150951390} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -275,17 +297,20 @@ MonoBehaviour: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 150951393} @@ -325,27 +350,25 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 0 m_CallState: 2 - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &150951393 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150951390} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -354,18 +377,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &150951394 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150951390} + m_CullTransparentMesh: 0 --- !u!1 &303773968 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 303773969} - component: {fileID: 303773971} @@ -380,8 +408,9 @@ GameObject: --- !u!224 &303773969 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 303773968} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -399,22 +428,22 @@ RectTransform: --- !u!114 &303773970 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 303773968} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0, g: 0, b: 0, a: 0.766} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 @@ -423,18 +452,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &303773971 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 303773968} + m_CullTransparentMesh: 0 --- !u!1 &344783055 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 344783056} - component: {fileID: 344783059} @@ -450,8 +484,9 @@ GameObject: --- !u!224 &344783056 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 344783055} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -469,12 +504,13 @@ RectTransform: --- !u!114 &344783057 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 344783055} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -488,17 +524,20 @@ MonoBehaviour: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 344783058} @@ -538,27 +577,25 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 0 m_CallState: 2 - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &344783058 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 344783055} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -567,18 +604,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &344783059 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 344783055} + m_CullTransparentMesh: 0 --- !u!1 &352694677 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 352694678} - component: {fileID: 352694680} @@ -593,8 +635,9 @@ GameObject: --- !u!224 &352694678 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 352694677} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -611,22 +654,22 @@ RectTransform: --- !u!114 &352694679 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 352694677} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} m_FontSize: 14 @@ -644,15 +687,18 @@ MonoBehaviour: --- !u!222 &352694680 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 352694677} + m_CullTransparentMesh: 0 --- !u!1 &429887423 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 429887424} - component: {fileID: 429887427} @@ -668,8 +714,9 @@ GameObject: --- !u!224 &429887424 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 429887423} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -688,22 +735,22 @@ RectTransform: --- !u!114 &429887425 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 429887423} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 0} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 0} m_Type: 1 m_PreserveAspect: 0 @@ -712,21 +759,26 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &429887426 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 429887423} + m_CullTransparentMesh: 0 --- !u!114 &429887427 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 429887423} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} m_Name: m_EditorClassIdentifier: m_Content: {fileID: 1188701294} @@ -747,14 +799,13 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.ScrollRect+ScrollRectEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!1 &610614350 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 610614351} - component: {fileID: 610614354} @@ -770,8 +821,9 @@ GameObject: --- !u!224 &610614351 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 610614350} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -789,22 +841,22 @@ RectTransform: --- !u!114 &610614352 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 610614350} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -813,30 +865,36 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &610614353 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 610614350} + m_CullTransparentMesh: 0 --- !u!114 &610614354 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 610614350} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -1200242548, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} m_Name: m_EditorClassIdentifier: m_ShowMaskGraphic: 0 --- !u!1 &690643258 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 690643261} - component: {fileID: 690643260} @@ -851,12 +909,13 @@ GameObject: --- !u!114 &690643259 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 690643258} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} m_Name: m_EditorClassIdentifier: m_HorizontalAxis: Horizontal @@ -869,12 +928,13 @@ MonoBehaviour: --- !u!114 &690643260 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 690643258} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} m_Name: m_EditorClassIdentifier: m_FirstSelected: {fileID: 0} @@ -883,8 +943,9 @@ MonoBehaviour: --- !u!4 &690643261 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 690643258} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -896,9 +957,10 @@ Transform: --- !u!1 &817849190 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 817849191} - component: {fileID: 817849193} @@ -913,8 +975,9 @@ GameObject: --- !u!224 &817849191 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 817849190} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -931,22 +994,22 @@ RectTransform: --- !u!114 &817849192 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 817849190} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} m_FontSize: 14 @@ -960,23 +1023,25 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: '...' + m_Text: ... --- !u!222 &817849193 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 817849190} + m_CullTransparentMesh: 0 --- !u!1 &880079428 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 880079433} - component: {fileID: 880079432} - - component: {fileID: 880079431} - component: {fileID: 880079430} - component: {fileID: 880079429} m_Layer: 0 @@ -989,34 +1054,36 @@ GameObject: --- !u!81 &880079429 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_Enabled: 1 --- !u!124 &880079430 Behaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 880079428} - m_Enabled: 1 ---- !u!92 &880079431 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_Enabled: 1 --- !u!20 &880079432 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -1038,16 +1105,17 @@ Camera: m_TargetEye: 3 m_HDR: 1 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 --- !u!4 &880079433 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880079428} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 3.13, y: 1, z: -5.15} @@ -1059,9 +1127,10 @@ Transform: --- !u!1 &1106535733 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1106535734} - component: {fileID: 1106535736} @@ -1076,8 +1145,9 @@ GameObject: --- !u!224 &1106535734 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1106535733} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1094,22 +1164,22 @@ RectTransform: --- !u!114 &1106535735 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1106535733} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -1118,18 +1188,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1106535736 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1106535733} + m_CullTransparentMesh: 0 --- !u!1 &1188701293 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1188701294} - component: {fileID: 1188701297} @@ -1145,8 +1220,9 @@ GameObject: --- !u!224 &1188701294 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1188701293} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1163,12 +1239,13 @@ RectTransform: --- !u!114 &1188701295 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1188701293} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1741964061, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} m_Name: m_EditorClassIdentifier: m_HorizontalFit: 0 @@ -1176,22 +1253,22 @@ MonoBehaviour: --- !u!114 &1188701296 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1188701293} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} m_FontSize: 14 @@ -1209,57 +1286,59 @@ MonoBehaviour: --- !u!222 &1188701297 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1188701293} + m_CullTransparentMesh: 0 --- !u!1001 &1278461420 -Prefab: +PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalPosition.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalRotation.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalRotation.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} + - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} propertyPath: m_LocalRotation.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4059514712971238, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} - propertyPath: m_RootOrder - value: 3 - objectReference: {fileID: 0} m_RemovedComponents: [] - m_ParentPrefab: {fileID: 100100000, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 2} - m_IsPrefabParent: 0 + m_SourcePrefab: {fileID: 100100000, guid: 13c13d3c28878fc4ab122b555674fe1f, type: 3} --- !u!1 &1390242805 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1390242807} - component: {fileID: 1390242806} @@ -1273,8 +1352,9 @@ GameObject: --- !u!114 &1390242806 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1390242805} m_Enabled: 1 m_EditorHideFlags: 0 @@ -1286,8 +1366,9 @@ MonoBehaviour: --- !u!4 &1390242807 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1390242805} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: -0.6143403, y: -2.0584645, z: 1.4303007} @@ -1299,9 +1380,10 @@ Transform: --- !u!1 &1622693827 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1622693829} - component: {fileID: 1622693828} @@ -1315,16 +1397,19 @@ GameObject: --- !u!108 &1622693828 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1622693827} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -1334,6 +1419,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -1341,18 +1444,23 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 4 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &1622693829 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1622693827} m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} m_LocalPosition: {x: 0, y: 3, z: 0} @@ -1364,9 +1472,10 @@ Transform: --- !u!1 &2119761084 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 2119761088} - component: {fileID: 2119761087} @@ -1382,12 +1491,13 @@ GameObject: --- !u!114 &2119761085 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2119761084} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} m_Name: m_EditorClassIdentifier: m_IgnoreReversedGraphics: 1 @@ -1398,12 +1508,13 @@ MonoBehaviour: --- !u!114 &2119761086 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2119761084} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} m_Name: m_EditorClassIdentifier: m_UiScaleMode: 0 @@ -1419,8 +1530,9 @@ MonoBehaviour: --- !u!223 &2119761087 Canvas: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2119761084} m_Enabled: 1 serializedVersion: 3 @@ -1439,8 +1551,9 @@ Canvas: --- !u!224 &2119761088 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2119761084} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1461,9 +1574,10 @@ RectTransform: --- !u!1 &2136902182 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 2136902183} - component: {fileID: 2136902186} @@ -1479,8 +1593,9 @@ GameObject: --- !u!224 &2136902183 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2136902182} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1498,12 +1613,13 @@ RectTransform: --- !u!114 &2136902184 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2136902182} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1517,17 +1633,20 @@ MonoBehaviour: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 1106535735} @@ -1539,27 +1658,25 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &2136902185 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2136902182} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -1568,9 +1685,13 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &2136902186 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2136902182} + m_CullTransparentMesh: 0 diff --git a/Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity.meta b/Assets/ExampleScenes/ShowFeaturedExample.unity.meta similarity index 76% rename from Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity.meta rename to Assets/ExampleScenes/ShowFeaturedExample.unity.meta index a957cff..0e544d7 100644 --- a/Assets/PolyToolkit/ExampleScenes/ShowFeaturedExample.unity.meta +++ b/Assets/ExampleScenes/ShowFeaturedExample.unity.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: bb13f4edbde9be34aadafd653e3bff9e -timeCreated: 1507578528 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ExampleScripts.meta b/Assets/ExampleScripts.meta similarity index 78% rename from Assets/PolyToolkit/ExampleScripts.meta rename to Assets/ExampleScripts.meta index 9b8ae61..6f9ac06 100644 --- a/Assets/PolyToolkit/ExampleScripts.meta +++ b/Assets/ExampleScripts.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: ab179786a54d5874295e86eab7128bcf folderAsset: yes -timeCreated: 1507578483 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ExampleScripts/HelloPoly.cs b/Assets/ExampleScripts/HelloPoly.cs similarity index 96% rename from Assets/PolyToolkit/ExampleScripts/HelloPoly.cs rename to Assets/ExampleScripts/HelloPoly.cs index 2b9629e..c278c79 100644 --- a/Assets/PolyToolkit/ExampleScripts/HelloPoly.cs +++ b/Assets/ExampleScripts/HelloPoly.cs @@ -19,7 +19,7 @@ /// /// Simple example that loads and displays one asset. -/// +/// /// This example requests a specific asset and displays it. /// public class HelloPoly : MonoBehaviour { @@ -32,13 +32,15 @@ public class HelloPoly : MonoBehaviour { // // This example does not use authentication, so there is no need to fill in a Client ID or Client Secret. + public string assetId = "2Uh3mcX2PHX"; // The asset to load. + // Text where we display the current status. public Text statusText; private void Start() { // Request the asset. Debug.Log("Requesting asset..."); - PolyApi.GetAsset("assets/5vbJ5vildOq", GetAssetCallback); + PolyApi.GetAsset($"assets/{assetId}", GetAssetCallback); statusText.text = "Requesting..."; } diff --git a/Assets/PolyToolkit/ExampleScripts/HelloPoly.cs.meta b/Assets/ExampleScripts/HelloPoly.cs.meta similarity index 84% rename from Assets/PolyToolkit/ExampleScripts/HelloPoly.cs.meta rename to Assets/ExampleScripts/HelloPoly.cs.meta index e556f58..b2f6051 100644 --- a/Assets/PolyToolkit/ExampleScripts/HelloPoly.cs.meta +++ b/Assets/ExampleScripts/HelloPoly.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 19bb0d5cd0f9a4344b7352930854a4af -timeCreated: 1507578538 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/ExampleScripts/Rotate.cs b/Assets/ExampleScripts/Rotate.cs similarity index 100% rename from Assets/PolyToolkit/ExampleScripts/Rotate.cs rename to Assets/ExampleScripts/Rotate.cs diff --git a/Assets/PolyToolkit/ExampleScripts/Rotate.cs.meta b/Assets/ExampleScripts/Rotate.cs.meta similarity index 84% rename from Assets/PolyToolkit/ExampleScripts/Rotate.cs.meta rename to Assets/ExampleScripts/Rotate.cs.meta index 6ae8fce..69837f7 100644 --- a/Assets/PolyToolkit/ExampleScripts/Rotate.cs.meta +++ b/Assets/ExampleScripts/Rotate.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: d86541618ff5fc745bb4482f919d2b5d -timeCreated: 1507578538 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/ExampleScripts/ShowFeaturedExample.cs b/Assets/ExampleScripts/ShowFeaturedExample.cs similarity index 100% rename from Assets/PolyToolkit/ExampleScripts/ShowFeaturedExample.cs rename to Assets/ExampleScripts/ShowFeaturedExample.cs diff --git a/Assets/PolyToolkit/ExampleScripts/ShowFeaturedExample.cs.meta b/Assets/ExampleScripts/ShowFeaturedExample.cs.meta similarity index 84% rename from Assets/PolyToolkit/ExampleScripts/ShowFeaturedExample.cs.meta rename to Assets/ExampleScripts/ShowFeaturedExample.cs.meta index dcc0c68..b7efdcb 100644 --- a/Assets/PolyToolkit/ExampleScripts/ShowFeaturedExample.cs.meta +++ b/Assets/ExampleScripts/ShowFeaturedExample.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 5b193722383226d418840e718e6199e9 -timeCreated: 1507578538 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs b/Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs deleted file mode 100644 index b627b11..0000000 --- a/Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright 2017 Google Inc. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -using System.Collections.Generic; -using System.IO; -using UnityEditor; -using UnityEngine; - -namespace PolyToolkitEditor { - -/// -/// Editor scripts that gives a warning to the user whenever they seem to be using the -/// PolyToolkitInternal or PolyToolkitEditor namespaces in one of their scripts. -/// -[InitializeOnLoad] -public class WarnAboutUsingPolyInternal { - private const string ERROR_MESSAGE_TITLE = "Warning about non-exported APIs"; - private const string ERROR_MESSAGE_HEADER = - "Your project seems to be using internal Poly Toolkit classes (from the PolyToolkitInternal or " + - "PolyToolkitEditor namespaces).\n\n" + - "These classes are for only meant for internal use by the toolkit, not " + - "for external consumption, as they can break or change at any time.\n\n" + - "These are the files that seem to be using private Poly Toolkit classes:\n\n"; - - static WarnAboutUsingPolyInternal() { - string basePath = PtUtils.GetPtBaseLocalPath(); - - List offendingFiles = new List(); - foreach (string asset in AssetDatabase.GetAllAssetPaths()) { - // Only check .cs files. - if (!asset.EndsWith(".cs")) continue; - // Don't check Poly Toolkit script files. - if (asset.StartsWith(basePath + "/")) continue; - // If we got here, this is a user-defined script file. Let's check that it's not using PolyToolkitInternal. - // Note that the asset database cannot always be trusted; sometimes the assets do not exist. - string contents; - try { contents = File.ReadAllText(asset); } - catch (FileNotFoundException) { continue; } - - // If the user has silenced the warning by adding the special marker, skip this file. - if (contents.Contains("NO_POLY_TOOLKIT_INTERNAL_CHECK")) continue; - - // This is a pretty naive check but I can't think of any legitimate reason someone would have the string - // "PolyToolkitInternal" or "PolyToolkitEditor" in their script file. But if they do, they can add - // NO_POLY_TOOLKIT_INTERNAL_CHECK to the file to silence the warning. - if (contents.Contains("PolyToolkitInternal") || contents.Contains("PolyToolkitEditor")) { - offendingFiles.Add(asset); - } - } - if (offendingFiles.Count > 0) { - string errorMessage = ERROR_MESSAGE_HEADER + string.Join("\n", offendingFiles.ToArray()); - Debug.LogError(errorMessage); - EditorUtility.DisplayDialog(ERROR_MESSAGE_TITLE, errorMessage, "OK"); - } - } -} - -} \ No newline at end of file diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png.meta deleted file mode 100644 index 016fdb5..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: ed9b3d77606ffd840bbc7ae1adfedced -timeCreated: 1440714591 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 1 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: 2 - aniso: -1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png.meta deleted file mode 100644 index 8e03ab1..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 8aecb07e1a668d24f89309f1e2dab649 -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: 2 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png.meta deleted file mode 100644 index e442c64..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 511e136566fbfc241b63ff2207dbcafe -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png.meta deleted file mode 100644 index 042fb37..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png.meta +++ /dev/null @@ -1,63 +0,0 @@ -fileFormatVersion: 2 -guid: b0396e66243f48449a3710f12f224199 -timeCreated: 1497653637 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: - - buildTarget: Standalone - maxTextureSize: 2048 - textureFormat: 7 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png.meta deleted file mode 100644 index 6f0fe2e..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png.meta +++ /dev/null @@ -1,63 +0,0 @@ -fileFormatVersion: 2 -guid: 5115e6d4283754649a847abe8d481dbc -timeCreated: 1497661871 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: - - buildTarget: Standalone - maxTextureSize: 2048 - textureFormat: 5 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png.meta deleted file mode 100644 index d1a397e..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: e4cba7db327fac04f9f443913ee51fc0 -timeCreated: 1462479037 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 128 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png.meta deleted file mode 100644 index 70f5820..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: f54d138cbc195f142a9994593db7876a -timeCreated: 1467773228 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png.meta deleted file mode 100644 index 0b0f6c4..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 1819abb411411e243b701e7dd664ac9a -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 512 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png.meta deleted file mode 100644 index f9a7a31..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 23192df5929e8904ba29a31ec2c68e46 -timeCreated: 1442278035 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: .0109999999 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 512 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png.meta deleted file mode 100644 index 7e6fd07..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: b7d6447f2b229224fadf587c59f88775 -timeCreated: 1443497436 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png.meta deleted file mode 100644 index d2caacf..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 7fd085260938914449a4cdca9398e8d1 -timeCreated: 1440714590 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 3 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png.meta deleted file mode 100644 index 7aad0d5..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 2a6e115fa9494f2479d7a5284cbe2d3b -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png.meta deleted file mode 100644 index 18eebee..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: b8757e27137f3ba4da9ad36c95d82bb4 -timeCreated: 1467942564 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png.meta deleted file mode 100644 index 85f7e2b..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: df7c592ef1f278543b4de38471df9994 -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png.meta deleted file mode 100644 index ce1c9e6..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 7c4d1ee0e90a536468404363fb2bef1d -timeCreated: 1443584492 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: .0659999996 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png.meta deleted file mode 100644 index 518e088..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 5130495e7534a264da464eec3b7c43d2 -timeCreated: 1496279801 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: 0.02 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png.meta deleted file mode 100644 index e493f8a..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 31a0dba64c25fa442a02171bc2131ccc -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png.meta deleted file mode 100644 index e84e99b..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 599e16957e2a8a84c81e8e72b55312d7 -timeCreated: 1440714587 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: .0890000015 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat deleted file mode 100644 index f741957..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat +++ /dev/null @@ -1,133 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 6 - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_Name: Leaves - m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} - m_ShaderKeywords: _EMISSION - m_LightmapFlags: 1 - m_CustomRenderQueue: -1 - stringTagMap: {} - m_SavedProperties: - serializedVersion: 2 - m_TexEnvs: - - first: - name: _BumpMap - second: - m_Texture: {fileID: 2800000, guid: 735a5f2fd14c4764682ef32fc6822de5, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _DetailAlbedoMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _DetailMask - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _DetailNormalMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _EmissionMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _MainTex - second: - m_Texture: {fileID: 2800000, guid: 3743071a0f034424390b1aa53dda0d60, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _MetallicGlossMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _OcclusionMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _ParallaxMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Floats: - - first: - name: _BumpScale - second: 1 - - first: - name: _Cutoff - second: 0.5 - - first: - name: _DetailNormalMapScale - second: 1 - - first: - name: _DstBlend - second: 0 - - first: - name: _GlossMapScale - second: 1 - - first: - name: _Glossiness - second: 0.5 - - first: - name: _GlossyReflections - second: 1 - - first: - name: _Metallic - second: 0 - - first: - name: _Mode - second: 0 - - first: - name: _OcclusionStrength - second: 1 - - first: - name: _Parallax - second: 0.02 - - first: - name: _Shininess - second: 0.395 - - first: - name: _SmoothnessTextureChannel - second: 0 - - first: - name: _SpecularHighlights - second: 1 - - first: - name: _SrcBlend - second: 1 - - first: - name: _UVSec - second: 0 - - first: - name: _ZWrite - second: 1 - m_Colors: - - first: - name: _Color - second: {r: 1, g: 1, b: 1, a: 1} - - first: - name: _EmissionColor - second: {r: 0, g: 0, b: 0, a: 1} - - first: - name: _SpecColor - second: {r: 0, g: 0, b: 0, a: 0} diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png.meta deleted file mode 100644 index dc6c5b8..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 3743071a0f034424390b1aa53dda0d60 -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 0 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png.meta deleted file mode 100644 index f1ffde5..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 735a5f2fd14c4764682ef32fc6822de5 -timeCreated: 1443655891 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: .0460000001 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png.meta deleted file mode 100644 index 5236213..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 0e093d6c79a128746b77cc289ed425a7 -timeCreated: 1440714584 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png.meta deleted file mode 100644 index be99fcd..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: ea466d6b6f5981a418210cf0db7aee16 -timeCreated: 1468011076 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png.meta deleted file mode 100644 index 9d1986c..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: a5e21dec06724194490cbe6156ac19d2 -timeCreated: 1449103567 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png.meta deleted file mode 100644 index bfdb54a..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: d986b523673bfdb4f8325bc62054d06b -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png.meta deleted file mode 100644 index 111176e..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 432d5c408cd625945ab19bb572a6f8e4 -timeCreated: 1442278035 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: .0179999992 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png.meta deleted file mode 100644 index 8b9a6d0..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 72b554b36eb21d445a97a119717a00e9 -timeCreated: 1491944683 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: 0.05 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png.meta deleted file mode 100644 index 65b2967..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: d2267f6b367938a49abf5cf6e5daab14 -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png.meta deleted file mode 100644 index 8d7541a..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 164c6b5add812494f8f5395410e84ac8 -timeCreated: 1442535682 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png.meta deleted file mode 100644 index 222e943..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 5a1c975bb724e2a4ebdde0f9e9674023 -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png.meta deleted file mode 100644 index a3a95b9..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: d015d7bf56fb5a248a95618587bc43d5 -timeCreated: 1440714591 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png.meta deleted file mode 100644 index 8819e95..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 32bb2679f5fb44b4f88d7afc21730e9b -timeCreated: 1465424359 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: 2 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png.meta deleted file mode 100644 index 50fd151..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: ff92acc4bd186bd4ca5a9fa9c32220a6 -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png.meta deleted file mode 100644 index 01d0aaa..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: e336afde05c4832408da68507aa57261 -timeCreated: 1440714591 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 1 - enableMipMap: 0 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png.meta deleted file mode 100644 index 17b9668..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 0758becf0979c9c42a2419c32260227b -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png.meta deleted file mode 100644 index 13d6213..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: f3edc2a3ac909e640b160e04d7c1f116 -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: 2 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png.meta deleted file mode 100644 index 7df9a13..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 12b1499f1adf4d545a80f2ec18204030 -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: 2 - aniso: 4 - mipBias: -1 - wrapMode: 1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png.meta deleted file mode 100644 index 39f005c..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: b0bde6581a3229a4aa4a2d294da9d00f -timeCreated: 1440714592 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png.meta deleted file mode 100644 index ec6178e..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: adae364a85e64564f8a75e1c0c9958e7 -timeCreated: 1491942709 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: 0.1 - normalMapFilter: 1 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png.meta deleted file mode 100644 index d249c2a..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 23f34828bab17994180c05cba4679802 -timeCreated: 1440714585 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png.meta deleted file mode 100644 index 6f5a144..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 2e1a7d5cb3753244e97923f78cc37197 -timeCreated: 1440714594 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 64 - textureSettings: - filterMode: -1 - aniso: 2 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png.meta deleted file mode 100644 index 827e01a..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 7c9e2c33abd01d5468b670b8d02d6925 -timeCreated: 1457494445 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 32 - textureSettings: - filterMode: -1 - aniso: 1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 5 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png.meta deleted file mode 100644 index d313f5d..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 5e3fee17e4e859e499de57ab74599628 -timeCreated: 1496701421 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png.meta deleted file mode 100644 index e5fc22d..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: 2dc1a52e6c8e9734dbc80815d8732e8a -timeCreated: 1496701421 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 1 - externalNormalMap: 1 - heightScale: 0.03 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 7 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png.meta b/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png.meta deleted file mode 100644 index 1472eae..0000000 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png.meta +++ /dev/null @@ -1,58 +0,0 @@ -fileFormatVersion: 2 -guid: dcae52156c7b5af40bcf91076a87a6b5 -timeCreated: 1442276315 -licenseType: Pro -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 4 - mipBias: -1 - wrapMode: 0 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - spriteTessellationDetail: -1 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity.meta deleted file mode 100644 index fbcbc70..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fe73f75d7bd71754191b2add24e6add1 -folderAsset: yes -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies.meta deleted file mode 100644 index 17e2528..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 16f52eac4a8117e4cb1a23fa4c89f618 -folderAsset: yes -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT.meta deleted file mode 100644 index d716394..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e7e98a718a8c605408436e36c48a5e39 -folderAsset: yes -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML deleted file mode 100644 index 9a914af..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML +++ /dev/null @@ -1,8015 +0,0 @@ - - - - Newtonsoft.Json - - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. - - - true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. - - - - - Gets or sets a value indicating whether the root object will be read as a JSON array. - - - true if the root object will be read as a JSON array; otherwise, false. - - - - - Gets or sets the used when reading values from BSON. - - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The reader. - - - - Initializes a new instance of the class. - - The stream. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The reader. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Changes the to Closed. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the used when writing values to BSON. - When set to no conversion will occur. - - The used when writing values to BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The writer. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Writes the end. - - The token. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes the beginning of a JSON array. - - - - - Writes the beginning of a JSON object. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Closes this stream and the underlying stream. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value that represents a BSON object id. - - The Object ID value to write. - - - - Writes a BSON regex. - - The regex pattern. - The regex options. - - - - Represents a BSON Oid (object id). - - - - - Gets or sets the value of the Oid. - - The value of the Oid. - - - - Initializes a new instance of the class. - - The Oid value. - - - - Converts a binary value to and from a base 64 string value. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Create a custom object - - The object type to convert. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Creates an object which will then be populated by the serializer. - - Type of the object. - The created object. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - - - - Provides a base class for converting a to and from JSON. - - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - - - - - - - - - - - - - - - - - - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an to and from its name string value. - - - - - Gets or sets a value indicating whether the written enum text should be camel case. - - true if the written enum text will be camel case; otherwise, false. - - - - Gets or sets a value indicating whether integer values are allowed. - - true if integers are allowed; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - true if the written enum text will be camel case; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Json Converter for Vector2, Vector3 and Vector4. Only serializes x, y, (z) and (w) properties. - - - - - Default Constructor - All Vector types enabled by default - - - - - Selectively enable Vector types - - Use for Vector2 objects - Use for Vector3 objects - Use for Vector4 objects - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Converts a to and from a string (e.g. "1.2.3.4"). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). - - - - - Gets or sets the date time styles used when converting a date to and from JSON. - - The date time styles used when converting a date to and from JSON. - - - - Gets or sets the date time format used when converting a date to and from JSON. - - The date time format used when converting a date to and from JSON. - - - - Gets or sets the culture used when converting a date to and from JSON. - - The culture used when converting a date to and from JSON. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Converts XML to and from JSON. - - - - - Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. - - The name of the deserialize root element. - - - - Gets or sets a flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - true if the array attibute is written to the XML; otherwise, false. - - - - Gets or sets a value indicating whether to write the root JSON object. - - true if the JSON root object is omitted; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The calling serializer. - The value. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Checks if the attributeName is a namespace attribute. - - Attribute name to test. - The attribute name prefix if it has one, otherwise an empty string. - True if attribute name is for a namespace attribute, otherwise false. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Specifies how constructors are used when initializing objects during deserialization by the . - - - - - First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. - - - - - Json.NET will use a non-public default constructor before falling back to a paramatized constructor. - - - - - Specifies how dates are formatted when writing JSON text. - - - - - Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". - - - - - Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". - - - - - Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. - - - - - Date formatted strings are not parsed to a date type and are read as strings. - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Specifies how to treat the time value when converting between string and . - - - - - Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. - - - - - Treat as a UTC. If the object represents a local time, it is converted to a UTC. - - - - - Treat as a local time if a is being converted to a string. - If a string is being converted to , convert to a local time if a time zone is specified. - - - - - Time zone information should be preserved when converting. - - - - - Specifies float format handling options when writing special floating point numbers, e.g. , - and with . - - - - - Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". - - - - - Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. - Note that this will produce non-valid JSON. - - - - - Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. - - - - - Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Floating point numbers are parsed to . - - - - - Floating point numbers are parsed to . - - - - - Specifies formatting options for the . - - - - - No special formatting is applied. This is the default. - - - - - Causes child objects to be indented according to the and settings. - - - - - Provides an interface for using pooled arrays. - - The array type content. - - - - Rent a array from the pool. This array must be returned when it is no longer needed. - - The minimum required length of the array. The returned array may be longer. - The rented array from the pool. This array must be returned when it is no longer needed. - - - - Return an array to the pool. - - The array that is being returned. - - - - Instructs the to use the specified constructor when deserializing that object. - - - - - Instructs the how to serialize the collection. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Instructs the to deserialize properties with no matching class member into the specified collection - and write values during serialization. - - - - - Gets or sets a value that indicates whether to write extension data when serializing the object. - - - true to write extension data when serializing the object; otherwise, false. The default is true. - - - - - Gets or sets a value that indicates whether to read extension data when deserializing the object. - - - true to read extension data when deserializing the object; otherwise, false. The default is true. - - - - - Initializes a new instance of the class. - - - - - Instructs the to always serialize the member, and require the member has a value. - - - - - Specifies how JSON comments are handled when loading JSON. - - - - - Ignore comments. - - - - - Load comments as a with type . - - - - - Specifies how line information is handled when loading JSON. - - - - - Ignore line information. - - - - - Load line information. - - - - - Represents a view of a . - - - - - Initializes a new instance of the class. - - The name. - - - - When overridden in a derived class, returns whether resetting an object changes its value. - - - true if resetting the component changes its value; otherwise, false. - - The component to test for reset capability. - - - - - When overridden in a derived class, gets the current value of the property on a component. - - - The value of a property for a given component. - - The component with the property for which to retrieve the value. - - - - - When overridden in a derived class, resets the value for this property of the component to the default value. - - The component with the property value that is to be reset to the default value. - - - - - When overridden in a derived class, sets the value of the component to a different value. - - The component with the property value that is to be set. - The new value. - - - - - When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. - - - true if the property should be persisted; otherwise, false. - - The component with the property to be examined for persistence. - - - - - When overridden in a derived class, gets the type of the component this property is bound to. - - - A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. - - - - - When overridden in a derived class, gets a value indicating whether this property is read-only. - - - true if the property is read-only; otherwise, false. - - - - - When overridden in a derived class, gets the type of the property. - - - A that represents the type of the property. - - - - - Gets the hash code for the name of the member. - - - - The hash code for the name of the member. - - - - - Specifies the settings used when loading JSON. - - - - - Gets or sets how JSON comments are handled when loading JSON. - - The JSON comment handling. - - - - Gets or sets how JSON line info is handled when loading JSON. - - The JSON line info handling. - - - - Specifies the settings used when merging JSON. - - - - - Gets or sets the method used when merging JSON arrays. - - The method used when merging JSON arrays. - - - - Gets or sets how how null value properties are merged. - - How null value properties are merged. - - - - Specifies how JSON arrays are merged together. - - - - Concatenate arrays. - - - Union arrays, skipping items that already exist. - - - Replace all array items. - - - Merge array items together, matched by index. - - - - Specifies how null value properties are merged. - - - - - The content's null value properties will be ignored during merging. - - - - - The content's null value properties will be merged. - - - - - Represents a raw JSON string. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class. - - The raw json. - - - - Creates an instance of with the content of the reader's current token. - - The reader. - An instance of with the content of the reader's current token. - - - - Represents a collection of objects. - - The type of token - - - - Gets the with the specified key. - - - - - - Compares tokens to determine whether they are equal. - - - - - Determines whether the specified objects are equal. - - The first object of type to compare. - The second object of type to compare. - - true if the specified objects are equal; otherwise, false. - - - - - Returns a hash code for the specified object. - - The for which a hash code is to be returned. - A hash code for the specified object. - The type of is a reference type and is null. - - - - Contains the LINQ to JSON extension methods. - - - - - Returns a collection of tokens that contains the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the descendants of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, and the descendants of every token in the source collection. - - - - Returns a collection of child properties of every object in the source collection. - - An of that contains the source collection. - An of that contains the properties of every object in the source collection. - - - - Returns a collection of child values of every object in the source collection with the given key. - - An of that contains the source collection. - The token key. - An of that contains the values of every token in the source collection with the given key. - - - - Returns a collection of child values of every object in the source collection. - - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child values of every object in the source collection with the given key. - - The type to convert the values to. - An of that contains the source collection. - The token key. - An that contains the converted values of every token in the source collection with the given key. - - - - Returns a collection of converted child values of every object in the source collection. - - The type to convert the values to. - An of that contains the source collection. - An that contains the converted values of every token in the source collection. - - - - Converts the value. - - The type to convert the value to. - A cast as a of . - A converted value. - - - - Converts the value. - - The source collection type. - The type to convert the value to. - A cast as a of . - A converted value. - - - - Returns a collection of child tokens of every array in the source collection. - - The source collection type. - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child tokens of every array in the source collection. - - An of that contains the source collection. - The type to convert the values to. - The source collection type. - An that contains the converted values of every token in the source collection. - - - - Returns the input typed as . - - An of that contains the source collection. - The input typed as . - - - - Returns the input typed as . - - The source collection type. - An of that contains the source collection. - The input typed as . - - - - Represents a JSON constructor. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets or sets the name of this constructor. - - The constructor name. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name. - - The constructor name. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Represents a token that can contain other tokens. - - - - - Occurs when the list changes or an item in the list changes. - - - - - Occurs before an item is added to the collection. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Raises the event. - - The instance containing the event data. - - - - Raises the event. - - The instance containing the event data. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Get the first child token of this token. - - - A containing the first child token of the . - - - - - Get the last child token of this token. - - - A containing the last child token of the . - - - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - - A containing the child values of this , in document order. - - - - - Returns a collection of the descendant tokens for this token in document order. - - An containing the descendant tokens of the . - - - - Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. - - An containing this token, and all the descendant tokens of the . - - - - Adds the specified content as children of this . - - The content to be added. - - - - Adds the specified content as the first children of this . - - The content to be added. - - - - Creates an that can be used to add tokens to the . - - An that is ready to have content written to it. - - - - Replaces the children nodes of this token with the specified content. - - The content. - - - - Removes the child nodes from this token. - - - - - Merge the specified content into this . - - The content to be merged. - - - - Merge the specified content into this using . - - The content to be merged. - The used to merge the content. - - - - Gets the count of child JSON tokens. - - The count of child JSON tokens - - - - Represents a collection of objects. - - The type of token - - - - An empty collection of objects. - - - - - Initializes a new instance of the struct. - - The enumerable. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Gets the with the specified key. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Represents a JSON object. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Occurs when a property value changes. - - - - - Occurs when a property value is changing. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Gets the node type for this . - - The type. - - - - Gets an of this object's properties. - - An of this object's properties. - - - - Gets a the specified name. - - The property name. - A with the specified name or null. - - - - Gets an of this object's property values. - - An of this object's property values. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the with the specified property name. - - - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified property name. - - Name of the property. - The with the specified property name. - - - - Gets the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - One of the enumeration values that specifies how the strings will be compared. - The with the specified property name. - - - - Tries to get the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - The value. - One of the enumeration values that specifies how the strings will be compared. - true if a value was successfully retrieved; otherwise, false. - - - - Adds the specified property name. - - Name of the property. - The value. - - - - Removes the property with the specified name. - - Name of the property. - true if item was successfully removed; otherwise, false. - - - - Tries the get value. - - Name of the property. - The value. - true if a value was successfully retrieved; otherwise, false. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Returns the properties for this instance of a component. - - - A that represents the properties for this component instance. - - - - - Returns the properties for this instance of a component using the attribute array as a filter. - - An array of type that is used as a filter. - - A that represents the filtered properties for this component instance. - - - - - Returns a collection of custom attributes for this instance of a component. - - - An containing the attributes for this object. - - - - - Returns the class name of this instance of a component. - - - The class name of the object, or null if the class does not have a name. - - - - - Returns the name of this instance of a component. - - - The name of the object, or null if the object does not have a name. - - - - - Returns a type converter for this instance of a component. - - - A that is the converter for this object, or null if there is no for this object. - - - - - Returns the default event for this instance of a component. - - - An that represents the default event for this object, or null if this object does not have events. - - - - - Returns the default property for this instance of a component. - - - A that represents the default property for this object, or null if this object does not have properties. - - - - - Returns an editor of the specified type for this instance of a component. - - A that represents the editor for this object. - - An of the specified type that is the editor for this object, or null if the editor cannot be found. - - - - - Returns the events for this instance of a component using the specified attribute array as a filter. - - An array of type that is used as a filter. - - An that represents the filtered events for this component instance. - - - - - Returns the events for this instance of a component. - - - An that represents the events for this component instance. - - - - - Returns an object that contains the property described by the specified property descriptor. - - A that represents the property whose owner is to be found. - - An that represents the owner of the specified property. - - - - - Represents a JSON array. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the at the specified index. - - - - - - Determines the index of a specific item in the . - - The object to locate in the . - - The index of if found in the list; otherwise, -1. - - - - - Inserts an item to the at the specified index. - - The zero-based index at which should be inserted. - The object to insert into the . - - is not a valid index in the . - The is read-only. - - - - Removes the item at the specified index. - - The zero-based index of the item to remove. - - is not a valid index in the . - The is read-only. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Adds an item to the . - - The object to add to the . - The is read-only. - - - - Removes all items from the . - - The is read-only. - - - - Determines whether the contains a specific value. - - The object to locate in the . - - true if is found in the ; otherwise, false. - - - - - Copies to. - - The array. - Index of the array. - - - - Gets a value indicating whether the is read-only. - - true if the is read-only; otherwise, false. - - - - Removes the first occurrence of a specific object from the . - - The object to remove from the . - - true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . - - The is read-only. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets the at the reader's current position. - - - - - Initializes a new instance of the class. - - The token to read from. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Gets the path of the current JSON token. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets the at the writer's current position. - - - - - Gets the token being writen. - - The token being writen. - - - - Initializes a new instance of the class writing to the given . - - The container being written to. - - - - Initializes a new instance of the class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end. - - The token. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Represents an abstract JSON token. - - - - - Gets a comparer that can compare two tokens for value equality. - - A that can compare two nodes for value equality. - - - - Gets or sets the parent. - - The parent. - - - - Gets the root of this . - - The root of this . - - - - Gets the node type for this . - - The type. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Compares the values of two tokens, including the values of all descendant tokens. - - The first to compare. - The second to compare. - true if the tokens are equal; otherwise false. - - - - Gets the next sibling token of this node. - - The that contains the next sibling token. - - - - Gets the previous sibling token of this node. - - The that contains the previous sibling token. - - - - Gets the path of the JSON token. - - - - - Adds the specified content immediately after this token. - - A content object that contains simple content or a collection of content objects to be added after this token. - - - - Adds the specified content immediately before this token. - - A content object that contains simple content or a collection of content objects to be added before this token. - - - - Returns a collection of the ancestor tokens of this token. - - A collection of the ancestor tokens of this token. - - - - Returns a collection of tokens that contain this token, and the ancestors of this token. - - A collection of tokens that contain this token, and the ancestors of this token. - - - - Returns a collection of the sibling tokens after this token, in document order. - - A collection of the sibling tokens after this tokens, in document order. - - - - Returns a collection of the sibling tokens before this token, in document order. - - A collection of the sibling tokens before this token, in document order. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets the with the specified key converted to the specified type. - - The type to convert the token to. - The token key. - The converted token value. - - - - Get the first child token of this token. - - A containing the first child token of the . - - - - Get the last child token of this token. - - A containing the last child token of the . - - - - Returns a collection of the child tokens of this token, in document order. - - An of containing the child tokens of this , in document order. - - - - Returns a collection of the child tokens of this token, in document order, filtered by the specified type. - - The type to filter the child tokens on. - A containing the child tokens of this , in document order. - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - A containing the child values of this , in document order. - - - - Removes this token from its parent. - - - - - Replaces this token with the specified token. - - The value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Returns the indented JSON for this token. - - - The indented JSON for this token. - - - - - Returns the JSON for this token using the given formatting and converters. - - Indicates how the output is formatted. - A collection of which will be used when writing the token. - The JSON for this token using the given formatting and converters. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to []. - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from [] to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Creates an for this token. - - An that can be used to read this token and its descendants. - - - - Creates a from an object. - - The object that will be used to create . - A with the value of the specified object - - - - Creates a from an object using the specified . - - The object that will be used to create . - The that will be used when reading the object. - A with the value of the specified object - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A , or null. - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - A . - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - An that contains the selected elements. - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - An that contains the selected elements. - - - - Creates a new instance of the . All child tokens are recursively cloned. - - A new instance of the . - - - - Adds an object to the annotation list of this . - - The annotation to add. - - - - Get the first annotation object of the specified type from this . - - The type of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets the first annotation object of the specified type from this . - - The of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets a collection of annotations of the specified type for this . - - The type of the annotations to retrieve. - An that contains the annotations for this . - - - - Gets a collection of annotations of the specified type for this . - - The of the annotations to retrieve. - An of that contains the annotations that match the specified type for this . - - - - Removes the annotations of the specified type from this . - - The type of annotations to remove. - - - - Removes the annotations of the specified type from this . - - The of annotations to remove. - - - - Represents a JSON property. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the property name. - - The property name. - - - - Gets or sets the property value. - - The property value. - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Specifies the type of token. - - - - - No token type has been set. - - - - - A JSON object. - - - - - A JSON array. - - - - - A JSON constructor. - - - - - A JSON object property. - - - - - A comment. - - - - - An integer value. - - - - - A float value. - - - - - A string value. - - - - - A boolean value. - - - - - A null value. - - - - - An undefined value. - - - - - A date value. - - - - - A raw JSON value. - - - - - A collection of bytes value. - - - - - A Guid value. - - - - - A Uri value. - - - - - A TimeSpan value. - - - - - Represents a value in JSON (string, integer, date, etc). - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Creates a comment with the given value. - - The value. - A comment with the given value. - - - - Creates a string with the given value. - - The value. - A string with the given value. - - - - Creates a null value. - - A null value. - - - - Creates a undefined value. - - A undefined value. - - - - Gets the node type for this . - - The type. - - - - Gets or sets the underlying token value. - - The underlying token value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Indicates whether the current object is equal to another object of the same type. - - - true if the current object is equal to the parameter; otherwise, false. - - An object to compare with this object. - - - - Determines whether the specified is equal to the current . - - The to compare with the current . - - true if the specified is equal to the current ; otherwise, false. - - - The parameter is null. - - - - - Serves as a hash function for a particular type. - - - A hash code for the current . - - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. - - An object to compare with this instance. - - A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: - Value - Meaning - Less than zero - This instance is less than . - Zero - This instance is equal to . - Greater than zero - This instance is greater than . - - - is not the same type as this instance. - - - - - Specifies metadata property handling options for the . - - - - - Read metadata properties located at the start of a JSON object. - - - - - Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. - - - - - Do not try to read metadata properties. - - - - - Represents a trace writer that writes to the application's instances. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Provides methods to get attributes. - - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Represents a trace writer. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - The that will be used to filter the trace messages passed to the writer. - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Contract details for a used by the . - - - - - Gets or sets the default collection items . - - The converter. - - - - Gets or sets a value indicating whether the collection items preserve object references. - - true if collection items preserve object references; otherwise, false. - - - - Gets or sets the collection item reference loop handling. - - The reference loop handling. - - - - Gets or sets the collection item type name handling. - - The type name handling. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Represents a trace writer that writes to memory. When the trace message limit is - reached then old trace messages will be removed as new messages are added. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Initializes a new instance of the class. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Returns an enumeration of the most recent trace messages. - - An enumeration of the most recent trace messages. - - - - Returns a of the most recent trace messages. - - - A of the most recent trace messages. - - - - - Provides methods to get attributes from a , , or . - - - - - Initializes a new instance of the class. - - The instance to get attributes for. This parameter should be a , , or . - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Contract details for a used by the . - - - - - Gets or sets the ISerializable object constructor. - - The ISerializable object constructor. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Provides data for the Error event. - - - - - Gets the current object the error event is being raised against. - - The current object the error event is being raised against. - - - - Gets the error context. - - The error context. - - - - Initializes a new instance of the class. - - The current object. - The error context. - - - - Resolves member mappings for a type, camel casing property names. - - - - - Initializes a new instance of the class. - - - - - Resolves the name of the property. - - Name of the property. - The property name camel cased. - - - - Used by to resolves a for a given . - - - - - Gets a value indicating whether members are being get and set using dynamic code generation. - This value is determined by the runtime permissions available. - - - true if using dynamic code generation; otherwise, false. - - - - - Gets or sets the default members search flags. - - The default members search flags. - - - - Gets or sets a value indicating whether compiler generated members should be serialized. - - - true if serialized compiler generated members; otherwise, false. - - - - - Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. - - - true if the interface will be ignored when serializing and deserializing types; otherwise, false. - - - - - Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. - - - true if the attribute will be ignored when serializing and deserializing types; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - - If set to true the will use a cached shared with other resolvers of the same type. - Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only - happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different - results. When set to false it is highly recommended to reuse instances with the . - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Gets the serializable members for the type. - - The type to get serializable members for. - The serializable members for the type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates the constructor parameters. - - The constructor to create properties for. - The type's member properties. - Properties for the given . - - - - Creates a for the given . - - The matching member property. - The constructor parameter. - A created for the given . - - - - Resolves the default for the contract. - - Type of the object. - The contract's default . - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Determines which contract type is created for the given type. - - Type of the object. - A for the given type. - - - - Creates properties for the given . - - The type to create properties for. - /// The member serialization mode for the type. - Properties for the given . - - - - Creates the used by the serializer to get and set values from a member. - - The member. - The used by the serializer to get and set values from a member. - - - - Creates a for the given . - - The member's parent . - The member to create a for. - A created for the given . - - - - Resolves the name of the property. - - Name of the property. - Resolved name of the property. - - - - Resolves the key of the dictionary. By default is used to resolve dictionary keys. - - Key of the dictionary. - Resolved key of the dictionary. - - - - Gets the resolved name of the property. - - Name of the property. - Name of the property. - - - - The default serialization binder used when resolving and loading classes from type names. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - The type of the object the formatter creates a new instance of. - - - - - Provides information surrounding an error. - - - - - Gets the error. - - The error. - - - - Gets the original object that caused the error. - - The original object that caused the error. - - - - Gets the member that caused the error. - - The member that caused the error. - - - - Gets the path of the JSON location where the error occurred. - - The path of the JSON location where the error occurred. - - - - Gets or sets a value indicating whether this is handled. - - true if handled; otherwise, false. - - - - Used by to resolves a for a given . - - - - - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Provides methods to get and set values. - - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Contract details for a used by the . - - - - - Gets the of the collection items. - - The of the collection items. - - - - Gets a value indicating whether the collection type is a multidimensional array. - - true if the collection type is a multidimensional array; otherwise, false. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the collection values. - - true if the creator has a parameter with the collection values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Handles serialization callback events. - - The object that raised the callback event. - The streaming context. - - - - Handles serialization error callback events. - - The object that raised the callback event. - The streaming context. - The error context. - - - - Sets extension data for an object during deserialization. - - The object to set extension data on. - The extension data key. - The extension data value. - - - - Gets extension data for an object during serialization. - - The object to set extension data on. - - - - Contract details for a used by the . - - - - - Gets the underlying type for the contract. - - The underlying type for the contract. - - - - Gets or sets the type created during deserialization. - - The type created during deserialization. - - - - Gets or sets whether this type contract is serialized as a reference. - - Whether this type contract is serialized as a reference. - - - - Gets or sets the default for this contract. - - The converter. - - - - Gets or sets all methods called immediately after deserialization of the object. - - The methods called immediately after deserialization of the object. - - - - Gets or sets all methods called during deserialization of the object. - - The methods called during deserialization of the object. - - - - Gets or sets all methods called after serialization of the object graph. - - The methods called after serialization of the object graph. - - - - Gets or sets all methods called before serialization of the object. - - The methods called before serialization of the object. - - - - Gets or sets all method called when an error is thrown during the serialization of the object. - - The methods called when an error is thrown during the serialization of the object. - - - - Gets or sets the method called immediately after deserialization of the object. - - The method called immediately after deserialization of the object. - - - - Gets or sets the method called during deserialization of the object. - - The method called during deserialization of the object. - - - - Gets or sets the method called after serialization of the object graph. - - The method called after serialization of the object graph. - - - - Gets or sets the method called before serialization of the object. - - The method called before serialization of the object. - - - - Gets or sets the method called when an error is thrown during the serialization of the object. - - The method called when an error is thrown during the serialization of the object. - - - - Gets or sets the default creator method used to create the object. - - The default creator method used to create the object. - - - - Gets or sets a value indicating whether the default creator is non public. - - true if the default object creator is non-public; otherwise, false. - - - - Contract details for a used by the . - - - - - Gets or sets the property name resolver. - - The property name resolver. - - - - Gets or sets the dictionary key resolver. - - The dictionary key resolver. - - - - Gets the of the dictionary keys. - - The of the dictionary keys. - - - - Gets the of the dictionary values. - - The of the dictionary values. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the dictionary values. - - true if the creator has a parameter with the dictionary values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Maps a JSON property to a .NET member or constructor parameter. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the type that declared this property. - - The type that declared this property. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets the name of the underlying member or parameter. - - The name of the underlying member or parameter. - - - - Gets the that will get and set the during serialization. - - The that will get and set the during serialization. - - - - Gets or sets the for this property. - - The for this property. - - - - Gets or sets the type of the property. - - The type of the property. - - - - Gets or sets the for the property. - If set this converter takes presidence over the contract converter for the property type. - - The converter. - - - - Gets or sets the member converter. - - The member converter. - - - - Gets or sets a value indicating whether this is ignored. - - true if ignored; otherwise, false. - - - - Gets or sets a value indicating whether this is readable. - - true if readable; otherwise, false. - - - - Gets or sets a value indicating whether this is writable. - - true if writable; otherwise, false. - - - - Gets or sets a value indicating whether this has a member attribute. - - true if has a member attribute; otherwise, false. - - - - Gets the default value. - - The default value. - - - - Gets or sets a value indicating whether this is required. - - A value indicating whether this is required. - - - - Gets or sets a value indicating whether this property preserves object references. - - - true if this instance is reference; otherwise, false. - - - - - Gets or sets the property null value handling. - - The null value handling. - - - - Gets or sets the property default value handling. - - The default value handling. - - - - Gets or sets the property reference loop handling. - - The reference loop handling. - - - - Gets or sets the property object creation handling. - - The object creation handling. - - - - Gets or sets or sets the type name handling. - - The type name handling. - - - - Gets or sets a predicate used to determine whether the property should be serialize. - - A predicate used to determine whether the property should be serialize. - - - - Gets or sets a predicate used to determine whether the property should be deserialized. - - A predicate used to determine whether the property should be deserialized. - - - - Gets or sets a predicate used to determine whether the property should be serialized. - - A predicate used to determine whether the property should be serialized. - - - - Gets or sets an action used to set whether the property has been deserialized. - - An action used to set whether the property has been deserialized. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - A collection of objects. - - - - - Initializes a new instance of the class. - - The type. - - - - When implemented in a derived class, extracts the key from the specified element. - - The element from which to extract the key. - The key for the specified element. - - - - Adds a object. - - The property to add to the collection. - - - - Gets the closest matching object. - First attempts to get an exact case match of propertyName and then - a case insensitive match. - - Name of the property. - A matching property if found. - - - - Gets a property by property name. - - The name of the property to get. - Type property name string comparison. - A matching property if found. - - - - Used to resolve references when serializing and deserializing JSON by the . - - - - - Resolves a reference to its object. - - The serialization context. - The reference to resolve. - The object that - - - - Gets the reference for the sepecified object. - - The serialization context. - The object to get a reference for. - The reference to the object. - - - - Determines whether the specified object is referenced. - - The serialization context. - The object to test for a reference. - - true if the specified object is referenced; otherwise, false. - - - - - Adds a reference to the specified object. - - The serialization context. - The reference. - The object to reference. - - - - Contract details for a used by the . - - - - - Gets or sets the object member serialization. - - The member object serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Gets the object's properties. - - The object's properties. - - - - Gets the constructor parameters required for any non-default constructor - - - - - Gets a collection of instances that define the parameters used with . - - - - - Gets or sets the override constructor used to create the object. - This is set when a constructor is marked up using the - JsonConstructor attribute. - - The override constructor. - - - - Gets or sets the parametrized constructor used to create the object. - - The parametrized constructor. - - - - Gets or sets the function used to create the object. When set this function will override . - This function is called with a collection of arguments which are defined by the collection. - - The function used to create the object. - - - - Gets or sets the extension data setter. - - - - - Gets or sets the extension data getter. - - - - - Gets or sets the extension data value type. - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Lookup and create an instance of the JsonConverter type described by the argument. - - The JsonConverter type to create. - Optional arguments to pass to an initializing constructor of the JsonConverter. - If null, the default constructor is used. - - - - Create a factory function that can be used to create instances of a JsonConverter described by the - argument type. The returned function can then be used to either invoke the converter's default ctor, or any - parameterized constructors by way of an object array. - - - - - Get and set values for a using reflection. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - When applied to a method, specifies that the method is called when an error occurs serializing an object. - - - - - Represents a method that constructs an object. - - The object type to create. - - - - Specifies how strings are escaped when writing JSON text. - - - - - Only control characters (e.g. newline) are escaped. - - - - - All non-ASCII and control characters (e.g. newline) are escaped. - - - - - HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. - - - - - Converts the value to the specified type. If the value is unable to be converted, the - value is checked whether it assignable to the specified type. - - The value to convert. - The culture to use when converting. - The type to convert or cast the value to. - - The converted type. If conversion was unsuccessful, the initial value - is returned if assignable to the target type. - - - - - Gets a dictionary of the names and values of an Enum type. - - - - - - Gets a dictionary of the names and values of an Enum type. - - The enum type to get names and values for. - - - - - Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. - - - - - Determines whether the collection is null or empty. - - The collection. - - true if the collection is null or empty; otherwise, false. - - - - - Adds the elements of the specified collection to the specified generic IList. - - The list to add to. - The collection of elements to add. - - - - Gets the type of the typed collection's items. - - The type. - The type of the typed collection's items. - - - - Gets the member's underlying type. - - The member. - The underlying type of the member. - - - - Determines whether the member is an indexed property. - - The member. - - true if the member is an indexed property; otherwise, false. - - - - - Determines whether the property is an indexed property. - - The property. - - true if the property is an indexed property; otherwise, false. - - - - - Gets the member's value on the object. - - The member. - The target object. - The member's value on the object. - - - - Sets the member's value on the target object. - - The member. - The target. - The value. - - - - Determines whether the specified MemberInfo can be read. - - The MemberInfo to determine whether can be read. - /// if set to true then allow the member to be gotten non-publicly. - - true if the specified MemberInfo can be read; otherwise, false. - - - - - Determines whether the specified MemberInfo can be set. - - The MemberInfo to determine whether can be set. - if set to true then allow the member to be set non-publicly. - if set to true then allow the member to be set if read-only. - - true if the specified MemberInfo can be set; otherwise, false. - - - - - Determines whether the string is all white space. Empty string will return false. - - The string to test whether it is all white space. - - true if the string is all white space; otherwise, false. - - - - - Nulls an empty string. - - The string. - Null if the string was null, otherwise the string unchanged. - - - - Indicating whether a property is required. - - - - - The property is not required. The default state. - - - - - The property must be defined in JSON but can be a null value. - - - - - The property must be defined in JSON and cannot be a null value. - - - - - The property is not required but it cannot be a null value. - - - - - Specifies reference handling options for the . - Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. - - - - - - - - Do not preserve references when serializing types. - - - - - Preserve references when serializing into a JSON object structure. - - - - - Preserve references when serializing into a JSON array structure. - - - - - Preserve references when serializing. - - - - - Provides an interface to enable a class to return line and position information. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Gets the current line position. - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Instructs the how to serialize the collection. - - - - - Gets or sets a value indicating whether null items are allowed in the collection. - - true if null items are allowed in the collection; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with a flag indicating whether the array can contain null items - - A flag indicating whether the array can contain null items. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Instructs the how to serialize the object. - - - - - Gets or sets the id. - - The id. - - - - Gets or sets the title. - - The title. - - - - Gets or sets the description. - - The description. - - - - Gets the collection's items converter. - - The collection's items converter. - - - - The parameter list to use when constructing the JsonConverter described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, - order, and type of these parameters. - - - [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets a value that indicates whether to preserve object references. - - - true to keep object reference; otherwise, false. The default is false. - - - - - Gets or sets a value that indicates whether to preserve collection's items references. - - - true to keep collection's items object references; otherwise, false. The default is false. - - - - - Gets or sets the reference loop handling used when serializing the collection's items. - - The reference loop handling. - - - - Gets or sets the type name handling used when serializing the collection's items. - - The type name handling. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Specifies default value handling options for the . - - - - - - - - - Include members where the member value is the same as the member's default value when serializing objects. - Included members are written to JSON. Has no effect when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - so that is is not written to JSON. - This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, - decimals and floating point numbers; and false for booleans). The default value ignored can be changed by - placing the on the property. - - - - - Members with a default value but no JSON will be set to their default value when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - and sets members to their default value when deserializing. - - - - - Instructs the to use the specified when serializing the member or class. - - - - - Gets the of the converter. - - The of the converter. - - - - The parameter list to use when constructing the JsonConverter described by ConverterType. - If null, the default constructor is used. - - - - - Initializes a new instance of the class. - - Type of the converter. - - - - Initializes a new instance of the class. - - Type of the converter. - Parameter list to use when constructing the JsonConverter. Can be null. - - - - Instructs the how to serialize the object. - - - - - Gets or sets the member serialization. - - The member serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified member serialization. - - The member serialization. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Specifies the settings on a object. - - - - - Gets or sets how reference loops (e.g. a class referencing itself) is handled. - - Reference loop handling. - - - - Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - Missing member handling. - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how null values are handled during serialization and deserialization. - - Null value handling. - - - - Gets or sets how null default are handled during serialization and deserialization. - - The default value handling. - - - - Gets or sets a collection that will be used during serialization. - - The converters. - - - - Gets or sets how object references are preserved by the serializer. - - The preserve references handling. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - The type name handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - The contract resolver. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets the used by the serializer when resolving references. - - The reference resolver. - - - - Gets or sets a function that creates the used by the serializer when resolving references. - - A function that creates the used by the serializer when resolving references. - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the used by the serializer when resolving type names. - - The binder. - - - - Gets or sets the error handler called during serialization and deserialization. - - The error handler called during serialization and deserialization. - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets a value indicating whether there will be a check for additional content after deserializing an object. - - - true if there will be a check for additional content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Specifies the member serialization options for the . - - - - - All public members are serialized by default. Members can be excluded using or . - This is the default member serialization mode. - - - - - Only members marked with or are serialized. - This member serialization mode can also be set by marking the class with . - - - - - All public and private fields are serialized. Members can be excluded using or . - This member serialization mode can also be set by marking the class with - and setting IgnoreSerializableAttribute on to false. - - - - - Specifies how object creation is handled by the . - - - - - Reuse existing objects, create new objects when needed. - - - - - Only reuse existing objects. - - - - - Always create new objects. - - - - - Represents a reader that provides fast, non-cached, forward-only access to JSON text data. - - - - - Initializes a new instance of the class with the specified . - - The TextReader containing the XML data to read. - - - - Gets or sets the reader's character buffer pool. - - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Changes the state to closed. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Gets the current line position. - - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Instructs the to always serialize the member with the specified name. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - The parameter list to use when constructing the JsonConverter described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, - order, and type of these parameters. - - - [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets the null value handling used when serializing this property. - - The null value handling. - - - - Gets or sets the default value handling used when serializing this property. - - The default value handling. - - - - Gets or sets the reference loop handling used when serializing this property. - - The reference loop handling. - - - - Gets or sets the object creation handling used when deserializing this property. - - The object creation handling. - - - - Gets or sets the type name handling used when serializing this property. - - The type name handling. - - - - Gets or sets whether this property's value is serialized as a reference. - - Whether this property's value is serialized as a reference. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets a value indicating whether this property is required. - - - A value indicating whether this property is required. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified name. - - Name of the property. - - - - Instructs the not to serialize the public field or public read/write property value. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the writer's character array pool. - - - - - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. - - - - - Gets or sets which character to use to quote attribute values. - - - - - Gets or sets which character to use for indenting when is set to Formatting.Indented. - - - - - Gets or sets a value indicating whether object names will be surrounded with quotes. - - - - - Creates an instance of the JsonWriter class using the specified . - - The TextWriter to write to. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the specified end token. - - The end token to write. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Converts an object to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can read JSON. - - true if this can read JSON; otherwise, false. - - - - Gets a value indicating whether this can write JSON. - - true if this can write JSON; otherwise, false. - - - - Represents a collection of . - - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Specifies the state of the reader. - - - - - The Read method has not been called. - - - - - The end of the file has been reached successfully. - - - - - Reader is at a property. - - - - - Reader is at the start of an object. - - - - - Reader is in an object. - - - - - Reader is at the start of an array. - - - - - Reader is in an array. - - - - - The Close method has been called. - - - - - Reader has just read a value. - - - - - Reader is at the start of a constructor. - - - - - Reader in a constructor. - - - - - An error occurred that prevents the read operation from continuing. - - - - - The end of the file has been reached successfully. - - - - - Gets the current reader state. - - The current reader state. - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the reader is closed. - - - true to close the underlying stream or when - the reader is closed; otherwise false. The default is true. - - - - - Gets or sets a value indicating whether multiple pieces of JSON content can - be read from a continuous stream without erroring. - - - true to support reading multiple pieces of JSON content; otherwise false. The default is false. - - - - - Gets the quotation mark character used to enclose the value of a string. - - - - - Get or set how time zones are handling when reading JSON. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how custom date formatted strings are parsed when reading JSON. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets the type of the current JSON token. - - - - - Gets the text value of the current JSON token. - - - - - Gets The Common Language Runtime (CLR) type for the current JSON token. - - - - - Gets the depth of the current token in the JSON document. - - The depth of the current token in the JSON document. - - - - Gets the path of the current JSON token. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Initializes a new instance of the class with the specified . - - - - - Reads the next JSON token from the stream. - - true if the next token was read successfully; false if there are no more tokens to read. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Skips the children of the current token. - - - - - Sets the current token. - - The new token. - - - - Sets the current token and value. - - The new token. - The value. - - - - Sets the state based on current token type. - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Changes the to Closed. - - - - - Provides methods for converting between common language runtime types and JSON types. - - - - - - - - Gets or sets a function that creates default . - Default settings are automatically used by serialization methods on , - and and on . - To serialize without using any default settings create a with - . - - - - - Represents JavaScript's boolean value true as a string. This field is read-only. - - - - - Represents JavaScript's boolean value false as a string. This field is read-only. - - - - - Represents JavaScript's null as a string. This field is read-only. - - - - - Represents JavaScript's undefined as a string. This field is read-only. - - - - - Represents JavaScript's positive infinity as a string. This field is read-only. - - - - - Represents JavaScript's negative infinity as a string. This field is read-only. - - - - - Represents JavaScript's NaN as a string. This field is read-only. - - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - The time zone handling when the date is converted to a string. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - The string escape handling. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Serializes the specified object to a JSON string. - - The object to serialize. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting. - - The object to serialize. - Indicates how the output is formatted. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting and a collection of . - - The object to serialize. - Indicates how the output is formatted. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Deserializes the JSON to a .NET object. - - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to a .NET object using . - - The JSON to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The JSON to deserialize. - The of object being deserialized. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The type of the object to deserialize to. - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the given anonymous type. - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the given anonymous type using . - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The type of the object to deserialize to. - The JSON to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The type of the object to deserialize to. - The object to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The JSON to deserialize. - The type of the object to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The JSON to deserialize. - The type of the object to deserialize to. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Populates the object with values from the JSON string. - - The JSON to populate values from. - The target object to populate values onto. - - - - Populates the object with values from the JSON string using . - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - - - Serializes the XML node to a JSON string. - - The node to serialize. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string using formatting. - - The node to serialize. - Indicates how the output is formatted. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XmlNode. - - - - Deserializes the XmlNode from a JSON string. - - The JSON string. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XmlNode - - - - Serializes the to a JSON string. - - The node to convert to JSON. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting. - - The node to convert to JSON. - Indicates how the output is formatted. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XNode. - - - - Deserializes the from a JSON string. - - The JSON string. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XNode - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Serializes and deserializes objects into and from the JSON format. - The enables you to control how objects are encoded into JSON. - - - - - Occurs when the errors during serialization and deserialization. - - - - - Gets or sets the used by the serializer when resolving references. - - - - - Gets or sets the used by the serializer when resolving type names. - - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how object references are preserved by the serializer. - - - - - Get or set how reference loops (e.g. a class referencing itself) is handled. - - - - - Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - - - - Get or set how null values are handled during serialization and deserialization. - - - - - Get or set how null default are handled during serialization and deserialization. - - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets a collection that will be used during serialization. - - Collection that will be used during serialization. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. - - - true if there will be a check for additional JSON content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Creates a new instance. - The will not use default settings - from . - - - A new instance. - The will not use default settings - from . - - - - - Creates a new instance using the specified . - The will not use default settings - from . - - The settings to be applied to the . - - A new instance using the specified . - The will not use default settings - from . - - - - - Creates a new instance. - The will use default settings - from . - - - A new instance. - The will use default settings - from . - - - - - Creates a new instance using the specified . - The will use default settings - from as well as the specified . - - The settings to be applied to the . - - A new instance using the specified . - The will use default settings - from as well as the specified . - - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Deserializes the JSON structure contained by the specified . - - The that contains the JSON structure to deserialize. - The being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The type of the object to deserialize. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Specifies missing member handling options for the . - - - - - Ignore a missing member and do not attempt to deserialize it. - - - - - Throw a when a missing member is encountered during deserialization. - - - - - Specifies null value handling options for the . - - - - - - - - - Include null values when serializing and deserializing objects. - - - - - Ignore null values when serializing and deserializing objects. - - - - - Specifies reference loop handling options for the . - - - - - Throw a when a loop is encountered. - - - - - Ignore loop references and do not serialize. - - - - - Serialize loop references. - - - - - Specifies type name handling options for the . - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Do not include the .NET type name when serializing types. - - - - - Include the .NET type name when serializing into a JSON object structure. - - - - - Include the .NET type name when serializing into a JSON array structure. - - - - - Always include the .NET type name when serializing. - - - - - Include the .NET type name when the type of the object being serialized is not the same as its declared type. - - - - - Specifies the type of JSON token. - - - - - This is returned by the if a method has not been called. - - - - - An object start token. - - - - - An array start token. - - - - - A constructor start token. - - - - - An object property name. - - - - - A comment. - - - - - Raw JSON. - - - - - An integer. - - - - - A float. - - - - - A string. - - - - - A boolean. - - - - - A null token. - - - - - An undefined token. - - - - - An object end token. - - - - - An array end token. - - - - - A constructor end token. - - - - - A Date. - - - - - Byte data. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the writer is closed. - - - true to close the underlying stream or when - the writer is closed; otherwise false. The default is true. - - - - - Gets the top. - - The top. - - - - Gets the state of the writer. - - - - - Gets the path of the writer. - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling when writing JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written to JSON text. - - - - - Get or set how and values are formatting when writing JSON text. - - - - - Gets or sets the culture used when writing JSON. Defaults to . - - - - - Creates an instance of the JsonWriter class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the end of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the end of an array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end constructor. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes the end of the current JSON object or array. - - - - - Writes the current token and its children. - - The to read the token from. - - - - Writes the current token. - - The to read the token from. - A flag indicating whether the current token's children should be written. - - - - Writes the token and its value. - - The to write. - - The value to write. - A value is only required for tokens that have an associated value, e.g. the property name for . - A null value can be passed to the method for token's that don't have a value, e.g. . - - - - Writes the token. - - The to write. - - - - Writes the specified end token. - - The end token to write. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON without changing the writer's state. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Sets the state of the JsonWriter, - - The JsonToken being written. - The value being written. - - - - Specifies the state of the . - - - - - An exception has been thrown, which has left the in an invalid state. - You may call the method to put the in the Closed state. - Any other method calls results in an being thrown. - - - - - The method has been called. - - - - - An object is being written. - - - - - A array is being written. - - - - - A constructor is being written. - - - - - A property is being written. - - - - - A write method has not been called. - - - - diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML.meta deleted file mode 100644 index 9f63945..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.XML.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 54a99b6d5acbfdb4a871352ac8936022 -timeCreated: 1510073635 -licenseType: Pro -TextScriptImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll deleted file mode 100644 index 19c9b40..0000000 Binary files a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll and /dev/null differ diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll.meta deleted file mode 100644 index 374e9f6..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/AOT/Newtonsoft.Json.dll.meta +++ /dev/null @@ -1,145 +0,0 @@ -fileFormatVersion: 2 -guid: 144c6bc256d642a4fb10d2fe94d05e0b -timeCreated: 1510073623 -licenseType: Pro -PluginImporter: - serializedVersion: 2 - iconMap: {} - executionOrder: {} - isPreloaded: 0 - isOverridable: 0 - platformData: - data: - first: - '': Any - second: - enabled: 0 - settings: - Exclude Android: 0 - Exclude Editor: 1 - Exclude Linux: 1 - Exclude Linux64: 1 - Exclude LinuxUniversal: 1 - Exclude OSXIntel: 1 - Exclude OSXIntel64: 1 - Exclude OSXUniversal: 1 - Exclude WebGL: 1 - Exclude Win: 1 - Exclude Win64: 1 - Exclude iOS: 0 - data: - first: - '': Editor - second: - enabled: 0 - settings: - CPU: AnyCPU - OS: AnyOS - data: - first: - Android: Android - second: - enabled: 1 - settings: - CPU: ARMv7 - data: - first: - Any: - second: - enabled: 0 - settings: {} - data: - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - data: - first: - Facebook: Win - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Facebook: Win64 - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: Linux - second: - enabled: 0 - settings: - CPU: x86 - data: - first: - Standalone: Linux64 - second: - enabled: 0 - settings: - CPU: x86_64 - data: - first: - Standalone: LinuxUniversal - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: OSXIntel - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: OSXIntel64 - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: OSXUniversal - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: Win - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: Win64 - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Windows Store Apps: WindowsStoreApps - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - iPhone: iOS - second: - enabled: 1 - settings: - CompileFlags: - FrameworkDependencies: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone.meta deleted file mode 100644 index 9ed20a7..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3c7b5a371a5849e4e9a665ac6ca12668 -folderAsset: yes -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML deleted file mode 100644 index 4dbcd9e..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML +++ /dev/null @@ -1,8040 +0,0 @@ - - - - Newtonsoft.Json - - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. - - - true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. - - - - - Gets or sets a value indicating whether the root object will be read as a JSON array. - - - true if the root object will be read as a JSON array; otherwise, false. - - - - - Gets or sets the used when reading values from BSON. - - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The reader. - - - - Initializes a new instance of the class. - - The stream. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The reader. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Changes the to Closed. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the used when writing values to BSON. - When set to no conversion will occur. - - The used when writing values to BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The writer. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Writes the end. - - The token. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes the beginning of a JSON array. - - - - - Writes the beginning of a JSON object. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Closes this stream and the underlying stream. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value that represents a BSON object id. - - The Object ID value to write. - - - - Writes a BSON regex. - - The regex pattern. - The regex options. - - - - Represents a BSON Oid (object id). - - - - - Gets or sets the value of the Oid. - - The value of the Oid. - - - - Initializes a new instance of the class. - - The Oid value. - - - - Converts a binary value to and from a base 64 string value. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Create a custom object - - The object type to convert. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Creates an object which will then be populated by the serializer. - - Type of the object. - The created object. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - - - - Provides a base class for converting a to and from JSON. - - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - - - - - - - - - - - - - - - - - - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an to and from its name string value. - - - - - Gets or sets a value indicating whether the written enum text should be camel case. - - true if the written enum text will be camel case; otherwise, false. - - - - Gets or sets a value indicating whether integer values are allowed. - - true if integers are allowed; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - true if the written enum text will be camel case; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Json Converter for Vector2, Vector3 and Vector4. Only serializes x, y, (z) and (w) properties. - - - - - Default Constructor - All Vector types enabled by default - - - - - Selectively enable Vector types - - Use for Vector2 objects - Use for Vector3 objects - Use for Vector4 objects - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Converts a to and from a string (e.g. "1.2.3.4"). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). - - - - - Gets or sets the date time styles used when converting a date to and from JSON. - - The date time styles used when converting a date to and from JSON. - - - - Gets or sets the date time format used when converting a date to and from JSON. - - The date time format used when converting a date to and from JSON. - - - - Gets or sets the culture used when converting a date to and from JSON. - - The culture used when converting a date to and from JSON. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Converts XML to and from JSON. - - - - - Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. - - The name of the deserialize root element. - - - - Gets or sets a flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - true if the array attibute is written to the XML; otherwise, false. - - - - Gets or sets a value indicating whether to write the root JSON object. - - true if the JSON root object is omitted; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The calling serializer. - The value. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Checks if the attributeName is a namespace attribute. - - Attribute name to test. - The attribute name prefix if it has one, otherwise an empty string. - True if attribute name is for a namespace attribute, otherwise false. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Specifies how constructors are used when initializing objects during deserialization by the . - - - - - First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. - - - - - Json.NET will use a non-public default constructor before falling back to a paramatized constructor. - - - - - Specifies how dates are formatted when writing JSON text. - - - - - Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". - - - - - Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". - - - - - Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. - - - - - Date formatted strings are not parsed to a date type and are read as strings. - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Specifies how to treat the time value when converting between string and . - - - - - Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. - - - - - Treat as a UTC. If the object represents a local time, it is converted to a UTC. - - - - - Treat as a local time if a is being converted to a string. - If a string is being converted to , convert to a local time if a time zone is specified. - - - - - Time zone information should be preserved when converting. - - - - - Specifies float format handling options when writing special floating point numbers, e.g. , - and with . - - - - - Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". - - - - - Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. - Note that this will produce non-valid JSON. - - - - - Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. - - - - - Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Floating point numbers are parsed to . - - - - - Floating point numbers are parsed to . - - - - - Specifies formatting options for the . - - - - - No special formatting is applied. This is the default. - - - - - Causes child objects to be indented according to the and settings. - - - - - Provides an interface for using pooled arrays. - - The array type content. - - - - Rent a array from the pool. This array must be returned when it is no longer needed. - - The minimum required length of the array. The returned array may be longer. - The rented array from the pool. This array must be returned when it is no longer needed. - - - - Return an array to the pool. - - The array that is being returned. - - - - Instructs the to use the specified constructor when deserializing that object. - - - - - Instructs the how to serialize the collection. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Instructs the to deserialize properties with no matching class member into the specified collection - and write values during serialization. - - - - - Gets or sets a value that indicates whether to write extension data when serializing the object. - - - true to write extension data when serializing the object; otherwise, false. The default is true. - - - - - Gets or sets a value that indicates whether to read extension data when deserializing the object. - - - true to read extension data when deserializing the object; otherwise, false. The default is true. - - - - - Initializes a new instance of the class. - - - - - Instructs the to always serialize the member, and require the member has a value. - - - - - Specifies how JSON comments are handled when loading JSON. - - - - - Ignore comments. - - - - - Load comments as a with type . - - - - - Specifies how line information is handled when loading JSON. - - - - - Ignore line information. - - - - - Load line information. - - - - - Represents a view of a . - - - - - Initializes a new instance of the class. - - The name. - - - - When overridden in a derived class, returns whether resetting an object changes its value. - - - true if resetting the component changes its value; otherwise, false. - - The component to test for reset capability. - - - - - When overridden in a derived class, gets the current value of the property on a component. - - - The value of a property for a given component. - - The component with the property for which to retrieve the value. - - - - - When overridden in a derived class, resets the value for this property of the component to the default value. - - The component with the property value that is to be reset to the default value. - - - - - When overridden in a derived class, sets the value of the component to a different value. - - The component with the property value that is to be set. - The new value. - - - - - When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. - - - true if the property should be persisted; otherwise, false. - - The component with the property to be examined for persistence. - - - - - When overridden in a derived class, gets the type of the component this property is bound to. - - - A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. - - - - - When overridden in a derived class, gets a value indicating whether this property is read-only. - - - true if the property is read-only; otherwise, false. - - - - - When overridden in a derived class, gets the type of the property. - - - A that represents the type of the property. - - - - - Gets the hash code for the name of the member. - - - - The hash code for the name of the member. - - - - - Specifies the settings used when loading JSON. - - - - - Gets or sets how JSON comments are handled when loading JSON. - - The JSON comment handling. - - - - Gets or sets how JSON line info is handled when loading JSON. - - The JSON line info handling. - - - - Specifies the settings used when merging JSON. - - - - - Gets or sets the method used when merging JSON arrays. - - The method used when merging JSON arrays. - - - - Gets or sets how how null value properties are merged. - - How null value properties are merged. - - - - Specifies how JSON arrays are merged together. - - - - Concatenate arrays. - - - Union arrays, skipping items that already exist. - - - Replace all array items. - - - Merge array items together, matched by index. - - - - Specifies how null value properties are merged. - - - - - The content's null value properties will be ignored during merging. - - - - - The content's null value properties will be merged. - - - - - Represents a raw JSON string. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class. - - The raw json. - - - - Creates an instance of with the content of the reader's current token. - - The reader. - An instance of with the content of the reader's current token. - - - - Represents a collection of objects. - - The type of token - - - - Gets the with the specified key. - - - - - - Compares tokens to determine whether they are equal. - - - - - Determines whether the specified objects are equal. - - The first object of type to compare. - The second object of type to compare. - - true if the specified objects are equal; otherwise, false. - - - - - Returns a hash code for the specified object. - - The for which a hash code is to be returned. - A hash code for the specified object. - The type of is a reference type and is null. - - - - Contains the LINQ to JSON extension methods. - - - - - Returns a collection of tokens that contains the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the descendants of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, and the descendants of every token in the source collection. - - - - Returns a collection of child properties of every object in the source collection. - - An of that contains the source collection. - An of that contains the properties of every object in the source collection. - - - - Returns a collection of child values of every object in the source collection with the given key. - - An of that contains the source collection. - The token key. - An of that contains the values of every token in the source collection with the given key. - - - - Returns a collection of child values of every object in the source collection. - - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child values of every object in the source collection with the given key. - - The type to convert the values to. - An of that contains the source collection. - The token key. - An that contains the converted values of every token in the source collection with the given key. - - - - Returns a collection of converted child values of every object in the source collection. - - The type to convert the values to. - An of that contains the source collection. - An that contains the converted values of every token in the source collection. - - - - Converts the value. - - The type to convert the value to. - A cast as a of . - A converted value. - - - - Converts the value. - - The source collection type. - The type to convert the value to. - A cast as a of . - A converted value. - - - - Returns a collection of child tokens of every array in the source collection. - - The source collection type. - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child tokens of every array in the source collection. - - An of that contains the source collection. - The type to convert the values to. - The source collection type. - An that contains the converted values of every token in the source collection. - - - - Returns the input typed as . - - An of that contains the source collection. - The input typed as . - - - - Returns the input typed as . - - The source collection type. - An of that contains the source collection. - The input typed as . - - - - Represents a JSON constructor. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets or sets the name of this constructor. - - The constructor name. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name. - - The constructor name. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Represents a token that can contain other tokens. - - - - - Occurs when the list changes or an item in the list changes. - - - - - Occurs before an item is added to the collection. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Raises the event. - - The instance containing the event data. - - - - Raises the event. - - The instance containing the event data. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Get the first child token of this token. - - - A containing the first child token of the . - - - - - Get the last child token of this token. - - - A containing the last child token of the . - - - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - - A containing the child values of this , in document order. - - - - - Returns a collection of the descendant tokens for this token in document order. - - An containing the descendant tokens of the . - - - - Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. - - An containing this token, and all the descendant tokens of the . - - - - Adds the specified content as children of this . - - The content to be added. - - - - Adds the specified content as the first children of this . - - The content to be added. - - - - Creates an that can be used to add tokens to the . - - An that is ready to have content written to it. - - - - Replaces the children nodes of this token with the specified content. - - The content. - - - - Removes the child nodes from this token. - - - - - Merge the specified content into this . - - The content to be merged. - - - - Merge the specified content into this using . - - The content to be merged. - The used to merge the content. - - - - Gets the count of child JSON tokens. - - The count of child JSON tokens - - - - Represents a collection of objects. - - The type of token - - - - An empty collection of objects. - - - - - Initializes a new instance of the struct. - - The enumerable. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Gets the with the specified key. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Represents a JSON object. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Occurs when a property value changes. - - - - - Occurs when a property value is changing. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Gets the node type for this . - - The type. - - - - Gets an of this object's properties. - - An of this object's properties. - - - - Gets a the specified name. - - The property name. - A with the specified name or null. - - - - Gets an of this object's property values. - - An of this object's property values. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the with the specified property name. - - - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified property name. - - Name of the property. - The with the specified property name. - - - - Gets the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - One of the enumeration values that specifies how the strings will be compared. - The with the specified property name. - - - - Tries to get the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - The value. - One of the enumeration values that specifies how the strings will be compared. - true if a value was successfully retrieved; otherwise, false. - - - - Adds the specified property name. - - Name of the property. - The value. - - - - Removes the property with the specified name. - - Name of the property. - true if item was successfully removed; otherwise, false. - - - - Tries the get value. - - Name of the property. - The value. - true if a value was successfully retrieved; otherwise, false. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Returns the properties for this instance of a component. - - - A that represents the properties for this component instance. - - - - - Returns the properties for this instance of a component using the attribute array as a filter. - - An array of type that is used as a filter. - - A that represents the filtered properties for this component instance. - - - - - Returns a collection of custom attributes for this instance of a component. - - - An containing the attributes for this object. - - - - - Returns the class name of this instance of a component. - - - The class name of the object, or null if the class does not have a name. - - - - - Returns the name of this instance of a component. - - - The name of the object, or null if the object does not have a name. - - - - - Returns a type converter for this instance of a component. - - - A that is the converter for this object, or null if there is no for this object. - - - - - Returns the default event for this instance of a component. - - - An that represents the default event for this object, or null if this object does not have events. - - - - - Returns the default property for this instance of a component. - - - A that represents the default property for this object, or null if this object does not have properties. - - - - - Returns an editor of the specified type for this instance of a component. - - A that represents the editor for this object. - - An of the specified type that is the editor for this object, or null if the editor cannot be found. - - - - - Returns the events for this instance of a component using the specified attribute array as a filter. - - An array of type that is used as a filter. - - An that represents the filtered events for this component instance. - - - - - Returns the events for this instance of a component. - - - An that represents the events for this component instance. - - - - - Returns an object that contains the property described by the specified property descriptor. - - A that represents the property whose owner is to be found. - - An that represents the owner of the specified property. - - - - - Represents a JSON array. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the at the specified index. - - - - - - Determines the index of a specific item in the . - - The object to locate in the . - - The index of if found in the list; otherwise, -1. - - - - - Inserts an item to the at the specified index. - - The zero-based index at which should be inserted. - The object to insert into the . - - is not a valid index in the . - The is read-only. - - - - Removes the item at the specified index. - - The zero-based index of the item to remove. - - is not a valid index in the . - The is read-only. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Adds an item to the . - - The object to add to the . - The is read-only. - - - - Removes all items from the . - - The is read-only. - - - - Determines whether the contains a specific value. - - The object to locate in the . - - true if is found in the ; otherwise, false. - - - - - Copies to. - - The array. - Index of the array. - - - - Gets a value indicating whether the is read-only. - - true if the is read-only; otherwise, false. - - - - Removes the first occurrence of a specific object from the . - - The object to remove from the . - - true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . - - The is read-only. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets the at the reader's current position. - - - - - Initializes a new instance of the class. - - The token to read from. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Gets the path of the current JSON token. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets the at the writer's current position. - - - - - Gets the token being writen. - - The token being writen. - - - - Initializes a new instance of the class writing to the given . - - The container being written to. - - - - Initializes a new instance of the class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end. - - The token. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Represents an abstract JSON token. - - - - - Gets a comparer that can compare two tokens for value equality. - - A that can compare two nodes for value equality. - - - - Gets or sets the parent. - - The parent. - - - - Gets the root of this . - - The root of this . - - - - Gets the node type for this . - - The type. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Compares the values of two tokens, including the values of all descendant tokens. - - The first to compare. - The second to compare. - true if the tokens are equal; otherwise false. - - - - Gets the next sibling token of this node. - - The that contains the next sibling token. - - - - Gets the previous sibling token of this node. - - The that contains the previous sibling token. - - - - Gets the path of the JSON token. - - - - - Adds the specified content immediately after this token. - - A content object that contains simple content or a collection of content objects to be added after this token. - - - - Adds the specified content immediately before this token. - - A content object that contains simple content or a collection of content objects to be added before this token. - - - - Returns a collection of the ancestor tokens of this token. - - A collection of the ancestor tokens of this token. - - - - Returns a collection of tokens that contain this token, and the ancestors of this token. - - A collection of tokens that contain this token, and the ancestors of this token. - - - - Returns a collection of the sibling tokens after this token, in document order. - - A collection of the sibling tokens after this tokens, in document order. - - - - Returns a collection of the sibling tokens before this token, in document order. - - A collection of the sibling tokens before this token, in document order. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets the with the specified key converted to the specified type. - - The type to convert the token to. - The token key. - The converted token value. - - - - Get the first child token of this token. - - A containing the first child token of the . - - - - Get the last child token of this token. - - A containing the last child token of the . - - - - Returns a collection of the child tokens of this token, in document order. - - An of containing the child tokens of this , in document order. - - - - Returns a collection of the child tokens of this token, in document order, filtered by the specified type. - - The type to filter the child tokens on. - A containing the child tokens of this , in document order. - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - A containing the child values of this , in document order. - - - - Removes this token from its parent. - - - - - Replaces this token with the specified token. - - The value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Returns the indented JSON for this token. - - - The indented JSON for this token. - - - - - Returns the JSON for this token using the given formatting and converters. - - Indicates how the output is formatted. - A collection of which will be used when writing the token. - The JSON for this token using the given formatting and converters. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to []. - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from [] to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Creates an for this token. - - An that can be used to read this token and its descendants. - - - - Creates a from an object. - - The object that will be used to create . - A with the value of the specified object - - - - Creates a from an object using the specified . - - The object that will be used to create . - The that will be used when reading the object. - A with the value of the specified object - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A , or null. - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - A . - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - An that contains the selected elements. - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - An that contains the selected elements. - - - - Creates a new instance of the . All child tokens are recursively cloned. - - A new instance of the . - - - - Adds an object to the annotation list of this . - - The annotation to add. - - - - Get the first annotation object of the specified type from this . - - The type of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets the first annotation object of the specified type from this . - - The of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets a collection of annotations of the specified type for this . - - The type of the annotations to retrieve. - An that contains the annotations for this . - - - - Gets a collection of annotations of the specified type for this . - - The of the annotations to retrieve. - An of that contains the annotations that match the specified type for this . - - - - Removes the annotations of the specified type from this . - - The type of annotations to remove. - - - - Removes the annotations of the specified type from this . - - The of annotations to remove. - - - - Represents a JSON property. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the property name. - - The property name. - - - - Gets or sets the property value. - - The property value. - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Specifies the type of token. - - - - - No token type has been set. - - - - - A JSON object. - - - - - A JSON array. - - - - - A JSON constructor. - - - - - A JSON object property. - - - - - A comment. - - - - - An integer value. - - - - - A float value. - - - - - A string value. - - - - - A boolean value. - - - - - A null value. - - - - - An undefined value. - - - - - A date value. - - - - - A raw JSON value. - - - - - A collection of bytes value. - - - - - A Guid value. - - - - - A Uri value. - - - - - A TimeSpan value. - - - - - Represents a value in JSON (string, integer, date, etc). - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Creates a comment with the given value. - - The value. - A comment with the given value. - - - - Creates a string with the given value. - - The value. - A string with the given value. - - - - Creates a null value. - - A null value. - - - - Creates a undefined value. - - A undefined value. - - - - Gets the node type for this . - - The type. - - - - Gets or sets the underlying token value. - - The underlying token value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Indicates whether the current object is equal to another object of the same type. - - - true if the current object is equal to the parameter; otherwise, false. - - An object to compare with this object. - - - - Determines whether the specified is equal to the current . - - The to compare with the current . - - true if the specified is equal to the current ; otherwise, false. - - - The parameter is null. - - - - - Serves as a hash function for a particular type. - - - A hash code for the current . - - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. - - An object to compare with this instance. - - A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: - Value - Meaning - Less than zero - This instance is less than . - Zero - This instance is equal to . - Greater than zero - This instance is greater than . - - - is not the same type as this instance. - - - - - Specifies metadata property handling options for the . - - - - - Read metadata properties located at the start of a JSON object. - - - - - Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. - - - - - Do not try to read metadata properties. - - - - - Represents a trace writer that writes to the application's instances. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Provides methods to get attributes. - - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Represents a trace writer. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - The that will be used to filter the trace messages passed to the writer. - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Contract details for a used by the . - - - - - Gets or sets the default collection items . - - The converter. - - - - Gets or sets a value indicating whether the collection items preserve object references. - - true if collection items preserve object references; otherwise, false. - - - - Gets or sets the collection item reference loop handling. - - The reference loop handling. - - - - Gets or sets the collection item type name handling. - - The type name handling. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Represents a trace writer that writes to memory. When the trace message limit is - reached then old trace messages will be removed as new messages are added. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Initializes a new instance of the class. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Returns an enumeration of the most recent trace messages. - - An enumeration of the most recent trace messages. - - - - Returns a of the most recent trace messages. - - - A of the most recent trace messages. - - - - - Provides methods to get attributes from a , , or . - - - - - Initializes a new instance of the class. - - The instance to get attributes for. This parameter should be a , , or . - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Contract details for a used by the . - - - - - Gets or sets the ISerializable object constructor. - - The ISerializable object constructor. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Get and set values for a using dynamic methods. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Provides data for the Error event. - - - - - Gets the current object the error event is being raised against. - - The current object the error event is being raised against. - - - - Gets the error context. - - The error context. - - - - Initializes a new instance of the class. - - The current object. - The error context. - - - - Resolves member mappings for a type, camel casing property names. - - - - - Initializes a new instance of the class. - - - - - Resolves the name of the property. - - Name of the property. - The property name camel cased. - - - - Used by to resolves a for a given . - - - - - Gets a value indicating whether members are being get and set using dynamic code generation. - This value is determined by the runtime permissions available. - - - true if using dynamic code generation; otherwise, false. - - - - - Gets or sets the default members search flags. - - The default members search flags. - - - - Gets or sets a value indicating whether compiler generated members should be serialized. - - - true if serialized compiler generated members; otherwise, false. - - - - - Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. - - - true if the interface will be ignored when serializing and deserializing types; otherwise, false. - - - - - Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. - - - true if the attribute will be ignored when serializing and deserializing types; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - - If set to true the will use a cached shared with other resolvers of the same type. - Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only - happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different - results. When set to false it is highly recommended to reuse instances with the . - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Gets the serializable members for the type. - - The type to get serializable members for. - The serializable members for the type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates the constructor parameters. - - The constructor to create properties for. - The type's member properties. - Properties for the given . - - - - Creates a for the given . - - The matching member property. - The constructor parameter. - A created for the given . - - - - Resolves the default for the contract. - - Type of the object. - The contract's default . - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Determines which contract type is created for the given type. - - Type of the object. - A for the given type. - - - - Creates properties for the given . - - The type to create properties for. - /// The member serialization mode for the type. - Properties for the given . - - - - Creates the used by the serializer to get and set values from a member. - - The member. - The used by the serializer to get and set values from a member. - - - - Creates a for the given . - - The member's parent . - The member to create a for. - A created for the given . - - - - Resolves the name of the property. - - Name of the property. - Resolved name of the property. - - - - Resolves the key of the dictionary. By default is used to resolve dictionary keys. - - Key of the dictionary. - Resolved key of the dictionary. - - - - Gets the resolved name of the property. - - Name of the property. - Name of the property. - - - - The default serialization binder used when resolving and loading classes from type names. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - The type of the object the formatter creates a new instance of. - - - - - Provides information surrounding an error. - - - - - Gets the error. - - The error. - - - - Gets the original object that caused the error. - - The original object that caused the error. - - - - Gets the member that caused the error. - - The member that caused the error. - - - - Gets the path of the JSON location where the error occurred. - - The path of the JSON location where the error occurred. - - - - Gets or sets a value indicating whether this is handled. - - true if handled; otherwise, false. - - - - Used by to resolves a for a given . - - - - - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Provides methods to get and set values. - - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Contract details for a used by the . - - - - - Gets the of the collection items. - - The of the collection items. - - - - Gets a value indicating whether the collection type is a multidimensional array. - - true if the collection type is a multidimensional array; otherwise, false. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the collection values. - - true if the creator has a parameter with the collection values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Handles serialization callback events. - - The object that raised the callback event. - The streaming context. - - - - Handles serialization error callback events. - - The object that raised the callback event. - The streaming context. - The error context. - - - - Sets extension data for an object during deserialization. - - The object to set extension data on. - The extension data key. - The extension data value. - - - - Gets extension data for an object during serialization. - - The object to set extension data on. - - - - Contract details for a used by the . - - - - - Gets the underlying type for the contract. - - The underlying type for the contract. - - - - Gets or sets the type created during deserialization. - - The type created during deserialization. - - - - Gets or sets whether this type contract is serialized as a reference. - - Whether this type contract is serialized as a reference. - - - - Gets or sets the default for this contract. - - The converter. - - - - Gets or sets all methods called immediately after deserialization of the object. - - The methods called immediately after deserialization of the object. - - - - Gets or sets all methods called during deserialization of the object. - - The methods called during deserialization of the object. - - - - Gets or sets all methods called after serialization of the object graph. - - The methods called after serialization of the object graph. - - - - Gets or sets all methods called before serialization of the object. - - The methods called before serialization of the object. - - - - Gets or sets all method called when an error is thrown during the serialization of the object. - - The methods called when an error is thrown during the serialization of the object. - - - - Gets or sets the method called immediately after deserialization of the object. - - The method called immediately after deserialization of the object. - - - - Gets or sets the method called during deserialization of the object. - - The method called during deserialization of the object. - - - - Gets or sets the method called after serialization of the object graph. - - The method called after serialization of the object graph. - - - - Gets or sets the method called before serialization of the object. - - The method called before serialization of the object. - - - - Gets or sets the method called when an error is thrown during the serialization of the object. - - The method called when an error is thrown during the serialization of the object. - - - - Gets or sets the default creator method used to create the object. - - The default creator method used to create the object. - - - - Gets or sets a value indicating whether the default creator is non public. - - true if the default object creator is non-public; otherwise, false. - - - - Contract details for a used by the . - - - - - Gets or sets the property name resolver. - - The property name resolver. - - - - Gets or sets the dictionary key resolver. - - The dictionary key resolver. - - - - Gets the of the dictionary keys. - - The of the dictionary keys. - - - - Gets the of the dictionary values. - - The of the dictionary values. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the dictionary values. - - true if the creator has a parameter with the dictionary values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Maps a JSON property to a .NET member or constructor parameter. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the type that declared this property. - - The type that declared this property. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets the name of the underlying member or parameter. - - The name of the underlying member or parameter. - - - - Gets the that will get and set the during serialization. - - The that will get and set the during serialization. - - - - Gets or sets the for this property. - - The for this property. - - - - Gets or sets the type of the property. - - The type of the property. - - - - Gets or sets the for the property. - If set this converter takes presidence over the contract converter for the property type. - - The converter. - - - - Gets or sets the member converter. - - The member converter. - - - - Gets or sets a value indicating whether this is ignored. - - true if ignored; otherwise, false. - - - - Gets or sets a value indicating whether this is readable. - - true if readable; otherwise, false. - - - - Gets or sets a value indicating whether this is writable. - - true if writable; otherwise, false. - - - - Gets or sets a value indicating whether this has a member attribute. - - true if has a member attribute; otherwise, false. - - - - Gets the default value. - - The default value. - - - - Gets or sets a value indicating whether this is required. - - A value indicating whether this is required. - - - - Gets or sets a value indicating whether this property preserves object references. - - - true if this instance is reference; otherwise, false. - - - - - Gets or sets the property null value handling. - - The null value handling. - - - - Gets or sets the property default value handling. - - The default value handling. - - - - Gets or sets the property reference loop handling. - - The reference loop handling. - - - - Gets or sets the property object creation handling. - - The object creation handling. - - - - Gets or sets or sets the type name handling. - - The type name handling. - - - - Gets or sets a predicate used to determine whether the property should be serialize. - - A predicate used to determine whether the property should be serialize. - - - - Gets or sets a predicate used to determine whether the property should be deserialized. - - A predicate used to determine whether the property should be deserialized. - - - - Gets or sets a predicate used to determine whether the property should be serialized. - - A predicate used to determine whether the property should be serialized. - - - - Gets or sets an action used to set whether the property has been deserialized. - - An action used to set whether the property has been deserialized. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - A collection of objects. - - - - - Initializes a new instance of the class. - - The type. - - - - When implemented in a derived class, extracts the key from the specified element. - - The element from which to extract the key. - The key for the specified element. - - - - Adds a object. - - The property to add to the collection. - - - - Gets the closest matching object. - First attempts to get an exact case match of propertyName and then - a case insensitive match. - - Name of the property. - A matching property if found. - - - - Gets a property by property name. - - The name of the property to get. - Type property name string comparison. - A matching property if found. - - - - Used to resolve references when serializing and deserializing JSON by the . - - - - - Resolves a reference to its object. - - The serialization context. - The reference to resolve. - The object that - - - - Gets the reference for the sepecified object. - - The serialization context. - The object to get a reference for. - The reference to the object. - - - - Determines whether the specified object is referenced. - - The serialization context. - The object to test for a reference. - - true if the specified object is referenced; otherwise, false. - - - - - Adds a reference to the specified object. - - The serialization context. - The reference. - The object to reference. - - - - Contract details for a used by the . - - - - - Gets or sets the object member serialization. - - The member object serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Gets the object's properties. - - The object's properties. - - - - Gets the constructor parameters required for any non-default constructor - - - - - Gets a collection of instances that define the parameters used with . - - - - - Gets or sets the override constructor used to create the object. - This is set when a constructor is marked up using the - JsonConstructor attribute. - - The override constructor. - - - - Gets or sets the parametrized constructor used to create the object. - - The parametrized constructor. - - - - Gets or sets the function used to create the object. When set this function will override . - This function is called with a collection of arguments which are defined by the collection. - - The function used to create the object. - - - - Gets or sets the extension data setter. - - - - - Gets or sets the extension data getter. - - - - - Gets or sets the extension data value type. - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Lookup and create an instance of the JsonConverter type described by the argument. - - The JsonConverter type to create. - Optional arguments to pass to an initializing constructor of the JsonConverter. - If null, the default constructor is used. - - - - Create a factory function that can be used to create instances of a JsonConverter described by the - argument type. The returned function can then be used to either invoke the converter's default ctor, or any - parameterized constructors by way of an object array. - - - - - Get and set values for a using reflection. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - When applied to a method, specifies that the method is called when an error occurs serializing an object. - - - - - Represents a method that constructs an object. - - The object type to create. - - - - Specifies how strings are escaped when writing JSON text. - - - - - Only control characters (e.g. newline) are escaped. - - - - - All non-ASCII and control characters (e.g. newline) are escaped. - - - - - HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. - - - - - Converts the value to the specified type. If the value is unable to be converted, the - value is checked whether it assignable to the specified type. - - The value to convert. - The culture to use when converting. - The type to convert or cast the value to. - - The converted type. If conversion was unsuccessful, the initial value - is returned if assignable to the target type. - - - - - Gets a dictionary of the names and values of an Enum type. - - - - - - Gets a dictionary of the names and values of an Enum type. - - The enum type to get names and values for. - - - - - Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. - - - - - Determines whether the collection is null or empty. - - The collection. - - true if the collection is null or empty; otherwise, false. - - - - - Adds the elements of the specified collection to the specified generic IList. - - The list to add to. - The collection of elements to add. - - - - Gets the type of the typed collection's items. - - The type. - The type of the typed collection's items. - - - - Gets the member's underlying type. - - The member. - The underlying type of the member. - - - - Determines whether the member is an indexed property. - - The member. - - true if the member is an indexed property; otherwise, false. - - - - - Determines whether the property is an indexed property. - - The property. - - true if the property is an indexed property; otherwise, false. - - - - - Gets the member's value on the object. - - The member. - The target object. - The member's value on the object. - - - - Sets the member's value on the target object. - - The member. - The target. - The value. - - - - Determines whether the specified MemberInfo can be read. - - The MemberInfo to determine whether can be read. - /// if set to true then allow the member to be gotten non-publicly. - - true if the specified MemberInfo can be read; otherwise, false. - - - - - Determines whether the specified MemberInfo can be set. - - The MemberInfo to determine whether can be set. - if set to true then allow the member to be set non-publicly. - if set to true then allow the member to be set if read-only. - - true if the specified MemberInfo can be set; otherwise, false. - - - - - Determines whether the string is all white space. Empty string will return false. - - The string to test whether it is all white space. - - true if the string is all white space; otherwise, false. - - - - - Nulls an empty string. - - The string. - Null if the string was null, otherwise the string unchanged. - - - - Indicating whether a property is required. - - - - - The property is not required. The default state. - - - - - The property must be defined in JSON but can be a null value. - - - - - The property must be defined in JSON and cannot be a null value. - - - - - The property is not required but it cannot be a null value. - - - - - Specifies reference handling options for the . - Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. - - - - - - - - Do not preserve references when serializing types. - - - - - Preserve references when serializing into a JSON object structure. - - - - - Preserve references when serializing into a JSON array structure. - - - - - Preserve references when serializing. - - - - - Provides an interface to enable a class to return line and position information. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Gets the current line position. - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Instructs the how to serialize the collection. - - - - - Gets or sets a value indicating whether null items are allowed in the collection. - - true if null items are allowed in the collection; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with a flag indicating whether the array can contain null items - - A flag indicating whether the array can contain null items. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Instructs the how to serialize the object. - - - - - Gets or sets the id. - - The id. - - - - Gets or sets the title. - - The title. - - - - Gets or sets the description. - - The description. - - - - Gets the collection's items converter. - - The collection's items converter. - - - - The parameter list to use when constructing the JsonConverter described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, - order, and type of these parameters. - - - [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets a value that indicates whether to preserve object references. - - - true to keep object reference; otherwise, false. The default is false. - - - - - Gets or sets a value that indicates whether to preserve collection's items references. - - - true to keep collection's items object references; otherwise, false. The default is false. - - - - - Gets or sets the reference loop handling used when serializing the collection's items. - - The reference loop handling. - - - - Gets or sets the type name handling used when serializing the collection's items. - - The type name handling. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Specifies default value handling options for the . - - - - - - - - - Include members where the member value is the same as the member's default value when serializing objects. - Included members are written to JSON. Has no effect when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - so that is is not written to JSON. - This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, - decimals and floating point numbers; and false for booleans). The default value ignored can be changed by - placing the on the property. - - - - - Members with a default value but no JSON will be set to their default value when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - and sets members to their default value when deserializing. - - - - - Instructs the to use the specified when serializing the member or class. - - - - - Gets the of the converter. - - The of the converter. - - - - The parameter list to use when constructing the JsonConverter described by ConverterType. - If null, the default constructor is used. - - - - - Initializes a new instance of the class. - - Type of the converter. - - - - Initializes a new instance of the class. - - Type of the converter. - Parameter list to use when constructing the JsonConverter. Can be null. - - - - Instructs the how to serialize the object. - - - - - Gets or sets the member serialization. - - The member serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified member serialization. - - The member serialization. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Specifies the settings on a object. - - - - - Gets or sets how reference loops (e.g. a class referencing itself) is handled. - - Reference loop handling. - - - - Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - Missing member handling. - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how null values are handled during serialization and deserialization. - - Null value handling. - - - - Gets or sets how null default are handled during serialization and deserialization. - - The default value handling. - - - - Gets or sets a collection that will be used during serialization. - - The converters. - - - - Gets or sets how object references are preserved by the serializer. - - The preserve references handling. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - The type name handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - The contract resolver. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets the used by the serializer when resolving references. - - The reference resolver. - - - - Gets or sets a function that creates the used by the serializer when resolving references. - - A function that creates the used by the serializer when resolving references. - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the used by the serializer when resolving type names. - - The binder. - - - - Gets or sets the error handler called during serialization and deserialization. - - The error handler called during serialization and deserialization. - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets a value indicating whether there will be a check for additional content after deserializing an object. - - - true if there will be a check for additional content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Specifies the member serialization options for the . - - - - - All public members are serialized by default. Members can be excluded using or . - This is the default member serialization mode. - - - - - Only members marked with or are serialized. - This member serialization mode can also be set by marking the class with . - - - - - All public and private fields are serialized. Members can be excluded using or . - This member serialization mode can also be set by marking the class with - and setting IgnoreSerializableAttribute on to false. - - - - - Specifies how object creation is handled by the . - - - - - Reuse existing objects, create new objects when needed. - - - - - Only reuse existing objects. - - - - - Always create new objects. - - - - - Represents a reader that provides fast, non-cached, forward-only access to JSON text data. - - - - - Initializes a new instance of the class with the specified . - - The TextReader containing the XML data to read. - - - - Gets or sets the reader's character buffer pool. - - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Changes the state to closed. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Gets the current line position. - - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Instructs the to always serialize the member with the specified name. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - The parameter list to use when constructing the JsonConverter described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, - order, and type of these parameters. - - - [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets the null value handling used when serializing this property. - - The null value handling. - - - - Gets or sets the default value handling used when serializing this property. - - The default value handling. - - - - Gets or sets the reference loop handling used when serializing this property. - - The reference loop handling. - - - - Gets or sets the object creation handling used when deserializing this property. - - The object creation handling. - - - - Gets or sets the type name handling used when serializing this property. - - The type name handling. - - - - Gets or sets whether this property's value is serialized as a reference. - - Whether this property's value is serialized as a reference. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets a value indicating whether this property is required. - - - A value indicating whether this property is required. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified name. - - Name of the property. - - - - Instructs the not to serialize the public field or public read/write property value. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the writer's character array pool. - - - - - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. - - - - - Gets or sets which character to use to quote attribute values. - - - - - Gets or sets which character to use for indenting when is set to Formatting.Indented. - - - - - Gets or sets a value indicating whether object names will be surrounded with quotes. - - - - - Creates an instance of the JsonWriter class using the specified . - - The TextWriter to write to. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the specified end token. - - The end token to write. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Converts an object to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can read JSON. - - true if this can read JSON; otherwise, false. - - - - Gets a value indicating whether this can write JSON. - - true if this can write JSON; otherwise, false. - - - - Represents a collection of . - - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Specifies the state of the reader. - - - - - The Read method has not been called. - - - - - The end of the file has been reached successfully. - - - - - Reader is at a property. - - - - - Reader is at the start of an object. - - - - - Reader is in an object. - - - - - Reader is at the start of an array. - - - - - Reader is in an array. - - - - - The Close method has been called. - - - - - Reader has just read a value. - - - - - Reader is at the start of a constructor. - - - - - Reader in a constructor. - - - - - An error occurred that prevents the read operation from continuing. - - - - - The end of the file has been reached successfully. - - - - - Gets the current reader state. - - The current reader state. - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the reader is closed. - - - true to close the underlying stream or when - the reader is closed; otherwise false. The default is true. - - - - - Gets or sets a value indicating whether multiple pieces of JSON content can - be read from a continuous stream without erroring. - - - true to support reading multiple pieces of JSON content; otherwise false. The default is false. - - - - - Gets the quotation mark character used to enclose the value of a string. - - - - - Get or set how time zones are handling when reading JSON. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how custom date formatted strings are parsed when reading JSON. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets the type of the current JSON token. - - - - - Gets the text value of the current JSON token. - - - - - Gets The Common Language Runtime (CLR) type for the current JSON token. - - - - - Gets the depth of the current token in the JSON document. - - The depth of the current token in the JSON document. - - - - Gets the path of the current JSON token. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Initializes a new instance of the class with the specified . - - - - - Reads the next JSON token from the stream. - - true if the next token was read successfully; false if there are no more tokens to read. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Skips the children of the current token. - - - - - Sets the current token. - - The new token. - - - - Sets the current token and value. - - The new token. - The value. - - - - Sets the state based on current token type. - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Changes the to Closed. - - - - - Provides methods for converting between common language runtime types and JSON types. - - - - - - - - Gets or sets a function that creates default . - Default settings are automatically used by serialization methods on , - and and on . - To serialize without using any default settings create a with - . - - - - - Represents JavaScript's boolean value true as a string. This field is read-only. - - - - - Represents JavaScript's boolean value false as a string. This field is read-only. - - - - - Represents JavaScript's null as a string. This field is read-only. - - - - - Represents JavaScript's undefined as a string. This field is read-only. - - - - - Represents JavaScript's positive infinity as a string. This field is read-only. - - - - - Represents JavaScript's negative infinity as a string. This field is read-only. - - - - - Represents JavaScript's NaN as a string. This field is read-only. - - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - The time zone handling when the date is converted to a string. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - The string escape handling. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Serializes the specified object to a JSON string. - - The object to serialize. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting. - - The object to serialize. - Indicates how the output is formatted. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting and a collection of . - - The object to serialize. - Indicates how the output is formatted. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Deserializes the JSON to a .NET object. - - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to a .NET object using . - - The JSON to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The JSON to deserialize. - The of object being deserialized. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The type of the object to deserialize to. - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the given anonymous type. - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the given anonymous type using . - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The type of the object to deserialize to. - The JSON to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The type of the object to deserialize to. - The object to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The JSON to deserialize. - The type of the object to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The JSON to deserialize. - The type of the object to deserialize to. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Populates the object with values from the JSON string. - - The JSON to populate values from. - The target object to populate values onto. - - - - Populates the object with values from the JSON string using . - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - - - Serializes the XML node to a JSON string. - - The node to serialize. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string using formatting. - - The node to serialize. - Indicates how the output is formatted. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XmlNode. - - - - Deserializes the XmlNode from a JSON string. - - The JSON string. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XmlNode - - - - Serializes the to a JSON string. - - The node to convert to JSON. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting. - - The node to convert to JSON. - Indicates how the output is formatted. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XNode. - - - - Deserializes the from a JSON string. - - The JSON string. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XNode - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Serializes and deserializes objects into and from the JSON format. - The enables you to control how objects are encoded into JSON. - - - - - Occurs when the errors during serialization and deserialization. - - - - - Gets or sets the used by the serializer when resolving references. - - - - - Gets or sets the used by the serializer when resolving type names. - - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how object references are preserved by the serializer. - - - - - Get or set how reference loops (e.g. a class referencing itself) is handled. - - - - - Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - - - - Get or set how null values are handled during serialization and deserialization. - - - - - Get or set how null default are handled during serialization and deserialization. - - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets a collection that will be used during serialization. - - Collection that will be used during serialization. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. - - - true if there will be a check for additional JSON content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Creates a new instance. - The will not use default settings - from . - - - A new instance. - The will not use default settings - from . - - - - - Creates a new instance using the specified . - The will not use default settings - from . - - The settings to be applied to the . - - A new instance using the specified . - The will not use default settings - from . - - - - - Creates a new instance. - The will use default settings - from . - - - A new instance. - The will use default settings - from . - - - - - Creates a new instance using the specified . - The will use default settings - from as well as the specified . - - The settings to be applied to the . - - A new instance using the specified . - The will use default settings - from as well as the specified . - - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Deserializes the JSON structure contained by the specified . - - The that contains the JSON structure to deserialize. - The being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The type of the object to deserialize. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Specifies missing member handling options for the . - - - - - Ignore a missing member and do not attempt to deserialize it. - - - - - Throw a when a missing member is encountered during deserialization. - - - - - Specifies null value handling options for the . - - - - - - - - - Include null values when serializing and deserializing objects. - - - - - Ignore null values when serializing and deserializing objects. - - - - - Specifies reference loop handling options for the . - - - - - Throw a when a loop is encountered. - - - - - Ignore loop references and do not serialize. - - - - - Serialize loop references. - - - - - Specifies type name handling options for the . - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Do not include the .NET type name when serializing types. - - - - - Include the .NET type name when serializing into a JSON object structure. - - - - - Include the .NET type name when serializing into a JSON array structure. - - - - - Always include the .NET type name when serializing. - - - - - Include the .NET type name when the type of the object being serialized is not the same as its declared type. - - - - - Specifies the type of JSON token. - - - - - This is returned by the if a method has not been called. - - - - - An object start token. - - - - - An array start token. - - - - - A constructor start token. - - - - - An object property name. - - - - - A comment. - - - - - Raw JSON. - - - - - An integer. - - - - - A float. - - - - - A string. - - - - - A boolean. - - - - - A null token. - - - - - An undefined token. - - - - - An object end token. - - - - - An array end token. - - - - - A constructor end token. - - - - - A Date. - - - - - Byte data. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the writer is closed. - - - true to close the underlying stream or when - the writer is closed; otherwise false. The default is true. - - - - - Gets the top. - - The top. - - - - Gets the state of the writer. - - - - - Gets the path of the writer. - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling when writing JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written to JSON text. - - - - - Get or set how and values are formatting when writing JSON text. - - - - - Gets or sets the culture used when writing JSON. Defaults to . - - - - - Creates an instance of the JsonWriter class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the end of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the end of an array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end constructor. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes the end of the current JSON object or array. - - - - - Writes the current token and its children. - - The to read the token from. - - - - Writes the current token. - - The to read the token from. - A flag indicating whether the current token's children should be written. - - - - Writes the token and its value. - - The to write. - - The value to write. - A value is only required for tokens that have an associated value, e.g. the property name for . - A null value can be passed to the method for token's that don't have a value, e.g. . - - - - Writes the token. - - The to write. - - - - Writes the specified end token. - - The end token to write. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON without changing the writer's state. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Sets the state of the JsonWriter, - - The JsonToken being written. - The value being written. - - - - Specifies the state of the . - - - - - An exception has been thrown, which has left the in an invalid state. - You may call the method to put the in the Closed state. - Any other method calls results in an being thrown. - - - - - The method has been called. - - - - - An object is being written. - - - - - A array is being written. - - - - - A constructor is being written. - - - - - A property is being written. - - - - - A write method has not been called. - - - - diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML.meta deleted file mode 100644 index 17997c0..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.XML.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 094475dd9f47ada408904a510ad4e6e9 -timeCreated: 1510073635 -licenseType: Pro -TextScriptImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll deleted file mode 100644 index c8992dc..0000000 Binary files a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll and /dev/null differ diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll.meta deleted file mode 100644 index 4c513b5..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Standalone/Newtonsoft.Json.dll.meta +++ /dev/null @@ -1,145 +0,0 @@ -fileFormatVersion: 2 -guid: acee53287cd959c4491127f86dd6ebe6 -timeCreated: 1510073634 -licenseType: Pro -PluginImporter: - serializedVersion: 2 - iconMap: {} - executionOrder: {} - isPreloaded: 0 - isOverridable: 0 - platformData: - data: - first: - '': Any - second: - enabled: 0 - settings: - Exclude Android: 1 - Exclude Editor: 0 - Exclude Linux: 0 - Exclude Linux64: 0 - Exclude LinuxUniversal: 0 - Exclude OSXIntel: 0 - Exclude OSXIntel64: 0 - Exclude OSXUniversal: 0 - Exclude WebGL: 1 - Exclude Win: 0 - Exclude Win64: 0 - Exclude iOS: 1 - data: - first: - '': Editor - second: - enabled: 0 - settings: - CPU: AnyCPU - OS: AnyOS - data: - first: - Android: Android - second: - enabled: 0 - settings: - CPU: ARMv7 - data: - first: - Any: - second: - enabled: 0 - settings: {} - data: - first: - Editor: Editor - second: - enabled: 1 - settings: - DefaultValueInitialized: true - data: - first: - Facebook: Win - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Facebook: Win64 - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: Linux - second: - enabled: 1 - settings: - CPU: x86 - data: - first: - Standalone: Linux64 - second: - enabled: 1 - settings: - CPU: x86_64 - data: - first: - Standalone: LinuxUniversal - second: - enabled: 1 - settings: - CPU: AnyCPU - data: - first: - Standalone: OSXIntel - second: - enabled: 1 - settings: - CPU: AnyCPU - data: - first: - Standalone: OSXIntel64 - second: - enabled: 1 - settings: - CPU: AnyCPU - data: - first: - Standalone: OSXUniversal - second: - enabled: 1 - settings: - CPU: AnyCPU - data: - first: - Standalone: Win - second: - enabled: 1 - settings: - CPU: AnyCPU - data: - first: - Standalone: Win64 - second: - enabled: 1 - settings: - CPU: AnyCPU - data: - first: - Windows Store Apps: WindowsStoreApps - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - iPhone: iOS - second: - enabled: 0 - settings: - CompileFlags: - FrameworkDependencies: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows.meta deleted file mode 100644 index 39f6a58..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f347024a78e14094abda6e002caf60c2 -folderAsset: yes -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML deleted file mode 100644 index ed0eec5..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML +++ /dev/null @@ -1,7977 +0,0 @@ - - - - Newtonsoft.Json - - - - - Represents a BSON Oid (object id). - - - - - Gets or sets the value of the Oid. - - The value of the Oid. - - - - Initializes a new instance of the class. - - The Oid value. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. - - - true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. - - - - - Gets or sets a value indicating whether the root object will be read as a JSON array. - - - true if the root object will be read as a JSON array; otherwise, false. - - - - - Gets or sets the used when reading values from BSON. - - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The reader. - - - - Initializes a new instance of the class. - - The stream. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The reader. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Changes the to Closed. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the used when writing values to BSON. - When set to no conversion will occur. - - The used when writing values to BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The writer. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Writes the end. - - The token. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes the beginning of a JSON array. - - - - - Writes the beginning of a JSON object. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Closes this stream and the underlying stream. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value that represents a BSON object id. - - The Object ID value to write. - - - - Writes a BSON regex. - - The regex pattern. - The regex options. - - - - Specifies how constructors are used when initializing objects during deserialization by the . - - - - - First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. - - - - - Json.NET will use a non-public default constructor before falling back to a paramatized constructor. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Create a custom object - - The object type to convert. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Creates an object which will then be populated by the serializer. - - Type of the object. - The created object. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - - - - Provides a base class for converting a to and from JSON. - - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a F# discriminated union type to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - - - - - - - - - - - - - - Converts an ExpandoObject to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - - - - - - - - - - - Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). - - - - - Gets or sets the date time styles used when converting a date to and from JSON. - - The date time styles used when converting a date to and from JSON. - - - - Gets or sets the date time format used when converting a date to and from JSON. - - The date time format used when converting a date to and from JSON. - - - - Gets or sets the culture used when converting a date to and from JSON. - - The culture used when converting a date to and from JSON. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an to and from its name string value. - - - - - Gets or sets a value indicating whether the written enum text should be camel case. - - true if the written enum text will be camel case; otherwise, false. - - - - Gets or sets a value indicating whether integer values are allowed. - - true if integers are allowed; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - true if the written enum text will be camel case; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Json Converter for Vector2, Vector3 and Vector4. Only serializes x, y, (z) and (w) properties. - - - - - Default Constructor - All Vector types enabled by default - - - - - Selectively enable Vector types - - Use for Vector2 objects - Use for Vector3 objects - Use for Vector4 objects - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Converts a to and from a string (e.g. "1.2.3.4"). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts XML to and from JSON. - - - - - Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. - - The name of the deserialize root element. - - - - Gets or sets a flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - true if the array attibute is written to the XML; otherwise, false. - - - - Gets or sets a value indicating whether to write the root JSON object. - - true if the JSON root object is omitted; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The calling serializer. - The value. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Checks if the attributeName is a namespace attribute. - - Attribute name to test. - The attribute name prefix if it has one, otherwise an empty string. - True if attribute name is for a namespace attribute, otherwise false. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Specifies how dates are formatted when writing JSON text. - - - - - Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". - - - - - Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". - - - - - Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. - - - - - Date formatted strings are not parsed to a date type and are read as strings. - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Specifies how to treat the time value when converting between string and . - - - - - Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. - - - - - Treat as a UTC. If the object represents a local time, it is converted to a UTC. - - - - - Treat as a local time if a is being converted to a string. - If a string is being converted to , convert to a local time if a time zone is specified. - - - - - Time zone information should be preserved when converting. - - - - - Specifies default value handling options for the . - - - - - - - - - Include members where the member value is the same as the member's default value when serializing objects. - Included members are written to JSON. Has no effect when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - so that is is not written to JSON. - This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, - decimals and floating point numbers; and false for booleans). The default value ignored can be changed by - placing the on the property. - - - - - Members with a default value but no JSON will be set to their default value when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - and sets members to their default value when deserializing. - - - - - Specifies float format handling options when writing special floating point numbers, e.g. , - and with . - - - - - Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". - - - - - Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. - Note that this will produce non-valid JSON. - - - - - Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. - - - - - Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Floating point numbers are parsed to . - - - - - Floating point numbers are parsed to . - - - - - Specifies formatting options for the . - - - - - No special formatting is applied. This is the default. - - - - - Causes child objects to be indented according to the and settings. - - - - - Provides an interface for using pooled arrays. - - The array type content. - - - - Rent a array from the pool. This array must be returned when it is no longer needed. - - The minimum required length of the array. The returned array may be longer. - The rented array from the pool. This array must be returned when it is no longer needed. - - - - Return an array to the pool. - - The array that is being returned. - - - - Provides an interface to enable a class to return line and position information. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Gets the current line position. - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Instructs the how to serialize the collection. - - - - - Gets or sets a value indicating whether null items are allowed in the collection. - - true if null items are allowed in the collection; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with a flag indicating whether the array can contain null items - - A flag indicating whether the array can contain null items. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Instructs the to use the specified constructor when deserializing that object. - - - - - Instructs the how to serialize the object. - - - - - Gets or sets the id. - - The id. - - - - Gets or sets the title. - - The title. - - - - Gets or sets the description. - - The description. - - - - Gets the collection's items converter. - - The collection's items converter. - - - - The parameter list to use when constructing the JsonConverter described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, - order, and type of these parameters. - - - [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets a value that indicates whether to preserve object references. - - - true to keep object reference; otherwise, false. The default is false. - - - - - Gets or sets a value that indicates whether to preserve collection's items references. - - - true to keep collection's items object references; otherwise, false. The default is false. - - - - - Gets or sets the reference loop handling used when serializing the collection's items. - - The reference loop handling. - - - - Gets or sets the type name handling used when serializing the collection's items. - - The type name handling. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Provides methods for converting between common language runtime types and JSON types. - - - - - - - - Gets or sets a function that creates default . - Default settings are automatically used by serialization methods on , - and and on . - To serialize without using any default settings create a with - . - - - - - Represents JavaScript's boolean value true as a string. This field is read-only. - - - - - Represents JavaScript's boolean value false as a string. This field is read-only. - - - - - Represents JavaScript's null as a string. This field is read-only. - - - - - Represents JavaScript's undefined as a string. This field is read-only. - - - - - Represents JavaScript's positive infinity as a string. This field is read-only. - - - - - Represents JavaScript's negative infinity as a string. This field is read-only. - - - - - Represents JavaScript's NaN as a string. This field is read-only. - - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - The time zone handling when the date is converted to a string. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - The string escape handling. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Serializes the specified object to a JSON string. - - The object to serialize. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting. - - The object to serialize. - Indicates how the output is formatted. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting and a collection of . - - The object to serialize. - Indicates how the output is formatted. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Asynchronously serializes the specified object to a JSON string. - Serialization will happen on a new thread. - - The object to serialize. - - A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. - - - - - Asynchronously serializes the specified object to a JSON string using formatting. - Serialization will happen on a new thread. - - The object to serialize. - Indicates how the output is formatted. - - A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. - - - - - Asynchronously serializes the specified object to a JSON string using formatting and a collection of . - Serialization will happen on a new thread. - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. - - - - - Deserializes the JSON to a .NET object. - - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to a .NET object using . - - The JSON to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The JSON to deserialize. - The of object being deserialized. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The type of the object to deserialize to. - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the given anonymous type. - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the given anonymous type using . - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The type of the object to deserialize to. - The JSON to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The type of the object to deserialize to. - The object to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The JSON to deserialize. - The type of the object to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The JSON to deserialize. - The type of the object to deserialize to. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Asynchronously deserializes the JSON to the specified .NET type. - Deserialization will happen on a new thread. - - The type of the object to deserialize to. - The JSON to deserialize. - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Asynchronously deserializes the JSON to the specified .NET type using . - Deserialization will happen on a new thread. - - The type of the object to deserialize to. - The JSON to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Asynchronously deserializes the JSON to the specified .NET type. - Deserialization will happen on a new thread. - - The JSON to deserialize. - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Asynchronously deserializes the JSON to the specified .NET type using . - Deserialization will happen on a new thread. - - The JSON to deserialize. - The type of the object to deserialize to. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Populates the object with values from the JSON string. - - The JSON to populate values from. - The target object to populate values onto. - - - - Populates the object with values from the JSON string using . - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - - - Asynchronously populates the object with values from the JSON string using . - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - A task that represents the asynchronous populate operation. - - - - - Serializes the to a JSON string. - - The node to convert to JSON. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting. - - The node to convert to JSON. - Indicates how the output is formatted. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XNode. - - - - Deserializes the from a JSON string. - - The JSON string. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XNode - - - - Converts an object to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can read JSON. - - true if this can read JSON; otherwise, false. - - - - Gets a value indicating whether this can write JSON. - - true if this can write JSON; otherwise, false. - - - - Instructs the to use the specified when serializing the member or class. - - - - - Gets the of the converter. - - The of the converter. - - - - The parameter list to use when constructing the JsonConverter described by ConverterType. - If null, the default constructor is used. - - - - - Initializes a new instance of the class. - - Type of the converter. - - - - Initializes a new instance of the class. - - Type of the converter. - Parameter list to use when constructing the JsonConverter. Can be null. - - - - Represents a collection of . - - - - - Instructs the how to serialize the collection. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Instructs the to deserialize properties with no matching class member into the specified collection - and write values during serialization. - - - - - Gets or sets a value that indicates whether to write extension data when serializing the object. - - - true to write extension data when serializing the object; otherwise, false. The default is true. - - - - - Gets or sets a value that indicates whether to read extension data when deserializing the object. - - - true to read extension data when deserializing the object; otherwise, false. The default is true. - - - - - Initializes a new instance of the class. - - - - - Instructs the not to serialize the public field or public read/write property value. - - - - - Instructs the how to serialize the object. - - - - - Gets or sets the member serialization. - - The member serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified member serialization. - - The member serialization. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Instructs the to always serialize the member with the specified name. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - The parameter list to use when constructing the JsonConverter described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, - order, and type of these parameters. - - - [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets the null value handling used when serializing this property. - - The null value handling. - - - - Gets or sets the default value handling used when serializing this property. - - The default value handling. - - - - Gets or sets the reference loop handling used when serializing this property. - - The reference loop handling. - - - - Gets or sets the object creation handling used when deserializing this property. - - The object creation handling. - - - - Gets or sets the type name handling used when serializing this property. - - The type name handling. - - - - Gets or sets whether this property's value is serialized as a reference. - - Whether this property's value is serialized as a reference. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets a value indicating whether this property is required. - - - A value indicating whether this property is required. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified name. - - Name of the property. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Specifies the state of the reader. - - - - - The Read method has not been called. - - - - - The end of the file has been reached successfully. - - - - - Reader is at a property. - - - - - Reader is at the start of an object. - - - - - Reader is in an object. - - - - - Reader is at the start of an array. - - - - - Reader is in an array. - - - - - The Close method has been called. - - - - - Reader has just read a value. - - - - - Reader is at the start of a constructor. - - - - - Reader in a constructor. - - - - - An error occurred that prevents the read operation from continuing. - - - - - The end of the file has been reached successfully. - - - - - Gets the current reader state. - - The current reader state. - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the reader is closed. - - - true to close the underlying stream or when - the reader is closed; otherwise false. The default is true. - - - - - Gets or sets a value indicating whether multiple pieces of JSON content can - be read from a continuous stream without erroring. - - - true to support reading multiple pieces of JSON content; otherwise false. The default is false. - - - - - Gets the quotation mark character used to enclose the value of a string. - - - - - Get or set how time zones are handling when reading JSON. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how custom date formatted strings are parsed when reading JSON. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets the type of the current JSON token. - - - - - Gets the text value of the current JSON token. - - - - - Gets The Common Language Runtime (CLR) type for the current JSON token. - - - - - Gets the depth of the current token in the JSON document. - - The depth of the current token in the JSON document. - - - - Gets the path of the current JSON token. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Initializes a new instance of the class with the specified . - - - - - Reads the next JSON token from the stream. - - true if the next token was read successfully; false if there are no more tokens to read. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Skips the children of the current token. - - - - - Sets the current token. - - The new token. - - - - Sets the current token and value. - - The new token. - The value. - - - - Sets the state based on current token type. - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Changes the to Closed. - - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Instructs the to always serialize the member, and require the member has a value. - - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Serializes and deserializes objects into and from the JSON format. - The enables you to control how objects are encoded into JSON. - - - - - Occurs when the errors during serialization and deserialization. - - - - - Gets or sets the used by the serializer when resolving references. - - - - - Gets or sets the used by the serializer when resolving type names. - - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how object references are preserved by the serializer. - - - - - Get or set how reference loops (e.g. a class referencing itself) is handled. - - - - - Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - - - - Get or set how null values are handled during serialization and deserialization. - - - - - Get or set how null default are handled during serialization and deserialization. - - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets a collection that will be used during serialization. - - Collection that will be used during serialization. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. - - - true if there will be a check for additional JSON content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Creates a new instance. - The will not use default settings - from . - - - A new instance. - The will not use default settings - from . - - - - - Creates a new instance using the specified . - The will not use default settings - from . - - The settings to be applied to the . - - A new instance using the specified . - The will not use default settings - from . - - - - - Creates a new instance. - The will use default settings - from . - - - A new instance. - The will use default settings - from . - - - - - Creates a new instance using the specified . - The will use default settings - from as well as the specified . - - The settings to be applied to the . - - A new instance using the specified . - The will use default settings - from as well as the specified . - - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Deserializes the JSON structure contained by the specified . - - The that contains the JSON structure to deserialize. - The being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The type of the object to deserialize. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Specifies the settings on a object. - - - - - Gets or sets how reference loops (e.g. a class referencing itself) is handled. - - Reference loop handling. - - - - Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - Missing member handling. - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how null values are handled during serialization and deserialization. - - Null value handling. - - - - Gets or sets how null default are handled during serialization and deserialization. - - The default value handling. - - - - Gets or sets a collection that will be used during serialization. - - The converters. - - - - Gets or sets how object references are preserved by the serializer. - - The preserve references handling. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - The type name handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - The contract resolver. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets the used by the serializer when resolving references. - - The reference resolver. - - - - Gets or sets a function that creates the used by the serializer when resolving references. - - A function that creates the used by the serializer when resolving references. - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the used by the serializer when resolving type names. - - The binder. - - - - Gets or sets the error handler called during serialization and deserialization. - - The error handler called during serialization and deserialization. - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets a value indicating whether there will be a check for additional content after deserializing an object. - - - true if there will be a check for additional content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Represents a reader that provides fast, non-cached, forward-only access to JSON text data. - - - - - Initializes a new instance of the class with the specified . - - The TextReader containing the XML data to read. - - - - Gets or sets the reader's character buffer pool. - - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Changes the state to closed. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Gets the current line position. - - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the writer's character array pool. - - - - - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. - - - - - Gets or sets which character to use to quote attribute values. - - - - - Gets or sets which character to use for indenting when is set to Formatting.Indented. - - - - - Gets or sets a value indicating whether object names will be surrounded with quotes. - - - - - Creates an instance of the JsonWriter class using the specified . - - The TextWriter to write to. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the specified end token. - - The end token to write. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - Specifies the type of JSON token. - - - - - This is returned by the if a method has not been called. - - - - - An object start token. - - - - - An array start token. - - - - - A constructor start token. - - - - - An object property name. - - - - - A comment. - - - - - Raw JSON. - - - - - An integer. - - - - - A float. - - - - - A string. - - - - - A boolean. - - - - - A null token. - - - - - An undefined token. - - - - - An object end token. - - - - - An array end token. - - - - - A constructor end token. - - - - - A Date. - - - - - Byte data. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the writer is closed. - - - true to close the underlying stream or when - the writer is closed; otherwise false. The default is true. - - - - - Gets the top. - - The top. - - - - Gets the state of the writer. - - - - - Gets the path of the writer. - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling when writing JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written to JSON text. - - - - - Get or set how and values are formatting when writing JSON text. - - - - - Gets or sets the culture used when writing JSON. Defaults to . - - - - - Creates an instance of the JsonWriter class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the end of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the end of an array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end constructor. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes the end of the current JSON object or array. - - - - - Writes the current token and its children. - - The to read the token from. - - - - Writes the current token. - - The to read the token from. - A flag indicating whether the current token's children should be written. - - - - Writes the token and its value. - - The to write. - - The value to write. - A value is only required for tokens that have an associated value, e.g. the property name for . - A null value can be passed to the method for token's that don't have a value, e.g. . - - - - Writes the token. - - The to write. - - - - Writes the specified end token. - - The end token to write. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON without changing the writer's state. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Sets the state of the JsonWriter, - - The JsonToken being written. - The value being written. - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Specifies how JSON comments are handled when loading JSON. - - - - - Ignore comments. - - - - - Load comments as a with type . - - - - - Specifies how line information is handled when loading JSON. - - - - - Ignore line information. - - - - - Load line information. - - - - - Contains the LINQ to JSON extension methods. - - - - - Returns a collection of tokens that contains the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the descendants of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, and the descendants of every token in the source collection. - - - - Returns a collection of child properties of every object in the source collection. - - An of that contains the source collection. - An of that contains the properties of every object in the source collection. - - - - Returns a collection of child values of every object in the source collection with the given key. - - An of that contains the source collection. - The token key. - An of that contains the values of every token in the source collection with the given key. - - - - Returns a collection of child values of every object in the source collection. - - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child values of every object in the source collection with the given key. - - The type to convert the values to. - An of that contains the source collection. - The token key. - An that contains the converted values of every token in the source collection with the given key. - - - - Returns a collection of converted child values of every object in the source collection. - - The type to convert the values to. - An of that contains the source collection. - An that contains the converted values of every token in the source collection. - - - - Converts the value. - - The type to convert the value to. - A cast as a of . - A converted value. - - - - Converts the value. - - The source collection type. - The type to convert the value to. - A cast as a of . - A converted value. - - - - Returns a collection of child tokens of every array in the source collection. - - The source collection type. - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child tokens of every array in the source collection. - - An of that contains the source collection. - The type to convert the values to. - The source collection type. - An that contains the converted values of every token in the source collection. - - - - Returns the input typed as . - - An of that contains the source collection. - The input typed as . - - - - Returns the input typed as . - - The source collection type. - An of that contains the source collection. - The input typed as . - - - - Represents a collection of objects. - - The type of token - - - - Gets the with the specified key. - - - - - - Represents a JSON array. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the at the specified index. - - - - - - Determines the index of a specific item in the . - - The object to locate in the . - - The index of if found in the list; otherwise, -1. - - - - - Inserts an item to the at the specified index. - - The zero-based index at which should be inserted. - The object to insert into the . - - is not a valid index in the . - The is read-only. - - - - Removes the item at the specified index. - - The zero-based index of the item to remove. - - is not a valid index in the . - The is read-only. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Adds an item to the . - - The object to add to the . - The is read-only. - - - - Removes all items from the . - - The is read-only. - - - - Determines whether the contains a specific value. - - The object to locate in the . - - true if is found in the ; otherwise, false. - - - - - Copies to. - - The array. - Index of the array. - - - - Gets a value indicating whether the is read-only. - - true if the is read-only; otherwise, false. - - - - Removes the first occurrence of a specific object from the . - - The object to remove from the . - - true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . - - The is read-only. - - - - Represents a JSON constructor. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets or sets the name of this constructor. - - The constructor name. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name. - - The constructor name. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Represents a token that can contain other tokens. - - - - - Occurs when the items list of the collection has changed, or the collection is reset. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Raises the event. - - The instance containing the event data. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Get the first child token of this token. - - - A containing the first child token of the . - - - - - Get the last child token of this token. - - - A containing the last child token of the . - - - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - - A containing the child values of this , in document order. - - - - - Returns a collection of the descendant tokens for this token in document order. - - An containing the descendant tokens of the . - - - - Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. - - An containing this token, and all the descendant tokens of the . - - - - Adds the specified content as children of this . - - The content to be added. - - - - Adds the specified content as the first children of this . - - The content to be added. - - - - Creates an that can be used to add tokens to the . - - An that is ready to have content written to it. - - - - Replaces the children nodes of this token with the specified content. - - The content. - - - - Removes the child nodes from this token. - - - - - Merge the specified content into this . - - The content to be merged. - - - - Merge the specified content into this using . - - The content to be merged. - The used to merge the content. - - - - Gets the count of child JSON tokens. - - The count of child JSON tokens - - - - Represents a collection of objects. - - The type of token - - - - An empty collection of objects. - - - - - Initializes a new instance of the struct. - - The enumerable. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Gets the with the specified key. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Represents a JSON object. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Occurs when a property value changes. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Gets the node type for this . - - The type. - - - - Gets an of this object's properties. - - An of this object's properties. - - - - Gets a the specified name. - - The property name. - A with the specified name or null. - - - - Gets an of this object's property values. - - An of this object's property values. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the with the specified property name. - - - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified property name. - - Name of the property. - The with the specified property name. - - - - Gets the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - One of the enumeration values that specifies how the strings will be compared. - The with the specified property name. - - - - Tries to get the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - The value. - One of the enumeration values that specifies how the strings will be compared. - true if a value was successfully retrieved; otherwise, false. - - - - Adds the specified property name. - - Name of the property. - The value. - - - - Removes the property with the specified name. - - Name of the property. - true if item was successfully removed; otherwise, false. - - - - Tries the get value. - - Name of the property. - The value. - true if a value was successfully retrieved; otherwise, false. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Represents a JSON property. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the property name. - - The property name. - - - - Gets or sets the property value. - - The property value. - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Represents a raw JSON string. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class. - - The raw json. - - - - Creates an instance of with the content of the reader's current token. - - The reader. - An instance of with the content of the reader's current token. - - - - Specifies the settings used when loading JSON. - - - - - Gets or sets how JSON comments are handled when loading JSON. - - The JSON comment handling. - - - - Gets or sets how JSON line info is handled when loading JSON. - - The JSON line info handling. - - - - Specifies the settings used when merging JSON. - - - - - Gets or sets the method used when merging JSON arrays. - - The method used when merging JSON arrays. - - - - Gets or sets how how null value properties are merged. - - How null value properties are merged. - - - - Represents an abstract JSON token. - - - - - Gets a comparer that can compare two tokens for value equality. - - A that can compare two nodes for value equality. - - - - Gets or sets the parent. - - The parent. - - - - Gets the root of this . - - The root of this . - - - - Gets the node type for this . - - The type. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Compares the values of two tokens, including the values of all descendant tokens. - - The first to compare. - The second to compare. - true if the tokens are equal; otherwise false. - - - - Gets the next sibling token of this node. - - The that contains the next sibling token. - - - - Gets the previous sibling token of this node. - - The that contains the previous sibling token. - - - - Gets the path of the JSON token. - - - - - Adds the specified content immediately after this token. - - A content object that contains simple content or a collection of content objects to be added after this token. - - - - Adds the specified content immediately before this token. - - A content object that contains simple content or a collection of content objects to be added before this token. - - - - Returns a collection of the ancestor tokens of this token. - - A collection of the ancestor tokens of this token. - - - - Returns a collection of tokens that contain this token, and the ancestors of this token. - - A collection of tokens that contain this token, and the ancestors of this token. - - - - Returns a collection of the sibling tokens after this token, in document order. - - A collection of the sibling tokens after this tokens, in document order. - - - - Returns a collection of the sibling tokens before this token, in document order. - - A collection of the sibling tokens before this token, in document order. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets the with the specified key converted to the specified type. - - The type to convert the token to. - The token key. - The converted token value. - - - - Get the first child token of this token. - - A containing the first child token of the . - - - - Get the last child token of this token. - - A containing the last child token of the . - - - - Returns a collection of the child tokens of this token, in document order. - - An of containing the child tokens of this , in document order. - - - - Returns a collection of the child tokens of this token, in document order, filtered by the specified type. - - The type to filter the child tokens on. - A containing the child tokens of this , in document order. - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - A containing the child values of this , in document order. - - - - Removes this token from its parent. - - - - - Replaces this token with the specified token. - - The value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Returns the indented JSON for this token. - - - The indented JSON for this token. - - - - - Returns the JSON for this token using the given formatting and converters. - - Indicates how the output is formatted. - A collection of which will be used when writing the token. - The JSON for this token using the given formatting and converters. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to []. - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from [] to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Creates an for this token. - - An that can be used to read this token and its descendants. - - - - Creates a from an object. - - The object that will be used to create . - A with the value of the specified object - - - - Creates a from an object using the specified . - - The object that will be used to create . - The that will be used when reading the object. - A with the value of the specified object - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A , or null. - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - A . - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - An that contains the selected elements. - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - An that contains the selected elements. - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Creates a new instance of the . All child tokens are recursively cloned. - - A new instance of the . - - - - Adds an object to the annotation list of this . - - The annotation to add. - - - - Get the first annotation object of the specified type from this . - - The type of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets the first annotation object of the specified type from this . - - The of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets a collection of annotations of the specified type for this . - - The type of the annotations to retrieve. - An that contains the annotations for this . - - - - Gets a collection of annotations of the specified type for this . - - The of the annotations to retrieve. - An of that contains the annotations that match the specified type for this . - - - - Removes the annotations of the specified type from this . - - The type of annotations to remove. - - - - Removes the annotations of the specified type from this . - - The of annotations to remove. - - - - Compares tokens to determine whether they are equal. - - - - - Determines whether the specified objects are equal. - - The first object of type to compare. - The second object of type to compare. - - true if the specified objects are equal; otherwise, false. - - - - - Returns a hash code for the specified object. - - The for which a hash code is to be returned. - A hash code for the specified object. - The type of is a reference type and is null. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets the at the reader's current position. - - - - - Initializes a new instance of the class. - - The token to read from. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Gets the path of the current JSON token. - - - - - Specifies the type of token. - - - - - No token type has been set. - - - - - A JSON object. - - - - - A JSON array. - - - - - A JSON constructor. - - - - - A JSON object property. - - - - - A comment. - - - - - An integer value. - - - - - A float value. - - - - - A string value. - - - - - A boolean value. - - - - - A null value. - - - - - An undefined value. - - - - - A date value. - - - - - A raw JSON value. - - - - - A collection of bytes value. - - - - - A Guid value. - - - - - A Uri value. - - - - - A TimeSpan value. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets the at the writer's current position. - - - - - Gets the token being writen. - - The token being writen. - - - - Initializes a new instance of the class writing to the given . - - The container being written to. - - - - Initializes a new instance of the class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end. - - The token. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Represents a value in JSON (string, integer, date, etc). - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Creates a comment with the given value. - - The value. - A comment with the given value. - - - - Creates a string with the given value. - - The value. - A string with the given value. - - - - Creates a null value. - - A null value. - - - - Creates a undefined value. - - A undefined value. - - - - Gets the node type for this . - - The type. - - - - Gets or sets the underlying token value. - - The underlying token value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Indicates whether the current object is equal to another object of the same type. - - - true if the current object is equal to the parameter; otherwise, false. - - An object to compare with this object. - - - - Determines whether the specified is equal to the current . - - The to compare with the current . - - true if the specified is equal to the current ; otherwise, false. - - - The parameter is null. - - - - - Serves as a hash function for a particular type. - - - A hash code for the current . - - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. - - An object to compare with this instance. - - A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: - Value - Meaning - Less than zero - This instance is less than . - Zero - This instance is equal to . - Greater than zero - This instance is greater than . - - - is not the same type as this instance. - - - - - Specifies how JSON arrays are merged together. - - - - Concatenate arrays. - - - Union arrays, skipping items that already exist. - - - Replace all array items. - - - Merge array items together, matched by index. - - - - Specifies how null value properties are merged. - - - - - The content's null value properties will be ignored during merging. - - - - - The content's null value properties will be merged. - - - - - Specifies the member serialization options for the . - - - - - All public members are serialized by default. Members can be excluded using or . - This is the default member serialization mode. - - - - - Only members marked with or are serialized. - This member serialization mode can also be set by marking the class with . - - - - - All public and private fields are serialized. Members can be excluded using or . - This member serialization mode can also be set by marking the class with - and setting IgnoreSerializableAttribute on to false. - - - - - Specifies metadata property handling options for the . - - - - - Read metadata properties located at the start of a JSON object. - - - - - Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. - - - - - Do not try to read metadata properties. - - - - - Specifies missing member handling options for the . - - - - - Ignore a missing member and do not attempt to deserialize it. - - - - - Throw a when a missing member is encountered during deserialization. - - - - - Specifies null value handling options for the . - - - - - - - - - Include null values when serializing and deserializing objects. - - - - - Ignore null values when serializing and deserializing objects. - - - - - Specifies how object creation is handled by the . - - - - - Reuse existing objects, create new objects when needed. - - - - - Only reuse existing objects. - - - - - Always create new objects. - - - - - Specifies reference handling options for the . - Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. - - - - - - - - Do not preserve references when serializing types. - - - - - Preserve references when serializing into a JSON object structure. - - - - - Preserve references when serializing into a JSON array structure. - - - - - Preserve references when serializing. - - - - - Specifies reference loop handling options for the . - - - - - Throw a when a loop is encountered. - - - - - Ignore loop references and do not serialize. - - - - - Serialize loop references. - - - - - Indicating whether a property is required. - - - - - The property is not required. The default state. - - - - - The property must be defined in JSON but can be a null value. - - - - - The property must be defined in JSON and cannot be a null value. - - - - - The property is not required but it cannot be a null value. - - - - - Allows users to control class loading and mandate what class to load. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - Specifies the name of the serialized object. - Specifies the name of the serialized object - The type of the object the formatter creates a new instance of. - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - The type of the object the formatter creates a new instance of. - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - - - Resolves member mappings for a type, camel casing property names. - - - - - Initializes a new instance of the class. - - - - - Resolves the name of the property. - - Name of the property. - The property name camel cased. - - - - Get and set values for a using dynamic methods. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Used by to resolves a for a given . - - - - - Gets a value indicating whether members are being get and set using dynamic code generation. - This value is determined by the runtime permissions available. - - - true if using dynamic code generation; otherwise, false. - - - - - Gets or sets a value indicating whether compiler generated members should be serialized. - - - true if serialized compiler generated members; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - - If set to true the will use a cached shared with other resolvers of the same type. - Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only - happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different - results. When set to false it is highly recommended to reuse instances with the . - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Gets the serializable members for the type. - - The type to get serializable members for. - The serializable members for the type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates the constructor parameters. - - The constructor to create properties for. - The type's member properties. - Properties for the given . - - - - Creates a for the given . - - The matching member property. - The constructor parameter. - A created for the given . - - - - Resolves the default for the contract. - - Type of the object. - The contract's default . - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Determines which contract type is created for the given type. - - Type of the object. - A for the given type. - - - - Creates properties for the given . - - The type to create properties for. - /// The member serialization mode for the type. - Properties for the given . - - - - Creates the used by the serializer to get and set values from a member. - - The member. - The used by the serializer to get and set values from a member. - - - - Creates a for the given . - - The member's parent . - The member to create a for. - A created for the given . - - - - Resolves the name of the property. - - Name of the property. - Resolved name of the property. - - - - Resolves the key of the dictionary. By default is used to resolve dictionary keys. - - Key of the dictionary. - Resolved key of the dictionary. - - - - Gets the resolved name of the property. - - Name of the property. - Name of the property. - - - - The default serialization binder used when resolving and loading classes from type names. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - The type of the object the formatter creates a new instance of. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - The type of the object the formatter creates a new instance of. - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - - - Provides information surrounding an error. - - - - - Gets the error. - - The error. - - - - Gets the original object that caused the error. - - The original object that caused the error. - - - - Gets the member that caused the error. - - The member that caused the error. - - - - Gets the path of the JSON location where the error occurred. - - The path of the JSON location where the error occurred. - - - - Gets or sets a value indicating whether this is handled. - - true if handled; otherwise, false. - - - - Provides data for the Error event. - - - - - Gets the current object the error event is being raised against. - - The current object the error event is being raised against. - - - - Gets the error context. - - The error context. - - - - Initializes a new instance of the class. - - The current object. - The error context. - - - - Provides methods to get attributes. - - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Used by to resolves a for a given . - - - - - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Used to resolve references when serializing and deserializing JSON by the . - - - - - Resolves a reference to its object. - - The serialization context. - The reference to resolve. - The object that - - - - Gets the reference for the sepecified object. - - The serialization context. - The object to get a reference for. - The reference to the object. - - - - Determines whether the specified object is referenced. - - The serialization context. - The object to test for a reference. - - true if the specified object is referenced; otherwise, false. - - - - - Adds a reference to the specified object. - - The serialization context. - The reference. - The object to reference. - - - - Represents a trace writer. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - The that will be used to filter the trace messages passed to the writer. - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Provides methods to get and set values. - - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Contract details for a used by the . - - - - - Gets the of the collection items. - - The of the collection items. - - - - Gets a value indicating whether the collection type is a multidimensional array. - - true if the collection type is a multidimensional array; otherwise, false. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the collection values. - - true if the creator has a parameter with the collection values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets or sets the default collection items . - - The converter. - - - - Gets or sets a value indicating whether the collection items preserve object references. - - true if collection items preserve object references; otherwise, false. - - - - Gets or sets the collection item reference loop handling. - - The reference loop handling. - - - - Gets or sets the collection item type name handling. - - The type name handling. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Handles serialization callback events. - - The object that raised the callback event. - The streaming context. - - - - Handles serialization error callback events. - - The object that raised the callback event. - The streaming context. - The error context. - - - - Sets extension data for an object during deserialization. - - The object to set extension data on. - The extension data key. - The extension data value. - - - - Gets extension data for an object during serialization. - - The object to set extension data on. - - - - Contract details for a used by the . - - - - - Gets the underlying type for the contract. - - The underlying type for the contract. - - - - Gets or sets the type created during deserialization. - - The type created during deserialization. - - - - Gets or sets whether this type contract is serialized as a reference. - - Whether this type contract is serialized as a reference. - - - - Gets or sets the default for this contract. - - The converter. - - - - Gets or sets all methods called immediately after deserialization of the object. - - The methods called immediately after deserialization of the object. - - - - Gets or sets all methods called during deserialization of the object. - - The methods called during deserialization of the object. - - - - Gets or sets all methods called after serialization of the object graph. - - The methods called after serialization of the object graph. - - - - Gets or sets all methods called before serialization of the object. - - The methods called before serialization of the object. - - - - Gets or sets all method called when an error is thrown during the serialization of the object. - - The methods called when an error is thrown during the serialization of the object. - - - - Gets or sets the method called immediately after deserialization of the object. - - The method called immediately after deserialization of the object. - - - - Gets or sets the method called during deserialization of the object. - - The method called during deserialization of the object. - - - - Gets or sets the method called after serialization of the object graph. - - The method called after serialization of the object graph. - - - - Gets or sets the method called before serialization of the object. - - The method called before serialization of the object. - - - - Gets or sets the method called when an error is thrown during the serialization of the object. - - The method called when an error is thrown during the serialization of the object. - - - - Gets or sets the default creator method used to create the object. - - The default creator method used to create the object. - - - - Gets or sets a value indicating whether the default creator is non public. - - true if the default object creator is non-public; otherwise, false. - - - - Contract details for a used by the . - - - - - Gets or sets the property name resolver. - - The property name resolver. - - - - Gets or sets the dictionary key resolver. - - The dictionary key resolver. - - - - Gets the of the dictionary keys. - - The of the dictionary keys. - - - - Gets the of the dictionary values. - - The of the dictionary values. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the dictionary values. - - true if the creator has a parameter with the dictionary values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets the object's properties. - - The object's properties. - - - - Gets or sets the property name resolver. - - The property name resolver. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets or sets the object member serialization. - - The member object serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Gets the object's properties. - - The object's properties. - - - - Gets the constructor parameters required for any non-default constructor - - - - - Gets a collection of instances that define the parameters used with . - - - - - Gets or sets the override constructor used to create the object. - This is set when a constructor is marked up using the - JsonConstructor attribute. - - The override constructor. - - - - Gets or sets the parametrized constructor used to create the object. - - The parametrized constructor. - - - - Gets or sets the function used to create the object. When set this function will override . - This function is called with a collection of arguments which are defined by the collection. - - The function used to create the object. - - - - Gets or sets the extension data setter. - - - - - Gets or sets the extension data getter. - - - - - Gets or sets the extension data value type. - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Maps a JSON property to a .NET member or constructor parameter. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the type that declared this property. - - The type that declared this property. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets the name of the underlying member or parameter. - - The name of the underlying member or parameter. - - - - Gets the that will get and set the during serialization. - - The that will get and set the during serialization. - - - - Gets or sets the for this property. - - The for this property. - - - - Gets or sets the type of the property. - - The type of the property. - - - - Gets or sets the for the property. - If set this converter takes presidence over the contract converter for the property type. - - The converter. - - - - Gets or sets the member converter. - - The member converter. - - - - Gets or sets a value indicating whether this is ignored. - - true if ignored; otherwise, false. - - - - Gets or sets a value indicating whether this is readable. - - true if readable; otherwise, false. - - - - Gets or sets a value indicating whether this is writable. - - true if writable; otherwise, false. - - - - Gets or sets a value indicating whether this has a member attribute. - - true if has a member attribute; otherwise, false. - - - - Gets the default value. - - The default value. - - - - Gets or sets a value indicating whether this is required. - - A value indicating whether this is required. - - - - Gets or sets a value indicating whether this property preserves object references. - - - true if this instance is reference; otherwise, false. - - - - - Gets or sets the property null value handling. - - The null value handling. - - - - Gets or sets the property default value handling. - - The default value handling. - - - - Gets or sets the property reference loop handling. - - The reference loop handling. - - - - Gets or sets the property object creation handling. - - The object creation handling. - - - - Gets or sets or sets the type name handling. - - The type name handling. - - - - Gets or sets a predicate used to determine whether the property should be serialize. - - A predicate used to determine whether the property should be serialize. - - - - Gets or sets a predicate used to determine whether the property should be deserialized. - - A predicate used to determine whether the property should be deserialized. - - - - Gets or sets a predicate used to determine whether the property should be serialized. - - A predicate used to determine whether the property should be serialized. - - - - Gets or sets an action used to set whether the property has been deserialized. - - An action used to set whether the property has been deserialized. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - A collection of objects. - - - - - Initializes a new instance of the class. - - The type. - - - - When implemented in a derived class, extracts the key from the specified element. - - The element from which to extract the key. - The key for the specified element. - - - - Adds a object. - - The property to add to the collection. - - - - Gets the closest matching object. - First attempts to get an exact case match of propertyName and then - a case insensitive match. - - Name of the property. - A matching property if found. - - - - Gets a property by property name. - - The name of the property to get. - Type property name string comparison. - A matching property if found. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Lookup and create an instance of the JsonConverter type described by the argument. - - The JsonConverter type to create. - Optional arguments to pass to an initializing constructor of the JsonConverter. - If null, the default constructor is used. - - - - Create a factory function that can be used to create instances of a JsonConverter described by the - argument type. The returned function can then be used to either invoke the converter's default ctor, or any - parameterized constructors by way of an object array. - - - - - Represents a trace writer that writes to memory. When the trace message limit is - reached then old trace messages will be removed as new messages are added. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Initializes a new instance of the class. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Returns an enumeration of the most recent trace messages. - - An enumeration of the most recent trace messages. - - - - Returns a of the most recent trace messages. - - - A of the most recent trace messages. - - - - - Represents a method that constructs an object. - - The object type to create. - - - - When applied to a method, specifies that the method is called when an error occurs serializing an object. - - - - - Provides methods to get attributes from a , , or . - - - - - Initializes a new instance of the class. - - The instance to get attributes for. This parameter should be a , , or . - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Get and set values for a using reflection. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Specifies how strings are escaped when writing JSON text. - - - - - Only control characters (e.g. newline) are escaped. - - - - - All non-ASCII and control characters (e.g. newline) are escaped. - - - - - HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. - - - - - Specifies what messages to output for the class. - - - - - Output no tracing and debugging messages. - - - - - Output error-handling messages. - - - - - Output warnings and error-handling messages. - - - - - Output informational messages, warnings, and error-handling messages. - - - - - Output all debugging and tracing messages. - - - - - Specifies type name handling options for the . - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Do not include the .NET type name when serializing types. - - - - - Include the .NET type name when serializing into a JSON object structure. - - - - - Include the .NET type name when serializing into a JSON array structure. - - - - - Always include the .NET type name when serializing. - - - - - Include the .NET type name when the type of the object being serialized is not the same as its declared type. - - - - - Determines whether the collection is null or empty. - - The collection. - - true if the collection is null or empty; otherwise, false. - - - - - Adds the elements of the specified collection to the specified generic IList. - - The list to add to. - The collection of elements to add. - - - - Converts the value to the specified type. If the value is unable to be converted, the - value is checked whether it assignable to the specified type. - - The value to convert. - The culture to use when converting. - The type to convert or cast the value to. - - The converted type. If conversion was unsuccessful, the initial value - is returned if assignable to the target type. - - - - - Helper method for generating a MetaObject which calls a - specific method on Dynamic that returns a result - - - - - Helper method for generating a MetaObject which calls a - specific method on Dynamic, but uses one of the arguments for - the result. - - - - - Helper method for generating a MetaObject which calls a - specific method on Dynamic, but uses one of the arguments for - the result. - - - - - Returns a Restrictions object which includes our current restrictions merged - with a restriction limiting our type - - - - - Gets a dictionary of the names and values of an Enum type. - - - - - - Gets a dictionary of the names and values of an Enum type. - - The enum type to get names and values for. - - - - - Gets the type of the typed collection's items. - - The type. - The type of the typed collection's items. - - - - Gets the member's underlying type. - - The member. - The underlying type of the member. - - - - Determines whether the member is an indexed property. - - The member. - - true if the member is an indexed property; otherwise, false. - - - - - Determines whether the property is an indexed property. - - The property. - - true if the property is an indexed property; otherwise, false. - - - - - Gets the member's value on the object. - - The member. - The target object. - The member's value on the object. - - - - Sets the member's value on the target object. - - The member. - The target. - The value. - - - - Determines whether the specified MemberInfo can be read. - - The MemberInfo to determine whether can be read. - /// if set to true then allow the member to be gotten non-publicly. - - true if the specified MemberInfo can be read; otherwise, false. - - - - - Determines whether the specified MemberInfo can be set. - - The MemberInfo to determine whether can be set. - if set to true then allow the member to be set non-publicly. - if set to true then allow the member to be set if read-only. - - true if the specified MemberInfo can be set; otherwise, false. - - - - - Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. - - - - - Determines whether the string is all white space. Empty string will return false. - - The string to test whether it is all white space. - - true if the string is all white space; otherwise, false. - - - - - Nulls an empty string. - - The string. - Null if the string was null, otherwise the string unchanged. - - - - Specifies the state of the . - - - - - An exception has been thrown, which has left the in an invalid state. - You may call the method to put the in the Closed state. - Any other method calls results in an being thrown. - - - - - The method has been called. - - - - - An object is being written. - - - - - A array is being written. - - - - - A constructor is being written. - - - - - A property is being written. - - - - - A write method has not been called. - - - - - Indicates the method that will be used during deserialization for locating and loading assemblies. - - - - - In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly. - - - - - In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly. - - - - diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML.meta deleted file mode 100644 index 581a7e0..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.XML.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 09cb941ab4e74b94d9372fed282605ca -timeCreated: 1510073635 -licenseType: Pro -TextScriptImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll deleted file mode 100644 index 7d47291..0000000 Binary files a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll and /dev/null differ diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll.meta deleted file mode 100644 index 0d00177..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/Assemblies/Windows/Newtonsoft.Json.dll.meta +++ /dev/null @@ -1,145 +0,0 @@ -fileFormatVersion: 2 -guid: 767825aebabe28f4d994e8610a2ebea2 -timeCreated: 1510073628 -licenseType: Pro -PluginImporter: - serializedVersion: 2 - iconMap: {} - executionOrder: {} - isPreloaded: 0 - isOverridable: 0 - platformData: - data: - first: - '': Any - second: - enabled: 0 - settings: - Exclude Android: 1 - Exclude Editor: 1 - Exclude Linux: 1 - Exclude Linux64: 1 - Exclude LinuxUniversal: 1 - Exclude OSXIntel: 1 - Exclude OSXIntel64: 1 - Exclude OSXUniversal: 1 - Exclude WebGL: 1 - Exclude Win: 1 - Exclude Win64: 1 - Exclude iOS: 1 - data: - first: - '': Editor - second: - enabled: 0 - settings: - CPU: AnyCPU - OS: AnyOS - data: - first: - Android: Android - second: - enabled: 0 - settings: - CPU: ARMv7 - data: - first: - Any: - second: - enabled: 0 - settings: {} - data: - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - data: - first: - Facebook: Win - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Facebook: Win64 - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: Linux - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: Linux64 - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: LinuxUniversal - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: OSXIntel - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: OSXIntel64 - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: OSXUniversal - second: - enabled: 0 - settings: - CPU: None - data: - first: - Standalone: Win - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Standalone: Win64 - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - Windows Store Apps: WindowsStoreApps - second: - enabled: 0 - settings: - CPU: AnyCPU - data: - first: - iPhone: iOS - second: - enabled: 0 - settings: - CompileFlags: - FrameworkDependencies: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE deleted file mode 100644 index d42a53d..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017 parentelement - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE.meta deleted file mode 100644 index 6b5adc5..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/LICENSE.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6ece906468b240b4683b1e5aeb0f96d9 -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA deleted file mode 100644 index cb3da57..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA +++ /dev/null @@ -1,19 +0,0 @@ -name: "Json-NET-for-Unity" -description: - "JSON parsing library for Unity based on JSON.NET." - -third_party { - url { - type: HOMEPAGE - value: "https://github.com/ianmacgillivray/Json-NET-for-Unity/" - } - url { - type: GIT - value: "https://github.com/ianmacgillivray/Json-NET-for-Unity/" - } - version: "0b8416150e0a72df2ce91c97169275806f9e1515" - last_upgrade_date { year: 2017 month: 11 day: 7 } - license_type: NOTICE - local_modifications: - "Built DLLs locally from source, placed them in Assemblies/" -} diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA.meta deleted file mode 100644 index 0202a7d..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/METADATA.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9d10861831321b241b98579f39aeec23 -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md deleted file mode 100644 index 09739d3..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Json-NET-for-Unity - -https://github.com/ianmacgillivray/Json-NET-for-Unity/ - diff --git a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md.meta b/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md.meta deleted file mode 100644 index f330922..0000000 --- a/Assets/PolyToolkit/ThirdParty/Json-NET-for-Unity/README.md.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8772094ea4a463f4d9e21676d0c11887 -timeCreated: 1510073616 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/TestScenes.meta b/Assets/TestScenes.meta index ddce233..e413d43 100644 --- a/Assets/TestScenes.meta +++ b/Assets/TestScenes.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 66be44fbf9d753e47ae88fb6afa1054a folderAsset: yes -timeCreated: 1507905201 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/TestScenes/PolyToolkitCmd.meta b/Assets/TestScenes/PolyToolkitCmd.meta index d5e699b..03c132e 100644 --- a/Assets/TestScenes/PolyToolkitCmd.meta +++ b/Assets/TestScenes/PolyToolkitCmd.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: f9320c89306844e4f90d93b4a8414bdf folderAsset: yes -timeCreated: 1507908274 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/TestScenes/PolyToolkitCmd/CopyRectTransformSize.cs.meta b/Assets/TestScenes/PolyToolkitCmd/CopyRectTransformSize.cs.meta index c84b126..34726f5 100644 --- a/Assets/TestScenes/PolyToolkitCmd/CopyRectTransformSize.cs.meta +++ b/Assets/TestScenes/PolyToolkitCmd/CopyRectTransformSize.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 7f3944cd0e6bec44a8a8e645f926da52 -timeCreated: 1507910985 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/TestScenes/PolyToolkitCmd/Grid.mat b/Assets/TestScenes/PolyToolkitCmd/Grid.mat index 2907f6c..dc674f6 100644 --- a/Assets/TestScenes/PolyToolkitCmd/Grid.mat +++ b/Assets/TestScenes/PolyToolkitCmd/Grid.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Grid m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_ShaderKeywords: diff --git a/Assets/TestScenes/PolyToolkitCmd/Grid.mat.meta b/Assets/TestScenes/PolyToolkitCmd/Grid.mat.meta index 6f5b9c5..1adc17d 100644 --- a/Assets/TestScenes/PolyToolkitCmd/Grid.mat.meta +++ b/Assets/TestScenes/PolyToolkitCmd/Grid.mat.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: bd9c6d1742ea724438db68c4c84d11df -timeCreated: 1507909296 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 2100000 userData: assetBundleName: diff --git a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs index 9ee5679..da5a687 100644 --- a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs +++ b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs @@ -29,6 +29,7 @@ namespace PolyToolkitDev { /// public class PolyToolkitCmd : MonoBehaviour { // These credentials are from a test project. Not the Poly Toolkit official project. + private string BASE_URL = "https://icosa-api-django.ixxy.co.uk"; private string API_KEY = "AIzaSyDfWJ9E2Vgee4hHnyNB6zV3WRf5L5unfZs"; private string CLIENT_ID = "110645446910-8duhhimg4ups5k45vsri2de8ndlnni86.apps.googleusercontent.com"; private string CLIENT_SECRET = "n0ctCDTVn4xxkws9_BKgnle7"; @@ -159,7 +160,7 @@ Shows the assets we got in the last list request. // The asset we're currently displaying. private GameObject currentAsset = null; - + private Image userProfileImage = null; private Image imageDisplay = null; @@ -188,13 +189,13 @@ private void Start() { // Initialize Poly. We do this explicit initialization rather than have a PolyToolkitManager on the // scene because we want to use a specific API key that's not the one that's configured in PtSettings // (since we want to keep PtSettings uninitialized for the user to fill in). - PolyApi.Init(new PolyAuthConfig(API_KEY, CLIENT_ID, CLIENT_SECRET)); + PolyApi.Init(new PolyAuthConfig(BASE_URL, API_KEY, CLIENT_ID, CLIENT_SECRET)); } private void OnDisable() { Application.logMessageReceivedThreaded -= HandleLogThreaded; } - + private static T ComponentById(string id) where T : Component { GameObject obj = GameObject.Find(id); if (obj == null) throw new Exception("Can't find object with ID " + id); @@ -236,7 +237,7 @@ private void UpdateDragging() { Vector3 mouseDelta = Input.mousePosition - dragAnchor; float normDeltaX = -mouseDelta.x / Screen.width; float normDeltaY = mouseDelta.y / Screen.height; - + currentAsset.transform.rotation = rotationOnDragStart; currentAsset.transform.Rotate(normDeltaY * ROTATION_SENSIVITY, normDeltaX * ROTATION_SENSIVITY, 0, Space.World); @@ -267,7 +268,7 @@ private void PrintLn(string text = "", params object[] args) { private void RunCommand(string command) { command = command.Trim(); if (command.Length < 1) return; - + // Find the verb (first word). string verb; string[] args; @@ -415,7 +416,7 @@ private void CmdAuth(string[] args) { PrintLn("Requested sign out."); break; case "cancel": - PrintLn("Requesting to cancel auth."); + PrintLn("Requesting to cancel auth."); PolyApi.CancelAuthentication(); break; case "status": @@ -430,7 +431,7 @@ private void CmdAuth(string[] args) { private void CmdList(string[] args) { PolyListAssetsRequest req; - + if (args.Length > 0 && args[0] == "featured") { // Default list request (featured). req = PolyListAssetsRequest.Featured(); @@ -475,7 +476,7 @@ private void CmdList(string[] args) { private void CmdListMy(string[] args) { PolyListUserAssetsRequest req; - + if (args.Length > 0 && args[0] == "newest") { // Default list request (newest). req = PolyListUserAssetsRequest.MyNewest(); @@ -602,7 +603,7 @@ private void CmdClear(string[] args) { private void CmdThumb(string[] args) { int index; if (args.Length == 0 || !int.TryParse(args[0], out index) || index < 0 || index >= currentResults.Count) { - PrintLn("*** Invalid index. Please specify the index of the asset whose thumbnail " + + PrintLn("*** Invalid index. Please specify the index of the asset whose thumbnail " + "you wish to load (use the 'show' command to show the results)."); return; } diff --git a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs.meta b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs.meta index 476dc69..f405fcf 100644 --- a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs.meta +++ b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 0ec03136213897846857b83ee5acfc2d -timeCreated: 1507910985 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity index 6070585..98f4d26 100644 --- a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity +++ b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -38,31 +38,31 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_IndirectSpecularColor: {r: 0.090408064, g: 0.058549225, b: 0.17860934, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 1 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -71,23 +71,34 @@ LightmapSettings: m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 - m_MixedBakeMode: 3 + m_MixedBakeMode: 2 m_BakeBackend: 0 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 1 --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -107,13 +118,16 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} --- !u!1 &22591129 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 22591130} - component: {fileID: 22591132} @@ -128,8 +142,9 @@ GameObject: --- !u!224 &22591130 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 22591129} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -146,22 +161,22 @@ RectTransform: --- !u!114 &22591131 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 22591129} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 96a7fdf6b3072d0469dc810ce094088b, type: 3} m_FontSize: 14 @@ -179,15 +194,18 @@ MonoBehaviour: --- !u!222 &22591132 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 22591129} + m_CullTransparentMesh: 0 --- !u!1 &39348763 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 39348767} - component: {fileID: 39348766} @@ -204,12 +222,13 @@ GameObject: --- !u!114 &39348764 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 39348763} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} m_Name: m_EditorClassIdentifier: m_IgnoreReversedGraphics: 1 @@ -220,12 +239,13 @@ MonoBehaviour: --- !u!114 &39348765 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 39348763} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} m_Name: m_EditorClassIdentifier: m_UiScaleMode: 0 @@ -241,8 +261,9 @@ MonoBehaviour: --- !u!223 &39348766 Canvas: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 39348763} m_Enabled: 1 serializedVersion: 3 @@ -261,8 +282,9 @@ Canvas: --- !u!224 &39348767 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 39348763} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -288,8 +310,9 @@ RectTransform: --- !u!114 &39348768 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 39348763} m_Enabled: 1 m_EditorHideFlags: 0 @@ -299,9 +322,10 @@ MonoBehaviour: --- !u!1 &54339716 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 54339717} - component: {fileID: 54339720} @@ -317,8 +341,9 @@ GameObject: --- !u!224 &54339717 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 54339716} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -338,22 +363,22 @@ RectTransform: --- !u!114 &54339718 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 54339716} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0, g: 0, b: 0, a: 0} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 0} m_Type: 1 m_PreserveAspect: 0 @@ -362,21 +387,26 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &54339719 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 54339716} + m_CullTransparentMesh: 0 --- !u!114 &54339720 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 54339716} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} m_Name: m_EditorClassIdentifier: m_Content: {fileID: 320943045} @@ -397,14 +427,13 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.ScrollRect+ScrollRectEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!1 &68391992 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 68391994} - component: {fileID: 68391993} @@ -418,16 +447,19 @@ GameObject: --- !u!108 &68391993 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 68391992} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -437,6 +469,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -444,18 +494,23 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 4 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &68391994 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 68391992} m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} m_LocalPosition: {x: 0, y: 3, z: 0} @@ -467,9 +522,10 @@ Transform: --- !u!1 &141955666 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 141955667} - component: {fileID: 141955669} @@ -484,8 +540,9 @@ GameObject: --- !u!224 &141955667 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 141955666} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -502,22 +559,22 @@ RectTransform: --- !u!114 &141955668 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 141955666} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 @@ -526,18 +583,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &141955669 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 141955666} + m_CullTransparentMesh: 0 --- !u!1 &150928301 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 150928302} - component: {fileID: 150928304} @@ -552,8 +614,9 @@ GameObject: --- !u!224 &150928302 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150928301} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -570,22 +633,22 @@ RectTransform: --- !u!114 &150928303 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150928301} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -594,18 +657,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &150928304 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150928301} + m_CullTransparentMesh: 0 --- !u!1 &276234380 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 276234381} - component: {fileID: 276234383} @@ -620,8 +688,9 @@ GameObject: --- !u!224 &276234381 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 276234380} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -638,22 +707,22 @@ RectTransform: --- !u!114 &276234382 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 276234380} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 614cfab74158e1e4dbad8ee7db2dd365, type: 3} m_FontSize: 16 @@ -673,15 +742,18 @@ MonoBehaviour: --- !u!222 &276234383 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 276234380} + m_CullTransparentMesh: 0 --- !u!1 &320943044 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 320943045} - component: {fileID: 320943048} @@ -696,8 +768,9 @@ GameObject: --- !u!224 &320943045 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 320943044} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -715,8 +788,9 @@ RectTransform: --- !u!114 &320943046 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 320943044} m_Enabled: 1 m_EditorHideFlags: 0 @@ -728,15 +802,18 @@ MonoBehaviour: --- !u!222 &320943048 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 320943044} + m_CullTransparentMesh: 0 --- !u!1 &407766011 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 407766012} m_Layer: 5 @@ -749,8 +826,9 @@ GameObject: --- !u!224 &407766012 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 407766011} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -768,9 +846,10 @@ RectTransform: --- !u!1 &487400442 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 487400443} - component: {fileID: 487400445} @@ -785,8 +864,9 @@ GameObject: --- !u!224 &487400443 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 487400442} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -804,22 +884,22 @@ RectTransform: --- !u!114 &487400444 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 487400442} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.078431375, g: 0.019607844, b: 0.16862746, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 @@ -828,18 +908,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &487400445 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 487400442} + m_CullTransparentMesh: 0 --- !u!1 &680865793 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 680865794} - component: {fileID: 680865796} @@ -854,8 +939,9 @@ GameObject: --- !u!224 &680865794 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 680865793} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -872,22 +958,22 @@ RectTransform: --- !u!114 &680865795 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 680865793} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 96a7fdf6b3072d0469dc810ce094088b, type: 3} m_FontSize: 14 @@ -905,15 +991,18 @@ MonoBehaviour: --- !u!222 &680865796 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 680865793} + m_CullTransparentMesh: 0 --- !u!1 &720226565 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 720226569} - component: {fileID: 720226568} @@ -929,15 +1018,20 @@ GameObject: --- !u!23 &720226566 MeshRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 720226565} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 2100000, guid: bd9c6d1742ea724438db68c4c84d11df, type: 2} m_StaticBatchInfo: @@ -947,9 +1041,11 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 1 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_StitchLightmapSeams: 1 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -961,29 +1057,31 @@ MeshRenderer: --- !u!64 &720226567 MeshCollider: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 720226565} m_Material: {fileID: 0} m_IsTrigger: 0 m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 4 m_Convex: 0 - m_InflateMesh: 0 - m_SkinWidth: 0.01 + m_CookingOptions: 30 m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!33 &720226568 MeshFilter: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 720226565} m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!4 &720226569 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 720226565} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: -5, z: 0} @@ -995,9 +1093,10 @@ Transform: --- !u!1 &751809666 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 751809667} - component: {fileID: 751809670} @@ -1013,8 +1112,9 @@ GameObject: --- !u!224 &751809667 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 751809666} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1032,12 +1132,13 @@ RectTransform: --- !u!114 &751809668 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 751809666} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1051,17 +1152,20 @@ MonoBehaviour: m_NormalColor: {r: 0.18382353, g: 0.18382353, b: 0.18382353, a: 1} m_HighlightedColor: {r: 0.21323532, g: 0.21323532, b: 0.21323532, a: 1} m_PressedColor: {r: 0.18382353, g: 0.18382353, b: 0.18382353, a: 1} + m_SelectedColor: {r: 0.21323532, g: 0.21323532, b: 0.21323532, a: 1} m_DisabledColor: {r: 0, g: 0, b: 0, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 150928303} @@ -1073,27 +1177,25 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &751809669 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 751809666} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -1102,18 +1204,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &751809670 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 751809666} + m_CullTransparentMesh: 0 --- !u!1 &779717779 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 779717780} - component: {fileID: 779717782} @@ -1129,8 +1236,9 @@ GameObject: --- !u!224 &779717780 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 779717779} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1147,22 +1255,22 @@ RectTransform: --- !u!114 &779717781 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 779717779} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 96a7fdf6b3072d0469dc810ce094088b, type: 3} m_FontSize: 14 @@ -1180,18 +1288,21 @@ MonoBehaviour: --- !u!222 &779717782 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 779717779} + m_CullTransparentMesh: 0 --- !u!114 &779717783 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 779717779} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 575553740, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1205,17 +1316,20 @@ MonoBehaviour: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 779717781} @@ -1232,13 +1346,9 @@ MonoBehaviour: m_OnEndEdit: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.InputField+OnChangeEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_CustomCaretColor: 0 m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} @@ -1246,12 +1356,14 @@ MonoBehaviour: m_CaretBlinkRate: 0.85 m_CaretWidth: 1 m_ReadOnly: 0 + m_ShouldActivateOnSelect: 1 --- !u!1 &905912073 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 905912074} - component: {fileID: 905912077} @@ -1267,8 +1379,9 @@ GameObject: --- !u!224 &905912074 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 905912073} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1286,12 +1399,13 @@ RectTransform: --- !u!114 &905912075 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 905912073} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1305,44 +1419,45 @@ MonoBehaviour: m_NormalColor: {r: 0.19852942, g: 0.19852942, b: 0.19852942, a: 1} m_HighlightedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_PressedColor: {r: 0.41911763, g: 0.41911763, b: 0.41911763, a: 1} + m_SelectedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_DisabledColor: {r: 0, g: 0, b: 0, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 905912076} m_OnClick: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &905912076 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 905912073} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.2647059, g: 0.2647059, b: 0.2647059, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -1351,18 +1466,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &905912077 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 905912073} + m_CullTransparentMesh: 0 --- !u!1 &1118077140 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1118077143} - component: {fileID: 1118077142} @@ -1377,12 +1497,13 @@ GameObject: --- !u!114 &1118077141 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1118077140} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} m_Name: m_EditorClassIdentifier: m_HorizontalAxis: Horizontal @@ -1395,12 +1516,13 @@ MonoBehaviour: --- !u!114 &1118077142 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1118077140} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} m_Name: m_EditorClassIdentifier: m_FirstSelected: {fileID: 0} @@ -1409,8 +1531,9 @@ MonoBehaviour: --- !u!4 &1118077143 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1118077140} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1422,9 +1545,10 @@ Transform: --- !u!1 &1207559149 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1207559150} - component: {fileID: 1207559153} @@ -1440,8 +1564,9 @@ GameObject: --- !u!224 &1207559150 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1207559149} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1458,12 +1583,13 @@ RectTransform: --- !u!114 &1207559151 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1207559149} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1741964061, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} m_Name: m_EditorClassIdentifier: m_HorizontalFit: 0 @@ -1471,22 +1597,22 @@ MonoBehaviour: --- !u!114 &1207559152 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1207559149} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 96a7fdf6b3072d0469dc810ce094088b, type: 3} m_FontSize: 14 @@ -1504,15 +1630,18 @@ MonoBehaviour: --- !u!222 &1207559153 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1207559149} + m_CullTransparentMesh: 0 --- !u!1 &1210517093 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1210517094} - component: {fileID: 1210517097} @@ -1528,8 +1657,9 @@ GameObject: --- !u!224 &1210517094 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210517093} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1547,12 +1677,13 @@ RectTransform: --- !u!114 &1210517095 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210517093} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1566,17 +1697,20 @@ MonoBehaviour: m_NormalColor: {r: 0.1544118, g: 0.1544118, b: 0.1544118, a: 1} m_HighlightedColor: {r: 0.28676468, g: 0.28676468, b: 0.28676468, a: 1} m_PressedColor: {r: 0.25, g: 0.25, b: 0.25, a: 1} + m_SelectedColor: {r: 0.28676468, g: 0.28676468, b: 0.28676468, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 1729281833} @@ -1588,27 +1722,25 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &1210517096 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210517093} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.1397059, g: 0.1397059, b: 0.1397059, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -1617,18 +1749,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1210517097 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210517093} + m_CullTransparentMesh: 0 --- !u!1 &1210921175 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1210921176} - component: {fileID: 1210921179} @@ -1644,8 +1781,9 @@ GameObject: --- !u!224 &1210921176 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210921175} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1663,12 +1801,13 @@ RectTransform: --- !u!114 &1210921177 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210921175} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1682,44 +1821,45 @@ MonoBehaviour: m_NormalColor: {r: 0.19852942, g: 0.19852942, b: 0.19852942, a: 1} m_HighlightedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_PressedColor: {r: 0.41911763, g: 0.41911763, b: 0.41911763, a: 1} + m_SelectedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_DisabledColor: {r: 0, g: 0, b: 0, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 1210921178} m_OnClick: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &1210921178 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210921175} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.2647059, g: 0.2647059, b: 0.2647059, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -1728,18 +1868,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1210921179 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1210921175} + m_CullTransparentMesh: 0 --- !u!1 &1382704560 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1382704561} - component: {fileID: 1382704563} @@ -1754,8 +1899,9 @@ GameObject: --- !u!224 &1382704561 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1382704560} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1772,22 +1918,22 @@ RectTransform: --- !u!114 &1382704562 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1382704560} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 96a7fdf6b3072d0469dc810ce094088b, type: 3} m_FontSize: 14 @@ -1805,15 +1951,18 @@ MonoBehaviour: --- !u!222 &1382704563 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1382704560} + m_CullTransparentMesh: 0 --- !u!1 &1443374433 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1443374434} - component: {fileID: 1443374436} @@ -1828,8 +1977,9 @@ GameObject: --- !u!224 &1443374434 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1443374433} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1846,22 +1996,22 @@ RectTransform: --- !u!114 &1443374435 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1443374433} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 12800000, guid: 96a7fdf6b3072d0469dc810ce094088b, type: 3} m_FontSize: 14 @@ -1879,15 +2029,18 @@ MonoBehaviour: --- !u!222 &1443374436 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1443374433} + m_CullTransparentMesh: 0 --- !u!1 &1463877416 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1463877417} m_Layer: 5 @@ -1900,8 +2053,9 @@ GameObject: --- !u!224 &1463877417 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1463877416} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1919,9 +2073,10 @@ RectTransform: --- !u!1 &1483707141 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1483707142} - component: {fileID: 1483707145} @@ -1937,8 +2092,9 @@ GameObject: --- !u!224 &1483707142 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1483707141} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -1956,12 +2112,13 @@ RectTransform: --- !u!114 &1483707143 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1483707141} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1975,44 +2132,45 @@ MonoBehaviour: m_NormalColor: {r: 0.19852942, g: 0.19852942, b: 0.19852942, a: 1} m_HighlightedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_PressedColor: {r: 0.41911763, g: 0.41911763, b: 0.41911763, a: 1} + m_SelectedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_DisabledColor: {r: 0, g: 0, b: 0, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 1483707144} m_OnClick: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &1483707144 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1483707141} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.2647059, g: 0.2647059, b: 0.2647059, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -2021,23 +2179,27 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1483707145 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1483707141} + m_CullTransparentMesh: 0 --- !u!1 &1692807974 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1692807979} - component: {fileID: 1692807978} - component: {fileID: 1692807977} - - component: {fileID: 1692807976} - component: {fileID: 1692807975} m_Layer: 0 m_Name: Camera @@ -2049,34 +2211,36 @@ GameObject: --- !u!81 &1692807975 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1692807974} - m_Enabled: 1 ---- !u!92 &1692807976 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1692807974} m_Enabled: 1 --- !u!124 &1692807977 Behaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1692807974} m_Enabled: 1 --- !u!20 &1692807978 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1692807974} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -2098,16 +2262,17 @@ Camera: m_TargetEye: 3 m_HDR: 1 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 --- !u!4 &1692807979 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1692807974} m_LocalRotation: {x: 0.13191034, y: 0, z: 0, w: 0.99126166} m_LocalPosition: {x: 0, y: 2, z: -9} @@ -2119,9 +2284,10 @@ Transform: --- !u!1 &1725855987 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1725855988} - component: {fileID: 1725855990} @@ -2136,8 +2302,9 @@ GameObject: --- !u!224 &1725855988 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1725855987} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -2154,22 +2321,22 @@ RectTransform: --- !u!114 &1725855989 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1725855987} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 @@ -2178,18 +2345,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1725855990 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1725855987} + m_CullTransparentMesh: 0 --- !u!1 &1729281831 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1729281832} - component: {fileID: 1729281834} @@ -2204,8 +2376,9 @@ GameObject: --- !u!224 &1729281832 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1729281831} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -2222,22 +2395,22 @@ RectTransform: --- !u!114 &1729281833 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1729281831} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -2246,18 +2419,23 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1729281834 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1729281831} + m_CullTransparentMesh: 0 --- !u!1 &1795469252 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1795469253} - component: {fileID: 1795469256} @@ -2273,8 +2451,9 @@ GameObject: --- !u!224 &1795469253 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1795469252} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -2292,22 +2471,22 @@ RectTransform: --- !u!114 &1795469254 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1795469252} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -2316,30 +2495,36 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &1795469255 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1795469252} + m_CullTransparentMesh: 0 --- !u!114 &1795469256 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1795469252} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -1200242548, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} m_Name: m_EditorClassIdentifier: m_ShowMaskGraphic: 0 --- !u!1 &2067276241 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 2067276242} - component: {fileID: 2067276245} @@ -2355,8 +2540,9 @@ GameObject: --- !u!224 &2067276242 RectTransform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2067276241} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -2374,12 +2560,13 @@ RectTransform: --- !u!114 &2067276243 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2067276241} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -2393,44 +2580,45 @@ MonoBehaviour: m_NormalColor: {r: 0.19852942, g: 0.19852942, b: 0.19852942, a: 1} m_HighlightedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_PressedColor: {r: 0.41911763, g: 0.41911763, b: 0.41911763, a: 1} + m_SelectedColor: {r: 0.33088237, g: 0.33088237, b: 0.33088237, a: 1} m_DisabledColor: {r: 0, g: 0, b: 0, a: 0.5019608} m_ColorMultiplier: 1 m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} m_DisabledSprite: {fileID: 0} m_AnimationTriggers: m_NormalTrigger: Normal m_HighlightedTrigger: Highlighted m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted m_DisabledTrigger: Disabled m_Interactable: 1 m_TargetGraphic: {fileID: 2067276244} m_OnClick: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null --- !u!114 &2067276244 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2067276241} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 0.2647059, g: 0.2647059, b: 0.2647059, a: 1} m_RaycastTarget: 1 + m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 @@ -2439,9 +2627,13 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!222 &2067276245 CanvasRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2067276241} + m_CullTransparentMesh: 0 diff --git a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity.meta b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity.meta index accac99..a6e103c 100644 --- a/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity.meta +++ b/Assets/TestScenes/PolyToolkitCmd/PolyToolkitCmd.unity.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 015cad98944f8ab439e4ffcc5dcd06f6 -timeCreated: 1507908283 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat b/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat index dc27525..70055c5 100644 --- a/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat +++ b/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: RetroSkybox m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0} m_ShaderKeywords: _SUNDISK_HIGH_QUALITY @@ -73,6 +74,7 @@ Material: - _SrcBlend: 1 - _SunDisk: 2 - _SunSize: 0.04 + - _SunSizeConvergence: 5 - _UVSec: 0 - _ZWrite: 1 m_Colors: diff --git a/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat.meta b/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat.meta index 36347f5..a96d3c3 100644 --- a/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat.meta +++ b/Assets/TestScenes/PolyToolkitCmd/RetroSkybox.mat.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 1238e89f8fdc5c8419eafffe367cee30 -timeCreated: 1507909037 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 2100000 userData: assetBundleName: diff --git a/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf.meta b/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf.meta index 7c779d2..bb6ffb9 100644 --- a/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf.meta +++ b/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Bold.ttf.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 614cfab74158e1e4dbad8ee7db2dd365 -timeCreated: 1507909728 -licenseType: Pro TrueTypeFontImporter: + externalObjects: {} serializedVersion: 4 fontSize: 16 forceTextureCase: -2 @@ -16,6 +15,8 @@ TrueTypeFontImporter: customCharacters: fontRenderingMode: 0 ascentCalculationMode: 1 + useLegacyBoundsCalculation: 0 + shouldRoundAdvanceValue: 1 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf.meta b/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf.meta index a052097..f2f980e 100644 --- a/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf.meta +++ b/Assets/TestScenes/PolyToolkitCmd/RobotoMono-Regular.ttf.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 96a7fdf6b3072d0469dc810ce094088b -timeCreated: 1507909728 -licenseType: Pro TrueTypeFontImporter: + externalObjects: {} serializedVersion: 4 fontSize: 16 forceTextureCase: -2 @@ -17,6 +16,8 @@ TrueTypeFontImporter: customCharacters: fontRenderingMode: 0 ascentCalculationMode: 1 + useLegacyBoundsCalculation: 0 + shouldRoundAdvanceValue: 1 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/TestScenes/PolyToolkitCmd/grid.png.meta b/Assets/TestScenes/PolyToolkitCmd/grid.png.meta index 6122700..23acb22 100644 --- a/Assets/TestScenes/PolyToolkitCmd/grid.png.meta +++ b/Assets/TestScenes/PolyToolkitCmd/grid.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: 680fe70b060c7694892c29cc7175ea16 -timeCreated: 1507909288 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 1 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: 2 - mipBias: -1 - wrapMode: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 nPOTScale: 1 lightmap: 0 compressionQuality: 50 @@ -39,62 +45,96 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 0 spriteTessellationDetail: -1 textureType: 0 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Standalone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: iPhone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Android + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: WebGL + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: WebGL maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit.meta b/Assets/Tests.meta similarity index 58% rename from Assets/PolyToolkit.meta rename to Assets/Tests.meta index 03e69eb..6dc2585 100644 --- a/Assets/PolyToolkit.meta +++ b/Assets/Tests.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 -guid: 08a9fa793fc8f02459d9be9778ec9c08 +guid: f69813347b3ab764a9323b2b329d01a0 folderAsset: yes -timeCreated: 1502214983 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Editor.meta b/Assets/Tests/Editor.meta similarity index 78% rename from Assets/Editor.meta rename to Assets/Tests/Editor.meta index 27b47d6..e018cab 100644 --- a/Assets/Editor.meta +++ b/Assets/Tests/Editor.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: de75e7aa54dab604f8c0ca2c61404d3e folderAsset: yes -timeCreated: 1503066569 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Editor/BuildPackage.cs b/Assets/Tests/Editor/BuildPackage.cs similarity index 97% rename from Assets/Editor/BuildPackage.cs rename to Assets/Tests/Editor/BuildPackage.cs index f17e613..e4ae9a2 100644 --- a/Assets/Editor/BuildPackage.cs +++ b/Assets/Tests/Editor/BuildPackage.cs @@ -88,7 +88,7 @@ static string GetGitVersion() { /// Creates a .unitypackage file named after the current git version. /// Writes to the root of the git repo. - [MenuItem("Poly/Dev/Build .unitypackage")] + [MenuItem("Icosa/Dev/Build .unitypackage")] static void DoBuild() { string version = GetGitVersion(); string name = string.Format("../poly-toolkit-{0}.unitypackage", version); @@ -106,7 +106,7 @@ static void DoBuild() { // Create a list of files to include in the unity package export. static string[] GetFilesToExport() { - // Include all files from the PolyToolkit directory EXCEPT for "upgrade.dat", which is responsible for + // Include all files from the PolyToolkit directory EXCEPT for "upgrade.dat", which is responsible for // informing PolyToolkit whether or not it has been previously installed or upgraded. string path = Application.dataPath; IEnumerable files = Directory.GetFiles(path + "/PolyToolkit", "*", SearchOption.AllDirectories) @@ -142,7 +142,7 @@ public static PolyAuthConfig ResetToPlaceholderCredentials() { PolyAuthConfig oldAuthConfig = PtSettings.Instance.authConfig; // Replace by a placeholder auth config during export. PtSettings.Instance.authConfig = new PolyAuthConfig( - apiKey: "** INSERT YOUR API KEY HERE **", clientId: "", clientSecret: ""); + baseUrl: "", apiKey: "", clientId: "", clientSecret: ""); EditorUtility.SetDirty(PtSettings.Instance); AssetDatabase.SaveAssets(); return oldAuthConfig; diff --git a/Assets/Editor/BuildPackage.cs.meta b/Assets/Tests/Editor/BuildPackage.cs.meta similarity index 84% rename from Assets/Editor/BuildPackage.cs.meta rename to Assets/Tests/Editor/BuildPackage.cs.meta index b695538..efbe12d 100644 --- a/Assets/Editor/BuildPackage.cs.meta +++ b/Assets/Tests/Editor/BuildPackage.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 09a8d4c9fdec87b4fb65e5d1bded05ad -timeCreated: 1502212896 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/Editor/PrepForUASExport.cs b/Assets/Tests/Editor/PrepForUASExport.cs similarity index 96% rename from Assets/Editor/PrepForUASExport.cs rename to Assets/Tests/Editor/PrepForUASExport.cs index 2033620..fe8991d 100644 --- a/Assets/Editor/PrepForUASExport.cs +++ b/Assets/Tests/Editor/PrepForUASExport.cs @@ -21,7 +21,7 @@ namespace PolyToolkitDev { static class PrepForUASExport { - [MenuItem("Poly/Dev/Prep for UAS Export")] + [MenuItem("Icosa/Dev/Prep for UAS Export")] public static void DoPrepForUASExport() { // The exported package should have the placeholder credentials, not our credentials. BuildPackage.ResetToPlaceholderCredentials(); diff --git a/Assets/Editor/PrepForUASExport.cs.meta b/Assets/Tests/Editor/PrepForUASExport.cs.meta similarity index 84% rename from Assets/Editor/PrepForUASExport.cs.meta rename to Assets/Tests/Editor/PrepForUASExport.cs.meta index af22cd0..4cf3e11 100644 --- a/Assets/Editor/PrepForUASExport.cs.meta +++ b/Assets/Tests/Editor/PrepForUASExport.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 0af39852857bc054d90e606b809745db -timeCreated: 1502212896 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/Editor/Tests.meta b/Assets/Tests/Editor/Tests.meta similarity index 78% rename from Assets/Editor/Tests.meta rename to Assets/Tests/Editor/Tests.meta index e1617e4..4cfa792 100644 --- a/Assets/Editor/Tests.meta +++ b/Assets/Tests/Editor/Tests.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: f671615ce2fe698419388d7b2f130a5c folderAsset: yes -timeCreated: 1502741824 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Editor/Tests/TestImportGltf.cs b/Assets/Tests/Editor/Tests/TestImportGltf.cs similarity index 95% rename from Assets/Editor/Tests/TestImportGltf.cs rename to Assets/Tests/Editor/Tests/TestImportGltf.cs index cc2d162..0aafa19 100644 --- a/Assets/Editor/Tests/TestImportGltf.cs +++ b/Assets/Tests/Editor/Tests/TestImportGltf.cs @@ -159,7 +159,7 @@ static void SaveAsSinglePrefab( } [Test] - [MenuItem("Poly/Dev/Test/Save as Separate")] + [MenuItem("Icosa/Dev/Test/Save as Separate")] public static void TestSaveAsSeparateWithMeshesInAsset() { IUriLoader binLoader = new BufferedStreamLoader(Path.GetDirectoryName(Path.Combine(RepoRoot, kAllBrush10))); ImportGltf.GltfImportResult result = null; @@ -173,7 +173,7 @@ public static void TestSaveAsSeparateWithMeshesInAsset() { } [Test] - [MenuItem("Poly/Dev/Test/Save as Single")] + [MenuItem("Icosa/Dev/Test/Save as Single")] public static void TestSaveAsSinglePrefab() { IUriLoader binLoader = new BufferedStreamLoader(Path.GetDirectoryName(Path.Combine(RepoRoot, kMoto))); ImportGltf.GltfImportResult result = null; @@ -211,7 +211,7 @@ private static GameObject DoImport(string gltfPath, PolyImportOptions options, b } } - [MenuItem("Poly/Dev/Test/Import+save selected .gltf assets")] + [MenuItem("Icosa/Dev/Test/Import+save selected .gltf assets")] public static void TestImportSelection() { var gltfAssets = Selection.objects .Select(o => AssetDatabase.GetAssetPath(o)) @@ -228,19 +228,19 @@ public static void TestImportSelection() { } [Test] - [MenuItem("Poly/Dev/Test/Import only/glTF1")] + [MenuItem("Icosa/Dev/Test/Import only/glTF1")] public static void TestImportGltf1() { DoImport(Path.Combine(RepoRoot, kAllBrush14), PolyImportOptions.Default()); } [Test] - [MenuItem("Poly/Dev/Test/Import only/glTF2, defaults")] + [MenuItem("Icosa/Dev/Test/Import only/glTF2, defaults")] public static void TestImportGltf2() { DoImport(Path.Combine(RepoRoot, kComputer), PolyImportOptions.Default()); } [Test] - [MenuItem("Poly/Dev/Test/Import only/glTF2, scale x2")] + [MenuItem("Icosa/Dev/Test/Import only/glTF2, scale x2")] public static void TestImportGltf2Scale() { PolyImportOptions options = new PolyImportOptions(); options.rescalingMode = PolyImportOptions.RescalingMode.CONVERT; @@ -249,7 +249,7 @@ public static void TestImportGltf2Scale() { } [Test] - [MenuItem("Poly/Dev/Test/Import only/glTF2, target size=50")] + [MenuItem("Icosa/Dev/Test/Import only/glTF2, target size=50")] public static void TestImportGltf2TargetSize() { PolyImportOptions options = new PolyImportOptions(); options.rescalingMode = PolyImportOptions.RescalingMode.FIT; @@ -258,7 +258,7 @@ public static void TestImportGltf2TargetSize() { } [Test] - [MenuItem("Poly/Dev/Test/Import only/glTF2, target size=50, recenter")] + [MenuItem("Icosa/Dev/Test/Import only/glTF2, target size=50, recenter")] public static void TestImportGltf2TargetSizeRecenter() { PolyImportOptions options = new PolyImportOptions(); options.rescalingMode = PolyImportOptions.RescalingMode.FIT; @@ -268,13 +268,13 @@ public static void TestImportGltf2TargetSizeRecenter() { } [Test] - [MenuItem("Poly/Dev/Test/Import only/Goblets (GLTF2 transparent)")] + [MenuItem("Icosa/Dev/Test/Import only/Goblets (GLTF2 transparent)")] public static void TestImportGltf2Transparent() { DoImport(Path.Combine(RepoRoot, kGoblets), PolyImportOptions.Default()); } [Test] - [MenuItem("Poly/Dev/Test/Import only/Shark (GLTF2 generated from FBX)")] + [MenuItem("Icosa/Dev/Test/Import only/Shark (GLTF2 generated from FBX)")] public static void TestImportGltf2FromFbx() { DoImport(Path.Combine(RepoRoot, kShark), PolyImportOptions.Default()); } diff --git a/Assets/Editor/Tests/TestImportGltf.cs.meta b/Assets/Tests/Editor/Tests/TestImportGltf.cs.meta similarity index 84% rename from Assets/Editor/Tests/TestImportGltf.cs.meta rename to Assets/Tests/Editor/Tests/TestImportGltf.cs.meta index b84dc19..8ab1ac3 100644 --- a/Assets/Editor/Tests/TestImportGltf.cs.meta +++ b/Assets/Tests/Editor/Tests/TestImportGltf.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: e277bb3dece7c364cb6b04c415a2a6a2 -timeCreated: 1506089899 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/csc.rsp.meta b/Assets/csc.rsp.meta index 51621f4..579e199 100644 --- a/Assets/csc.rsp.meta +++ b/Assets/csc.rsp.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 2d179a41448edbc40925d62e4ec94ada -timeCreated: 1502245222 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/mcs.rsp.meta b/Assets/mcs.rsp.meta index f40f571..a0c1f99 100644 --- a/Assets/mcs.rsp.meta +++ b/Assets/mcs.rsp.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: c1532aeaa22d606468784936f6d84203 -timeCreated: 1502245222 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/smcs.rsp.meta b/Assets/smcs.rsp.meta index 4038135..f928f5b 100644 --- a/Assets/smcs.rsp.meta +++ b/Assets/smcs.rsp.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 1358dd6553600df43a66f332ddd7346d -timeCreated: 1507330555 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 5d2e7b4..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,5 +0,0 @@ -We do not currently accept pull requests. - -Found a bug? Have a feature request? -Please [file an issue](https://github.com/googlevr/poly-toolkit-unity/issues). - diff --git a/Assets/PolyToolkit/Editor.meta b/Packages/icosa-api-client-unity/Editor.meta similarity index 58% rename from Assets/PolyToolkit/Editor.meta rename to Packages/icosa-api-client-unity/Editor.meta index c9821a1..b6d73c0 100644 --- a/Assets/PolyToolkit/Editor.meta +++ b/Packages/icosa-api-client-unity/Editor.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 -guid: 592516d013dd78d49af0ca35fba9323f +guid: c80fff1f637f37147a4da845b8d14c32 folderAsset: yes -timeCreated: 1502218497 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/AnalyticsSender.cs b/Packages/icosa-api-client-unity/Editor/AnalyticsSender.cs similarity index 100% rename from Assets/PolyToolkit/Editor/AnalyticsSender.cs rename to Packages/icosa-api-client-unity/Editor/AnalyticsSender.cs diff --git a/Assets/PolyToolkit/Editor/AnalyticsSender.cs.meta b/Packages/icosa-api-client-unity/Editor/AnalyticsSender.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/AnalyticsSender.cs.meta rename to Packages/icosa-api-client-unity/Editor/AnalyticsSender.cs.meta index ae8054c..d3969d6 100644 --- a/Assets/PolyToolkit/Editor/AnalyticsSender.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/AnalyticsSender.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 03007da89a74c904badac2bac6eb608b -timeCreated: 1507658204 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/AssetBrowser.meta b/Packages/icosa-api-client-unity/Editor/AssetBrowser.meta similarity index 78% rename from Assets/PolyToolkit/Editor/AssetBrowser.meta rename to Packages/icosa-api-client-unity/Editor/AssetBrowser.meta index 22b5e1d..16db9dd 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser.meta +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: a2b9acc3fa389c147ba2960fae000d99 folderAsset: yes -timeCreated: 1502218477 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserManager.cs similarity index 98% rename from Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserManager.cs index ac129ee..079314e 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserManager.cs @@ -26,8 +26,9 @@ namespace PolyToolkitEditor { /// Model and controller for the Asset Browser Window. This class holds the data and handles the actual /// work). /// -public class AssetBrowserManager { - private const string PRODUCT_NAME = "PolyToolkit"; +public class AssetBrowserManager +{ + private const string BASE_URL = "https://icosa-api-django.ixxy.co.uk"; private const string CLIENT_SECRET = "49385a554c3274635d6c47327d3a3c557d67793e79267852"; private const string CLIENT_ID = "3539303a373737363831393b2178617c60227d7f7b7966252a74226e296f2d29174315175" + "15716131b1c5a4d1b034f5f40421c545b5a515b5d4c495e4e5e515134242c376a26292a"; @@ -54,7 +55,7 @@ public class AssetBrowserManager { private HashSet assetsBeingDownloaded = new HashSet(); private Action refreshCallback = null; - + /// /// The most recent query result that we have. (read only) /// @@ -66,7 +67,7 @@ public class AssetBrowserManager { private PolyAsset assetResult = null; /// - /// Whether the current response has at least another page of results left that haven't been loaded yet. + /// Whether the current response has at least another page of results left that haven't been loaded yet. /// public bool resultHasMorePages = false; @@ -93,6 +94,7 @@ public class AssetBrowserManager { private PolyRequest requestToSendAfterAuth = null; private PolyAuthConfig authConfig = new PolyAuthConfig( + baseUrl: BASE_URL, apiKey: Deobfuscate(API_KEY), clientId: Deobfuscate(CLIENT_ID), clientSecret: Deobfuscate(CLIENT_SECRET)); @@ -238,7 +240,7 @@ public void GetNextPageRequest() { currentRequest.pageToken = CurrentResult.Value.nextPageToken; StartRequest(currentRequest, OnNextPageRequestResult); } - + /// /// Starts a new request. If there is already an existing request in progress, it will be cancelled. /// @@ -327,7 +329,7 @@ private void OnSignInFinished(bool wasInteractive, PolyStatus status) { // If we had a deferred request that was waiting for auth, send it now. if (requestToSendAfterAuth != null) { - PtDebug.Log("Sending deferred request that was waiting for auth."); + PtDebug.Log("Sending deferred request that was waiting for auth."); PolyRequest request = requestToSendAfterAuth; requestToSendAfterAuth = null; StartRequest(request); @@ -368,7 +370,7 @@ private void OnRequestResult(PolyStatusOr result) { } querying = false; if (null != refreshCallback) refreshCallback(); - + if (result.Ok) { assetsInUse = GetAssetsInUse(); FinishFetchingThumbnails(result); @@ -579,9 +581,9 @@ private bool PrepareDownload(PolyAsset asset, out string baseName, out string do string downloadFullPath = PtUtils.ToAbsolutePath(downloadLocalPath); if (Directory.Exists(downloadFullPath)) { - if (PtSettings.Instance.warnOnSourceOverwrite && + if (PtSettings.Instance.warnOnSourceOverwrite && !EditorUtility.DisplayDialog("Warning: Overwriting asset source folder", - string.Format("The asset source folder '{0}' will be deleted and created again. " + + string.Format("The asset source folder '{0}' will be deleted and created again. " + "This should be safe *unless* you have manually made changes to its contents, " + "in which case you will lose those changes.\n\n" + "(You can silence this warning in Poly Toolkit settings)", diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs.meta b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserManager.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs.meta rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserManager.cs.meta index 7908423..ca8731e 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserManager.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserManager.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 14062b472501c1044943c630506b24bc -timeCreated: 1502218484 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserWindow.cs similarity index 99% rename from Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserWindow.cs index 6d275a5..bdb360f 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserWindow.cs @@ -277,7 +277,7 @@ private enum UiMode { /// /// Shows the browser window. /// - [MenuItem("Poly/Browse Assets...")] + [MenuItem("Icosa/Browse Assets...")] public static void BrowsePolyAssets() { GetWindow(WINDOW_TITLE, /* focus */ true); PtAnalytics.SendEvent(PtAnalytics.Action.MENU_BROWSE_ASSETS); diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs.meta b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserWindow.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs.meta rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserWindow.cs.meta index 5e24a22..7be60a4 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/AssetBrowserWindow.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/AssetBrowserWindow.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: eb8ea7ffee97b8d41a7f33638ea373f7 -timeCreated: 1502218484 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/GUIHelper.cs b/Packages/icosa-api-client-unity/Editor/AssetBrowser/GUIHelper.cs similarity index 100% rename from Assets/PolyToolkit/Editor/AssetBrowser/GUIHelper.cs rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/GUIHelper.cs diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/GUIHelper.cs.meta b/Packages/icosa-api-client-unity/Editor/AssetBrowser/GUIHelper.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/AssetBrowser/GUIHelper.cs.meta rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/GUIHelper.cs.meta index 1fe7844..866c635 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/GUIHelper.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/GUIHelper.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: e68c770de4589eb4898a4008ad01c81e -timeCreated: 1503592604 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/ThumbnailCache.cs b/Packages/icosa-api-client-unity/Editor/AssetBrowser/ThumbnailCache.cs similarity index 100% rename from Assets/PolyToolkit/Editor/AssetBrowser/ThumbnailCache.cs rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/ThumbnailCache.cs diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/ThumbnailCache.cs.meta b/Packages/icosa-api-client-unity/Editor/AssetBrowser/ThumbnailCache.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/AssetBrowser/ThumbnailCache.cs.meta rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/ThumbnailCache.cs.meta index 3a35cc1..493e955 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/ThumbnailCache.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/ThumbnailCache.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 1d923ed03eb49c14098eb5fd63a14a9a -timeCreated: 1502824297 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs b/Packages/icosa-api-client-unity/Editor/AssetBrowser/WelcomeWindow.cs similarity index 97% rename from Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/WelcomeWindow.cs index 68dd758..a886033 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/WelcomeWindow.cs @@ -59,13 +59,13 @@ public class WelcomeWindow : EditorWindow { /// private GUIHelper guiHelper = new GUIHelper(); - [MenuItem("Poly/General Information...")] + [MenuItem("Icosa/General Information...")] public static void ShowWelcomeWindow() { PtAnalytics.SendEvent(PtAnalytics.Action.MENU_GENERAL_INFORMATION); GetWindow().Show(); } - [MenuItem("Poly/Online documentation...")] + [MenuItem("Icosa/Online documentation...")] public static void ShowOnlineDocumentation() { PtAnalytics.SendEvent(PtAnalytics.Action.MENU_ONLINE_DOCUMENTATION); Application.OpenURL(ONLINE_DOCUMENTATION_URL); diff --git a/Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs.meta b/Packages/icosa-api-client-unity/Editor/AssetBrowser/WelcomeWindow.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs.meta rename to Packages/icosa-api-client-unity/Editor/AssetBrowser/WelcomeWindow.cs.meta index c7da83f..b1710a8 100644 --- a/Assets/PolyToolkit/Editor/AssetBrowser/WelcomeWindow.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/AssetBrowser/WelcomeWindow.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 08776fb35a5a85148a7f89c2a607b36b -timeCreated: 1505829176 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/CheckBuild.cs b/Packages/icosa-api-client-unity/Editor/CheckBuild.cs similarity index 100% rename from Assets/PolyToolkit/Editor/CheckBuild.cs rename to Packages/icosa-api-client-unity/Editor/CheckBuild.cs diff --git a/Assets/PolyToolkit/Editor/CheckBuild.cs.meta b/Packages/icosa-api-client-unity/Editor/CheckBuild.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/CheckBuild.cs.meta rename to Packages/icosa-api-client-unity/Editor/CheckBuild.cs.meta index a0e7a16..e689684 100644 --- a/Assets/PolyToolkit/Editor/CheckBuild.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/CheckBuild.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: efa7b7e584b83a84ba2e5d5161b7a56d -timeCreated: 1510086089 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/DummyVERSION.txt b/Packages/icosa-api-client-unity/Editor/DummyVERSION.txt similarity index 100% rename from Assets/PolyToolkit/Editor/DummyVERSION.txt rename to Packages/icosa-api-client-unity/Editor/DummyVERSION.txt diff --git a/Assets/PolyToolkit/Editor/DummyVERSION.txt.meta b/Packages/icosa-api-client-unity/Editor/DummyVERSION.txt.meta similarity index 76% rename from Assets/PolyToolkit/Editor/DummyVERSION.txt.meta rename to Packages/icosa-api-client-unity/Editor/DummyVERSION.txt.meta index 6fe6da5..1291d10 100644 --- a/Assets/PolyToolkit/Editor/DummyVERSION.txt.meta +++ b/Packages/icosa-api-client-unity/Editor/DummyVERSION.txt.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: e99ab5f9c17d0ce479b1996e5074e744 -timeCreated: 1502213233 -licenseType: Pro TextScriptImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Packages/icosa-api-client-unity/Editor/ForceReserializeAssets.cs b/Packages/icosa-api-client-unity/Editor/ForceReserializeAssets.cs new file mode 100644 index 0000000..0f6ab1d --- /dev/null +++ b/Packages/icosa-api-client-unity/Editor/ForceReserializeAssets.cs @@ -0,0 +1,38 @@ +// Copyright 2020 The Tilt Brush Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using UnityEditor; + +namespace TiltBrush +{ + public static class ForceReserializeAssets + { + + // Ensures all assets in the project are read in, and reserialized in the most recent format. + [MenuItem("Icosa/Force reserialization of all assets")] + public static void ReserializeAll() + { + EditorUtility.DisplayProgressBar( + "Reserializing Assets", "Please Wait while assets are reserialized.", 0.5f); + try + { + AssetDatabase.ForceReserializeAssets(); + } + finally + { + EditorUtility.ClearProgressBar(); + } + } + } +} // namespace TiltBrush diff --git a/Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs.meta b/Packages/icosa-api-client-unity/Editor/ForceReserializeAssets.cs.meta similarity index 69% rename from Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs.meta rename to Packages/icosa-api-client-unity/Editor/ForceReserializeAssets.cs.meta index 82eb1b1..ca0a242 100644 --- a/Assets/PolyToolkit/Editor/WarnAboutUsingPolyInternal.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/ForceReserializeAssets.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 -guid: dba2d004725503a4a852a2e095195bb9 -timeCreated: 1507826025 -licenseType: Pro +guid: 665bbd75d1224736bee447c4d77adb6f MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/Importer.meta b/Packages/icosa-api-client-unity/Editor/Importer.meta similarity index 78% rename from Assets/PolyToolkit/Editor/Importer.meta rename to Packages/icosa-api-client-unity/Editor/Importer.meta index 7ace51a..7ae9ffb 100644 --- a/Assets/PolyToolkit/Editor/Importer.meta +++ b/Packages/icosa-api-client-unity/Editor/Importer.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 2ed43b0c18dd2a0439dc5015537cb7ca folderAsset: yes -timeCreated: 1502375326 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs b/Packages/icosa-api-client-unity/Editor/Importer/AttributionFileGenerator.cs similarity index 98% rename from Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs rename to Packages/icosa-api-client-unity/Editor/Importer/AttributionFileGenerator.cs index f3696ee..0b6b4f2 100644 --- a/Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs +++ b/Packages/icosa-api-client-unity/Editor/Importer/AttributionFileGenerator.cs @@ -25,7 +25,7 @@ namespace PolyToolkitEditor { /// Generates the attributions file. /// public static class AttributionFileGenerator { - [MenuItem("Poly/Update Attributions File")] + [MenuItem("Icosa/Update Attributions File")] public static void Generate() { PtAnalytics.SendEvent(PtAnalytics.Action.MENU_UPDATE_ATTRIBUTIONS_FILE); Generate(/* showUi */ true); diff --git a/Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs.meta b/Packages/icosa-api-client-unity/Editor/Importer/AttributionFileGenerator.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs.meta rename to Packages/icosa-api-client-unity/Editor/Importer/AttributionFileGenerator.cs.meta index a82ea74..be60163 100644 --- a/Assets/PolyToolkit/Editor/Importer/AttributionFileGenerator.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/Importer/AttributionFileGenerator.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 45fe4e76f778c794d836427af1815601 -timeCreated: 1503437013 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/Importer/PolyImporter.cs b/Packages/icosa-api-client-unity/Editor/Importer/PolyImporter.cs similarity index 100% rename from Assets/PolyToolkit/Editor/Importer/PolyImporter.cs rename to Packages/icosa-api-client-unity/Editor/Importer/PolyImporter.cs diff --git a/Assets/PolyToolkit/Editor/Importer/PolyImporter.cs.meta b/Packages/icosa-api-client-unity/Editor/Importer/PolyImporter.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/Importer/PolyImporter.cs.meta rename to Packages/icosa-api-client-unity/Editor/Importer/PolyImporter.cs.meta index e44c7bb..6a27499 100644 --- a/Assets/PolyToolkit/Editor/Importer/PolyImporter.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/Importer/PolyImporter.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 3bcb6c884f2edae4eae8337eaaecf68e -timeCreated: 1502375326 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/PostInstallHandler.cs b/Packages/icosa-api-client-unity/Editor/PostInstallHandler.cs similarity index 100% rename from Assets/PolyToolkit/Editor/PostInstallHandler.cs rename to Packages/icosa-api-client-unity/Editor/PostInstallHandler.cs diff --git a/Assets/PolyToolkit/Editor/PostInstallHandler.cs.meta b/Packages/icosa-api-client-unity/Editor/PostInstallHandler.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/PostInstallHandler.cs.meta rename to Packages/icosa-api-client-unity/Editor/PostInstallHandler.cs.meta index 3d1879b..57ecb1a 100644 --- a/Assets/PolyToolkit/Editor/PostInstallHandler.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/PostInstallHandler.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: f3d00049448513c4f80278c19eca81f4 -timeCreated: 1505831695 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/PtAnalytics.cs b/Packages/icosa-api-client-unity/Editor/PtAnalytics.cs similarity index 100% rename from Assets/PolyToolkit/Editor/PtAnalytics.cs rename to Packages/icosa-api-client-unity/Editor/PtAnalytics.cs diff --git a/Assets/PolyToolkit/Editor/PtAnalytics.cs.meta b/Packages/icosa-api-client-unity/Editor/PtAnalytics.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/PtAnalytics.cs.meta rename to Packages/icosa-api-client-unity/Editor/PtAnalytics.cs.meta index a0c844f..5fec5c9 100644 --- a/Assets/PolyToolkit/Editor/PtAnalytics.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/PtAnalytics.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: c92cab08cb256b44282cc813e8abd250 -timeCreated: 1507658679 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/PtSettingsEditor.cs b/Packages/icosa-api-client-unity/Editor/PtSettingsEditor.cs similarity index 96% rename from Assets/PolyToolkit/Editor/PtSettingsEditor.cs rename to Packages/icosa-api-client-unity/Editor/PtSettingsEditor.cs index 5d6d9d5..0b53509 100644 --- a/Assets/PolyToolkit/Editor/PtSettingsEditor.cs +++ b/Packages/icosa-api-client-unity/Editor/PtSettingsEditor.cs @@ -26,7 +26,7 @@ namespace PolyToolkitEditor { /// [CustomEditor(typeof(PtSettings))] public class PtSettingsEditor : Editor { - private const string TITLE = "Poly Toolkit Settings"; + private const string TITLE = "Icosa Toolkit Settings"; private TabDescriptor[] tabs; private string[] tabTitles; @@ -79,7 +79,7 @@ public override void OnInspectorGUI() { serializedObject.ApplyModifiedProperties(); } - [MenuItem("Poly/Poly Toolkit Settings...", priority = 1000)] + [MenuItem("Icosa/Poly Toolkit Settings...", priority = 1000)] public static void ShowPolyToolkitSettings() { PtAnalytics.SendEvent(PtAnalytics.Action.MENU_SHOW_SETTINGS); Selection.activeObject = PtSettings.Instance; diff --git a/Assets/PolyToolkit/Editor/PtSettingsEditor.cs.meta b/Packages/icosa-api-client-unity/Editor/PtSettingsEditor.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/PtSettingsEditor.cs.meta rename to Packages/icosa-api-client-unity/Editor/PtSettingsEditor.cs.meta index 891f65e..75f1852 100644 --- a/Assets/PolyToolkit/Editor/PtSettingsEditor.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/PtSettingsEditor.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: d4aaeeb8c2de4ac459fc0632d96c1be5 -timeCreated: 1503603097 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/PtUtils.cs b/Packages/icosa-api-client-unity/Editor/PtUtils.cs similarity index 96% rename from Assets/PolyToolkit/Editor/PtUtils.cs rename to Packages/icosa-api-client-unity/Editor/PtUtils.cs index ea1c13e..a26bda8 100644 --- a/Assets/PolyToolkit/Editor/PtUtils.cs +++ b/Packages/icosa-api-client-unity/Editor/PtUtils.cs @@ -104,7 +104,7 @@ public static string GetPtBaseLocalPath() { // Get the root path of the project. Something like C:\Foo\Bar\MyUnityProject string rootPath = Path.GetDirectoryName(Application.dataPath); // Find the poly_toolkit_manifest.data file. That marks the installation path of Poly Toolkit. - string[] matches = Directory.GetFiles(Application.dataPath, MANIFEST_FILE_NAME, + string[] matches = Directory.GetFiles(Path.Combine(Application.dataPath, "../Packages"), MANIFEST_FILE_NAME, SearchOption.AllDirectories); if (matches == null || matches.Length == 0) { throw new System.Exception("Could not find base directory for Poly Toolkit (poly_toolkit_manifest.data missing)."); @@ -125,7 +125,8 @@ public static string GetPtBaseLocalPath() { matches[0], Application.dataPath)); } // Cache it. - basePath = NormalizeLocalPath(manifestPath.Substring(rootPath.Length)); + basePath = Path.Combine(manifestPath, ".."); + basePath = Path.GetFullPath(basePath); return basePath; } @@ -141,5 +142,4 @@ public static Texture2D LoadTexture2DFromRelativePath(string relativePath) { return AssetDatabase.LoadAssetAtPath(Path.Combine(basePath, relativePath)); } } - } \ No newline at end of file diff --git a/Assets/PolyToolkit/Editor/PtUtils.cs.meta b/Packages/icosa-api-client-unity/Editor/PtUtils.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/PtUtils.cs.meta rename to Packages/icosa-api-client-unity/Editor/PtUtils.cs.meta index a1c1b1b..9479b21 100644 --- a/Assets/PolyToolkit/Editor/PtUtils.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/PtUtils.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 0a47beff868188a4d85dd8d7cb4ebd0a -timeCreated: 1502375945 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Editor/Textures.meta b/Packages/icosa-api-client-unity/Editor/Textures.meta similarity index 78% rename from Assets/PolyToolkit/Editor/Textures.meta rename to Packages/icosa-api-client-unity/Editor/Textures.meta index 6dfea45..381d06f 100644 --- a/Assets/PolyToolkit/Editor/Textures.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 59656b07927efec4cbcc1f256a9d1947 folderAsset: yes -timeCreated: 1503511752 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Textures/BackArrow.png b/Packages/icosa-api-client-unity/Editor/Textures/BackArrow.png similarity index 100% rename from Assets/PolyToolkit/Editor/Textures/BackArrow.png rename to Packages/icosa-api-client-unity/Editor/Textures/BackArrow.png diff --git a/Assets/PolyToolkit/Editor/Textures/BackArrow.png.meta b/Packages/icosa-api-client-unity/Editor/Textures/BackArrow.png.meta similarity index 59% rename from Assets/PolyToolkit/Editor/Textures/BackArrow.png.meta rename to Packages/icosa-api-client-unity/Editor/Textures/BackArrow.png.meta index c1065df..03d2b34 100644 --- a/Assets/PolyToolkit/Editor/Textures/BackArrow.png.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures/BackArrow.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: 31bb6ed957361834887c9a583dc91135 -timeCreated: 1508251298 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 - wrapMode: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 nPOTScale: 0 lightmap: 0 compressionQuality: 50 @@ -39,62 +45,96 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 spriteTessellationDetail: -1 textureType: 8 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Standalone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: iPhone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Android + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: WebGL + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: WebGL maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Textures/BackArrowDark.png b/Packages/icosa-api-client-unity/Editor/Textures/BackArrowDark.png similarity index 100% rename from Assets/PolyToolkit/Editor/Textures/BackArrowDark.png rename to Packages/icosa-api-client-unity/Editor/Textures/BackArrowDark.png diff --git a/Assets/PolyToolkit/Editor/Textures/BackArrowDark.png.meta b/Packages/icosa-api-client-unity/Editor/Textures/BackArrowDark.png.meta similarity index 61% rename from Assets/PolyToolkit/Editor/Textures/BackArrowDark.png.meta rename to Packages/icosa-api-client-unity/Editor/Textures/BackArrowDark.png.meta index 61954b4..8a4a345 100644 --- a/Assets/PolyToolkit/Editor/Textures/BackArrowDark.png.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures/BackArrowDark.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: 5184c7e48eec2124e92bd9b50c9bfbd7 -timeCreated: 1508336070 -licenseType: Free TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 - wrapMode: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 nPOTScale: 0 lightmap: 0 compressionQuality: 50 @@ -39,38 +45,60 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 spriteTessellationDetail: -1 textureType: 8 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Standalone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Textures/DarkGrey.png b/Packages/icosa-api-client-unity/Editor/Textures/DarkGrey.png similarity index 100% rename from Assets/PolyToolkit/Editor/Textures/DarkGrey.png rename to Packages/icosa-api-client-unity/Editor/Textures/DarkGrey.png diff --git a/Assets/PolyToolkit/Editor/Textures/DarkGrey.png.meta b/Packages/icosa-api-client-unity/Editor/Textures/DarkGrey.png.meta similarity index 59% rename from Assets/PolyToolkit/Editor/Textures/DarkGrey.png.meta rename to Packages/icosa-api-client-unity/Editor/Textures/DarkGrey.png.meta index 59d2e99..bcc4662 100644 --- a/Assets/PolyToolkit/Editor/Textures/DarkGrey.png.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures/DarkGrey.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: 968b8acb97391f249841c8cdfa73ee30 -timeCreated: 1508252140 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 - wrapMode: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 nPOTScale: 0 lightmap: 0 compressionQuality: 50 @@ -39,62 +45,96 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 spriteTessellationDetail: -1 textureType: 8 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Standalone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: iPhone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Android + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: WebGL + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: WebGL maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Textures/LightGrey.png b/Packages/icosa-api-client-unity/Editor/Textures/LightGrey.png similarity index 100% rename from Assets/PolyToolkit/Editor/Textures/LightGrey.png rename to Packages/icosa-api-client-unity/Editor/Textures/LightGrey.png diff --git a/Assets/PolyToolkit/Editor/Textures/LightGrey.png.meta b/Packages/icosa-api-client-unity/Editor/Textures/LightGrey.png.meta similarity index 63% rename from Assets/PolyToolkit/Editor/Textures/LightGrey.png.meta rename to Packages/icosa-api-client-unity/Editor/Textures/LightGrey.png.meta index 93afc05..abefa86 100644 --- a/Assets/PolyToolkit/Editor/Textures/LightGrey.png.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures/LightGrey.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: a1493a6183a3f064b976c294c782f918 -timeCreated: 1508272017 -licenseType: Free TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 1 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 - wrapMode: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 nPOTScale: 1 lightmap: 0 compressionQuality: 50 @@ -39,30 +45,48 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 0 spriteTessellationDetail: -1 textureType: 0 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png b/Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitTitle.png similarity index 100% rename from Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png rename to Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitTitle.png diff --git a/Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png.meta b/Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitTitle.png.meta similarity index 59% rename from Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png.meta rename to Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitTitle.png.meta index 9456859..fdfee77 100644 --- a/Assets/PolyToolkit/Editor/Textures/PolyToolkitTitle.png.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitTitle.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: fdb4ebe51fa0a2447aff5be5cf7e3b01 -timeCreated: 1503515684 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 - wrapMode: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 nPOTScale: 0 lightmap: 0 compressionQuality: 50 @@ -39,62 +45,96 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 spriteTessellationDetail: -1 textureType: 8 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Standalone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: iPhone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Android + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: WebGL + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: WebGL maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png b/Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitWelcome.png similarity index 100% rename from Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png rename to Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitWelcome.png diff --git a/Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png.meta b/Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitWelcome.png.meta similarity index 59% rename from Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png.meta rename to Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitWelcome.png.meta index 6dddfa3..4900cac 100644 --- a/Assets/PolyToolkit/Editor/Textures/PolyToolkitWelcome.png.meta +++ b/Packages/icosa-api-client-unity/Editor/Textures/PolyToolkitWelcome.png.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 guid: a49c67b767e7df746b6c5a4383022279 -timeCreated: 1505829178 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 4 + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -12,6 +11,8 @@ TextureImporter: linearTexture: 0 fadeOut: 0 borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 mipMapFadeDistanceStart: 1 mipMapFadeDistanceEnd: 3 bumpmap: @@ -20,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -27,10 +30,13 @@ TextureImporter: textureFormat: 1 maxTextureSize: 2048 textureSettings: + serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 - wrapMode: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 nPOTScale: 0 lightmap: 0 compressionQuality: 50 @@ -39,62 +45,96 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 spriteTessellationDetail: -1 textureType: 8 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Standalone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: iPhone + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: Android + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 - - buildTarget: WebGL + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: WebGL maxTextureSize: 2048 + resizeAlgorithm: 0 textureFormat: -1 textureCompression: 1 compressionQuality: 50 crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Editor/WarnIfManagerNotInScene.cs b/Packages/icosa-api-client-unity/Editor/WarnIfManagerNotInScene.cs similarity index 100% rename from Assets/PolyToolkit/Editor/WarnIfManagerNotInScene.cs rename to Packages/icosa-api-client-unity/Editor/WarnIfManagerNotInScene.cs diff --git a/Assets/PolyToolkit/Editor/WarnIfManagerNotInScene.cs.meta b/Packages/icosa-api-client-unity/Editor/WarnIfManagerNotInScene.cs.meta similarity index 84% rename from Assets/PolyToolkit/Editor/WarnIfManagerNotInScene.cs.meta rename to Packages/icosa-api-client-unity/Editor/WarnIfManagerNotInScene.cs.meta index fbae087..200a637 100644 --- a/Assets/PolyToolkit/Editor/WarnIfManagerNotInScene.cs.meta +++ b/Packages/icosa-api-client-unity/Editor/WarnIfManagerNotInScene.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 7d1b183bf0f2be34da82358842b2ca83 -timeCreated: 1502418897 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Packages/icosa-api-client-unity/Editor/icosa-api-client-unity-editor.asmdef b/Packages/icosa-api-client-unity/Editor/icosa-api-client-unity-editor.asmdef new file mode 100644 index 0000000..116358b --- /dev/null +++ b/Packages/icosa-api-client-unity/Editor/icosa-api-client-unity-editor.asmdef @@ -0,0 +1,15 @@ +{ + "name": "Icosa API Client for Unity-editor", + "references": [ + "GUID:d78e5bd1ea41677448b94d16032f50af" + ], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Packages/icosa-api-client-unity/Editor/icosa-api-client-unity-editor.asmdef.meta b/Packages/icosa-api-client-unity/Editor/icosa-api-client-unity-editor.asmdef.meta new file mode 100644 index 0000000..614bc34 --- /dev/null +++ b/Packages/icosa-api-client-unity/Editor/icosa-api-client-unity-editor.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3d696165b971b534f86f5e9c046ea8e6 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/icosa-api-client-unity/Runtime.meta b/Packages/icosa-api-client-unity/Runtime.meta new file mode 100644 index 0000000..263d3ce --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a5d12d198d8fe245b52cb5204529dd1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal.meta b/Packages/icosa-api-client-unity/Runtime/Internal.meta similarity index 78% rename from Assets/PolyToolkit/Internal.meta rename to Packages/icosa-api-client-unity/Runtime/Internal.meta index 6a026ee..c5c2717 100644 --- a/Assets/PolyToolkit/Internal.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 5cd7a9a9fc08de74e9b21d6e5bbaaf41 folderAsset: yes -timeCreated: 1502214992 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/AsyncImporter.cs b/Packages/icosa-api-client-unity/Runtime/Internal/AsyncImporter.cs similarity index 100% rename from Assets/PolyToolkit/Internal/AsyncImporter.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/AsyncImporter.cs diff --git a/Assets/PolyToolkit/Internal/AsyncImporter.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/AsyncImporter.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/AsyncImporter.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/AsyncImporter.cs.meta index 87cae51..f557cb2 100644 --- a/Assets/PolyToolkit/Internal/AsyncImporter.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/AsyncImporter.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: f5d4753417449cc46bc7a554f0be097e -timeCreated: 1509725480 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/AttributionGeneration.cs b/Packages/icosa-api-client-unity/Runtime/Internal/AttributionGeneration.cs similarity index 100% rename from Assets/PolyToolkit/Internal/AttributionGeneration.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/AttributionGeneration.cs diff --git a/Assets/PolyToolkit/Internal/AttributionGeneration.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/AttributionGeneration.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/AttributionGeneration.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/AttributionGeneration.cs.meta index af24e3f..3d0abb2 100644 --- a/Assets/PolyToolkit/Internal/AttributionGeneration.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/AttributionGeneration.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 9925f5efc16424d4c8fec9fa728c415e -timeCreated: 1509051231 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/Authenticator.cs b/Packages/icosa-api-client-unity/Runtime/Internal/Authenticator.cs similarity index 100% rename from Assets/PolyToolkit/Internal/Authenticator.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/Authenticator.cs diff --git a/Assets/PolyToolkit/Internal/Authenticator.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/Authenticator.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/Authenticator.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/Authenticator.cs.meta index 1121c23..b6551f1 100644 --- a/Assets/PolyToolkit/Internal/Authenticator.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/Authenticator.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 4d45bf07e063f7643b99a4971a67c22f -timeCreated: 1494954510 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/AutoStringify.cs b/Packages/icosa-api-client-unity/Runtime/Internal/AutoStringify.cs similarity index 100% rename from Assets/PolyToolkit/Internal/AutoStringify.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/AutoStringify.cs diff --git a/Assets/PolyToolkit/Internal/AutoStringify.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/AutoStringify.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/AutoStringify.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/AutoStringify.cs.meta index 8c849c7..8081336 100644 --- a/Assets/PolyToolkit/Internal/AutoStringify.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/AutoStringify.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 8fbe3c7f46be3e44fb3dc136d11526d5 -timeCreated: 1508268305 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/CoroutineRunner.cs b/Packages/icosa-api-client-unity/Runtime/Internal/CoroutineRunner.cs similarity index 100% rename from Assets/PolyToolkit/Internal/CoroutineRunner.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/CoroutineRunner.cs diff --git a/Assets/PolyToolkit/Internal/CoroutineRunner.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/CoroutineRunner.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/CoroutineRunner.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/CoroutineRunner.cs.meta index 820fd2a..95aeb49 100644 --- a/Assets/PolyToolkit/Internal/CoroutineRunner.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/CoroutineRunner.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: fa6e28eaf932d0c4aa8ba33e7aafec25 -timeCreated: 1501861096 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/DisabledPropertyAttribute.cs b/Packages/icosa-api-client-unity/Runtime/Internal/DisabledPropertyAttribute.cs similarity index 100% rename from Assets/PolyToolkit/Internal/DisabledPropertyAttribute.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/DisabledPropertyAttribute.cs diff --git a/Assets/PolyToolkit/Internal/DisabledPropertyAttribute.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/DisabledPropertyAttribute.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/DisabledPropertyAttribute.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/DisabledPropertyAttribute.cs.meta index 2da80aa..e751193 100644 --- a/Assets/PolyToolkit/Internal/DisabledPropertyAttribute.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/DisabledPropertyAttribute.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 8214b1e93247af64bad10ae0fe180071 -timeCreated: 1503434135 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/EditTimeImportOptions.cs b/Packages/icosa-api-client-unity/Runtime/Internal/EditTimeImportOptions.cs similarity index 100% rename from Assets/PolyToolkit/Internal/EditTimeImportOptions.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/EditTimeImportOptions.cs diff --git a/Assets/PolyToolkit/Internal/EditTimeImportOptions.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/EditTimeImportOptions.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/EditTimeImportOptions.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/EditTimeImportOptions.cs.meta index 6e020b5..98d1175 100644 --- a/Assets/PolyToolkit/Internal/EditTimeImportOptions.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/EditTimeImportOptions.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 2c9884ba956bc2648a0299f2dd09b525 -timeCreated: 1503610809 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/Features.cs b/Packages/icosa-api-client-unity/Runtime/Internal/Features.cs similarity index 100% rename from Assets/PolyToolkit/Internal/Features.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/Features.cs diff --git a/Assets/PolyToolkit/Internal/Features.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/Features.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/Features.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/Features.cs.meta index 5fa8ebb..14aa354 100644 --- a/Assets/PolyToolkit/Internal/Features.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/Features.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 0c9e517a09a646348b90c085b765e821 -timeCreated: 1495657360 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/Gltf1Schema.cs b/Packages/icosa-api-client-unity/Runtime/Internal/Gltf1Schema.cs similarity index 100% rename from Assets/PolyToolkit/Internal/Gltf1Schema.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/Gltf1Schema.cs diff --git a/Assets/PolyToolkit/Internal/Gltf1Schema.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/Gltf1Schema.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/Gltf1Schema.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/Gltf1Schema.cs.meta index ba6b2a4..13a4b76 100644 --- a/Assets/PolyToolkit/Internal/Gltf1Schema.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/Gltf1Schema.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 066d2944ecf7cd84b9e570761abd8fe1 -timeCreated: 1502306163 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/Gltf2Schema.cs b/Packages/icosa-api-client-unity/Runtime/Internal/Gltf2Schema.cs similarity index 100% rename from Assets/PolyToolkit/Internal/Gltf2Schema.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/Gltf2Schema.cs diff --git a/Assets/PolyToolkit/Internal/Gltf2Schema.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/Gltf2Schema.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/Gltf2Schema.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/Gltf2Schema.cs.meta index ff87293..dcc971e 100644 --- a/Assets/PolyToolkit/Internal/Gltf2Schema.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/Gltf2Schema.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 7ccda7f5e9d295042b901c4e9cd17302 -timeCreated: 1506009710 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/GltfMaterialConverter.cs b/Packages/icosa-api-client-unity/Runtime/Internal/GltfMaterialConverter.cs similarity index 100% rename from Assets/PolyToolkit/Internal/GltfMaterialConverter.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/GltfMaterialConverter.cs diff --git a/Assets/PolyToolkit/Internal/GltfMaterialConverter.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/GltfMaterialConverter.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/GltfMaterialConverter.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/GltfMaterialConverter.cs.meta index 1829f86..c1fb9f5 100644 --- a/Assets/PolyToolkit/Internal/GltfMaterialConverter.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/GltfMaterialConverter.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 323480cbcea75f3449284d50bbcadba4 -timeCreated: 1506102462 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/GltfSchemaCommon.cs b/Packages/icosa-api-client-unity/Runtime/Internal/GltfSchemaCommon.cs similarity index 100% rename from Assets/PolyToolkit/Internal/GltfSchemaCommon.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/GltfSchemaCommon.cs diff --git a/Assets/PolyToolkit/Internal/GltfSchemaCommon.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/GltfSchemaCommon.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/GltfSchemaCommon.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/GltfSchemaCommon.cs.meta index bc3543e..3b22351 100644 --- a/Assets/PolyToolkit/Internal/GltfSchemaCommon.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/GltfSchemaCommon.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 90c7080a01def4f49900c122879bb31c -timeCreated: 1506019645 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/HelpTextAttribute.cs b/Packages/icosa-api-client-unity/Runtime/Internal/HelpTextAttribute.cs similarity index 100% rename from Assets/PolyToolkit/Internal/HelpTextAttribute.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/HelpTextAttribute.cs diff --git a/Assets/PolyToolkit/Internal/HelpTextAttribute.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/HelpTextAttribute.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/HelpTextAttribute.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/HelpTextAttribute.cs.meta index 66f5bb6..b6ede5d 100644 --- a/Assets/PolyToolkit/Internal/HelpTextAttribute.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/HelpTextAttribute.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 9f1b07f35e75afe4684f07170d9ffc7c -timeCreated: 1502910136 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/IUriLoader.cs b/Packages/icosa-api-client-unity/Runtime/Internal/IUriLoader.cs similarity index 100% rename from Assets/PolyToolkit/Internal/IUriLoader.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/IUriLoader.cs diff --git a/Assets/PolyToolkit/Internal/IUriLoader.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/IUriLoader.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/IUriLoader.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/IUriLoader.cs.meta index 61a289d..67d333a 100644 --- a/Assets/PolyToolkit/Internal/IUriLoader.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/IUriLoader.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 836eeae312a7b7649b5687a470ed2db2 -timeCreated: 1504144555 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/ImportGltf.cs b/Packages/icosa-api-client-unity/Runtime/Internal/ImportGltf.cs similarity index 100% rename from Assets/PolyToolkit/Internal/ImportGltf.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/ImportGltf.cs diff --git a/Assets/PolyToolkit/Internal/ImportGltf.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/ImportGltf.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/ImportGltf.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/ImportGltf.cs.meta index f02c793..5138359 100644 --- a/Assets/PolyToolkit/Internal/ImportGltf.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/ImportGltf.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 970ae5dc6ceedf1409381dc4aaae648a -timeCreated: 1502227619 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/IntRange.cs b/Packages/icosa-api-client-unity/Runtime/Internal/IntRange.cs similarity index 100% rename from Assets/PolyToolkit/Internal/IntRange.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/IntRange.cs diff --git a/Assets/PolyToolkit/Internal/IntRange.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/IntRange.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/IntRange.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/IntRange.cs.meta index c7ea7f9..cd2f3db 100644 --- a/Assets/PolyToolkit/Internal/IntRange.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/IntRange.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 1d3fc8b95a1c2de4082f9333cafee1dd -timeCreated: 1502331763 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/MathUtils.cs b/Packages/icosa-api-client-unity/Runtime/Internal/MathUtils.cs similarity index 100% rename from Assets/PolyToolkit/Internal/MathUtils.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/MathUtils.cs diff --git a/Assets/PolyToolkit/Internal/MathUtils.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/MathUtils.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/MathUtils.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/MathUtils.cs.meta index 4b236b1..8409bcb 100644 --- a/Assets/PolyToolkit/Internal/MathUtils.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/MathUtils.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 967feabbaa8822641add475087aeda4a -timeCreated: 1502239723 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/MeasurementUnits.cs b/Packages/icosa-api-client-unity/Runtime/Internal/MeasurementUnits.cs similarity index 100% rename from Assets/PolyToolkit/Internal/MeasurementUnits.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/MeasurementUnits.cs diff --git a/Assets/PolyToolkit/Internal/MeasurementUnits.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/MeasurementUnits.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/MeasurementUnits.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/MeasurementUnits.cs.meta index 163450e..eb4bb47 100644 --- a/Assets/PolyToolkit/Internal/MeasurementUnits.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/MeasurementUnits.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 11fa1c7039e414342bc8c4a453eb3d10 -timeCreated: 1503610809 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/PolyInternalUtils.cs b/Packages/icosa-api-client-unity/Runtime/Internal/PolyInternalUtils.cs similarity index 100% rename from Assets/PolyToolkit/Internal/PolyInternalUtils.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/PolyInternalUtils.cs diff --git a/Assets/PolyToolkit/Internal/PolyInternalUtils.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/PolyInternalUtils.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/PolyInternalUtils.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/PolyInternalUtils.cs.meta index 116ed2a..64065e2 100644 --- a/Assets/PolyToolkit/Internal/PolyInternalUtils.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/PolyInternalUtils.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: db4c2a72db7758e438e85f1b2ff07343 -timeCreated: 1498595327 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/PolyMainInternal.cs b/Packages/icosa-api-client-unity/Runtime/Internal/PolyMainInternal.cs similarity index 96% rename from Assets/PolyToolkit/Internal/PolyMainInternal.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/PolyMainInternal.cs index d85b61f..c575d46 100644 --- a/Assets/PolyToolkit/Internal/PolyMainInternal.cs +++ b/Packages/icosa-api-client-unity/Runtime/Internal/PolyMainInternal.cs @@ -58,6 +58,7 @@ public class PolyMainInternal : MonoBehaviour { /// API key for use with the Poly server. /// public string apiKey { get; private set; } + public string apiKeyUrlParam => string.IsNullOrEmpty(apiKey) ? "" : $"key={apiKey}"; /// /// The web request manager, which handles any Poly web requests we need to make. @@ -119,12 +120,13 @@ private void Setup(PolyAuthConfig? authConfig, PolyCacheConfig? cacheConfig) { authConfig = authConfig ?? PtSettings.Instance.authConfig; cacheConfig = cacheConfig ?? PtSettings.Instance.cacheConfig; - // Check that the user actually set up their API key in authConfig, and didn't just leave the default - // value in (the placeholder value starts with "**" so that's what we check for). - if (string.IsNullOrEmpty(authConfig.Value.apiKey) || authConfig.Value.apiKey.StartsWith("**")) { - throw new System.Exception("API Key not configured. Set your API key in in Poly Toolkit " + - "Settings ('Runtime' section)."); - } + // Icosa doesn't currently need an API key + // // Check that the user actually set up their API key in authConfig, and didn't just leave the default + // // value in (the placeholder value starts with "**" so that's what we check for). + // if (string.IsNullOrEmpty(authConfig.Value.apiKey) || authConfig.Value.apiKey.StartsWith("**")) { + // throw new System.Exception("API Key not configured. Set your API key in in Poly Toolkit " + + // "Settings ('Runtime' section)."); + // } this.apiKey = authConfig.Value.apiKey; backgroundMain = gameObject.AddComponent(); diff --git a/Assets/PolyToolkit/Internal/PolyMainInternal.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/PolyMainInternal.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/PolyMainInternal.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/PolyMainInternal.cs.meta index 547bda2..04dd1f8 100644 --- a/Assets/PolyToolkit/Internal/PolyMainInternal.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/PolyMainInternal.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 5d6a36ce07efcd84c92489695140f206 -timeCreated: 1495657360 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/PolyUtils.cs b/Packages/icosa-api-client-unity/Runtime/Internal/PolyUtils.cs similarity index 100% rename from Assets/PolyToolkit/Internal/PolyUtils.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/PolyUtils.cs diff --git a/Assets/PolyToolkit/Internal/PolyUtils.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/PolyUtils.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/PolyUtils.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/PolyUtils.cs.meta index d7843d6..4d1c9c0 100644 --- a/Assets/PolyToolkit/Internal/PolyUtils.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/PolyUtils.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 0c6dd409854d1dd46bff92ae5fb04289 -timeCreated: 1494954510 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/PtDebug.cs b/Packages/icosa-api-client-unity/Runtime/Internal/PtDebug.cs similarity index 100% rename from Assets/PolyToolkit/Internal/PtDebug.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/PtDebug.cs diff --git a/Assets/PolyToolkit/Internal/PtDebug.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/PtDebug.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/PtDebug.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/PtDebug.cs.meta index 2094191..3e01f6e 100644 --- a/Assets/PolyToolkit/Internal/PtDebug.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/PtDebug.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: fe5294f6e6da35c42bf224e48a788c5a -timeCreated: 1502219021 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/PtSettings.cs b/Packages/icosa-api-client-unity/Runtime/Internal/PtSettings.cs similarity index 100% rename from Assets/PolyToolkit/Internal/PtSettings.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/PtSettings.cs diff --git a/Assets/PolyToolkit/Internal/PtSettings.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/PtSettings.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/PtSettings.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/PtSettings.cs.meta index 6f0bcde..ea0fca0 100644 --- a/Assets/PolyToolkit/Internal/PtSettings.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/PtSettings.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: a603ca56417194c4fbf2ac70d2c3efd1 -timeCreated: 1502412334 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/ThumbnailFetcher.cs b/Packages/icosa-api-client-unity/Runtime/Internal/ThumbnailFetcher.cs similarity index 100% rename from Assets/PolyToolkit/Internal/ThumbnailFetcher.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/ThumbnailFetcher.cs diff --git a/Assets/PolyToolkit/Internal/ThumbnailFetcher.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/ThumbnailFetcher.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/ThumbnailFetcher.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/ThumbnailFetcher.cs.meta index 40ce78d..4373454 100644 --- a/Assets/PolyToolkit/Internal/ThumbnailFetcher.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/ThumbnailFetcher.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 3ccd64dba3997064789ac173855e1dbd -timeCreated: 1501597496 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/UnityCompat.cs b/Packages/icosa-api-client-unity/Runtime/Internal/UnityCompat.cs similarity index 100% rename from Assets/PolyToolkit/Internal/UnityCompat.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/UnityCompat.cs diff --git a/Assets/PolyToolkit/Internal/UnityCompat.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/UnityCompat.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/UnityCompat.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/UnityCompat.cs.meta index 9f8ef98..83bf457 100644 --- a/Assets/PolyToolkit/Internal/UnityCompat.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/UnityCompat.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 11c848c82fbd6bb4784bb2d9b904e38d -timeCreated: 1511286342 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/Version.cs b/Packages/icosa-api-client-unity/Runtime/Internal/Version.cs similarity index 100% rename from Assets/PolyToolkit/Internal/Version.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/Version.cs diff --git a/Assets/PolyToolkit/Internal/Version.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/Version.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/Version.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/Version.cs.meta index d0f16d4..8870cf4 100644 --- a/Assets/PolyToolkit/Internal/Version.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/Version.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: b761db401d1c4a64abbea7dd57467443 -timeCreated: 1502731336 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/api_clients.meta b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients.meta similarity index 78% rename from Assets/PolyToolkit/Internal/api_clients.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/api_clients.meta index b0e78e3..cd46dcc 100644 --- a/Assets/PolyToolkit/Internal/api_clients.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 05543502f368ddf41b6a5ab1f3d59e0a folderAsset: yes -timeCreated: 1494880449 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/api_clients/poly_client.meta b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client.meta similarity index 78% rename from Assets/PolyToolkit/Internal/api_clients/poly_client.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client.meta index e3f6483..8e77907 100644 --- a/Assets/PolyToolkit/Internal/api_clients/poly_client.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 8989db4aed4ba9d44b317a70f835eda1 folderAsset: yes -timeCreated: 1502917321 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs similarity index 97% rename from Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs index 59f5919..8f476ff 100644 --- a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs +++ b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs @@ -76,8 +76,6 @@ public class PolyClient : MonoBehaviour { /// assets. /// private const long DEFAULT_QUERY_CACHE_MAX_AGE_MILLIS = 60 * 60 * 1000; // 60 minutes. - // The base for API requests to Poly. - public static string BASE_URL = "https://poly.googleapis.com"; private static readonly Dictionary CATEGORIES = new Dictionary() { {PolyCategory.ANIMALS, "animals"}, @@ -91,14 +89,14 @@ public class PolyClient : MonoBehaviour { {PolyCategory.TECH, "tech"}, {PolyCategory.TRANSPORT, "transport"}, }; - + private static readonly Dictionary ORDER_BY = new Dictionary() { {PolyOrderBy.BEST, "BEST"}, {PolyOrderBy.NEWEST, "NEWEST"}, {PolyOrderBy.OLDEST, "OLDEST"}, {PolyOrderBy.LIKED_TIME, "LIKED_TIME"}, }; - + private static readonly Dictionary FORMAT_FILTER = new Dictionary() { {PolyFormatFilter.BLOCKS, "BLOCKS"}, {PolyFormatFilter.FBX, "FBX"}, @@ -107,7 +105,7 @@ public class PolyClient : MonoBehaviour { {PolyFormatFilter.OBJ, "TILT"}, {PolyFormatFilter.TILT, "TILT"}, }; - + private static readonly Dictionary VISIBILITY = new Dictionary() { {PolyVisibilityFilter.PRIVATE, "PRIVATE"}, {PolyVisibilityFilter.PUBLISHED, "PUBLISHED"}, @@ -125,10 +123,10 @@ public class PolyClient : MonoBehaviour { /// private static string MakeSearchUrl(PolyListAssetsRequest listAssetsRequest) { StringBuilder sb = new StringBuilder(); - sb.Append(BASE_URL) + sb.Append(GetBaseUrl()) .Append("/v1/assets") .AppendFormat("?key={0}", WWW.EscapeURL(PolyMainInternal.Instance.apiKey)); - + if (listAssetsRequest.formatFilter != null) { sb.AppendFormat("&format={0}", WWW.EscapeURL(FORMAT_FILTER[listAssetsRequest.formatFilter.Value])); } @@ -136,7 +134,7 @@ private static string MakeSearchUrl(PolyListAssetsRequest listAssetsRequest) { if (listAssetsRequest.keywords != null) { sb.AppendFormat("&keywords={0}", WWW.EscapeURL(listAssetsRequest.keywords)); } - + if (listAssetsRequest.category != PolyCategory.UNSPECIFIED) { sb.AppendFormat("&category={0}", WWW.EscapeURL(CATEGORIES[listAssetsRequest.category])); } @@ -162,10 +160,10 @@ private static string MakeSearchUrl(PolyListAssetsRequest listAssetsRequest) { /// private static string MakeSearchUrl(PolyListUserAssetsRequest listUserAssetsRequest) { StringBuilder sb = new StringBuilder(); - sb.Append(BASE_URL) + sb.Append(GetBaseUrl()) .Append("/v1/users/me/assets") .AppendFormat("?key={0}", PolyMainInternal.Instance.apiKey); - + if (listUserAssetsRequest.formatFilter != null) { sb.AppendFormat("&format={0}", WWW.EscapeURL(FORMAT_FILTER[listUserAssetsRequest.formatFilter.Value])); } @@ -187,10 +185,10 @@ private static string MakeSearchUrl(PolyListUserAssetsRequest listUserAssetsRequ /// private static string MakeSearchUrl(PolyListLikedAssetsRequest listLikedAssetsRequest) { StringBuilder sb = new StringBuilder(); - sb.Append(BASE_URL) + sb.Append(GetBaseUrl()) .Append("/v1/users/me/likedassets") .AppendFormat("?key={0}", PolyMainInternal.Instance.apiKey); - + sb.AppendFormat("&order_by={0}", WWW.EscapeURL(ORDER_BY[listLikedAssetsRequest.orderBy])); sb.AppendFormat("&page_size={0}", listLikedAssetsRequest.pageSize); if (listLikedAssetsRequest.pageToken != null) { @@ -262,7 +260,7 @@ public static PolyStatus ParseReturnedAssets(string response, out PolyListAssets /// public static PolyStatus ParseAsset(JObject asset, out PolyAsset polyAsset) { polyAsset = new PolyAsset(); - + if (asset["visibility"] == null) { return PolyStatus.Error("Asset has no visibility set."); } @@ -274,7 +272,7 @@ public static PolyStatus ParseAsset(JObject asset, out PolyAsset polyAsset) { polyAsset.thumbnail = new PolyFile(thumbnailElements["relativePath"].ToString(), thumbnailElements["url"].ToString(), thumbnailElements["contentType"].ToString()); } - + if (asset["formats"] == null) { Debug.LogError("No formats found"); } else { @@ -408,18 +406,18 @@ public void SendRequest(PolyRequest request, Action /// If true, this is a recursive call to this function, and no further retries should be attempted. /// - public void GetAsset(string assetId, Action callback, bool isRecursion = false) { + public void GetAsset(string assetId, Action callback, bool isRecursion = false) { // If the user passed in a raw asset ID (no "assets/" prefix), fix it. if (!assetId.StartsWith("assets/")) { assetId = "assets/" + assetId; } PolyMainInternal.Instance.webRequestManager.EnqueueRequest( () => { - string url = String.Format("{0}/v1/{1}?key={2}", BASE_URL, assetId, PolyMainInternal.Instance.apiKey); + string url = String.Format("{0}/v1/{1}?{2}", GetBaseUrl(), assetId, PolyMainInternal.Instance.apiKeyUrlParam); return GetRequest(url, "text/text"); }, (PolyStatus status, int responseCode, byte[] response) => { - if (responseCode == 401 || !status.ok) { + if (responseCode < 200 || responseCode > 299 || !status.ok) { if (isRecursion || !Authenticator.IsInitialized) { callback(PolyStatus.Error("Get asset error ({0})", responseCode), null); return; @@ -439,6 +437,11 @@ public void GetAsset(string assetId, Action callback, bool }, DEFAULT_QUERY_CACHE_MAX_AGE_MILLIS); } + private static string GetBaseUrl() + { + return PtSettings.Instance.authConfig.baseUrl; + } + /// /// Forms a GET request from a HTTP path. /// diff --git a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs.meta index f1efceb..8b632ab 100644 --- a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClient.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: f55c10254e78a3a4cb73e95dfbb9df4e -timeCreated: 1502917321 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClientUtils.cs b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClientUtils.cs similarity index 100% rename from Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClientUtils.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClientUtils.cs diff --git a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClientUtils.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClientUtils.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClientUtils.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClientUtils.cs.meta index dcade1d..aaf0576 100644 --- a/Assets/PolyToolkit/Internal/api_clients/poly_client/PolyClientUtils.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClientUtils.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 7db72f0e0db7a6a48b9c8a5d295e086e -timeCreated: 1502917321 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/caching.meta b/Packages/icosa-api-client-unity/Runtime/Internal/caching.meta similarity index 78% rename from Assets/PolyToolkit/Internal/caching.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/caching.meta index f195285..15b1106 100644 --- a/Assets/PolyToolkit/Internal/caching.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/caching.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 365aca6e1eb9fa744aef99649f68cdd9 folderAsset: yes -timeCreated: 1502725377 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/caching/PersistentBlobCache.cs b/Packages/icosa-api-client-unity/Runtime/Internal/caching/PersistentBlobCache.cs similarity index 100% rename from Assets/PolyToolkit/Internal/caching/PersistentBlobCache.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/caching/PersistentBlobCache.cs diff --git a/Assets/PolyToolkit/Internal/caching/PersistentBlobCache.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/caching/PersistentBlobCache.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/caching/PersistentBlobCache.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/caching/PersistentBlobCache.cs.meta index 52bcaab..31051d0 100644 --- a/Assets/PolyToolkit/Internal/caching/PersistentBlobCache.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/caching/PersistentBlobCache.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 3117be03c2cc51240bd0c0e494d3b230 -timeCreated: 1502725377 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/entitlement.meta b/Packages/icosa-api-client-unity/Runtime/Internal/entitlement.meta similarity index 78% rename from Assets/PolyToolkit/Internal/entitlement.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/entitlement.meta index c574bf9..24cdfa3 100644 --- a/Assets/PolyToolkit/Internal/entitlement.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/entitlement.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: e376385ee1758ac4fbdfdfe17da68656 folderAsset: yes -timeCreated: 1497023960 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/entitlement/OAuth2Identity.cs b/Packages/icosa-api-client-unity/Runtime/Internal/entitlement/OAuth2Identity.cs similarity index 100% rename from Assets/PolyToolkit/Internal/entitlement/OAuth2Identity.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/entitlement/OAuth2Identity.cs diff --git a/Assets/PolyToolkit/Internal/entitlement/OAuth2Identity.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/entitlement/OAuth2Identity.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/entitlement/OAuth2Identity.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/entitlement/OAuth2Identity.cs.meta index 55d37d9..ef2513a 100644 --- a/Assets/PolyToolkit/Internal/entitlement/OAuth2Identity.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/entitlement/OAuth2Identity.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 7b38968dfb5d3a94dbc4f289aa1b2d34 -timeCreated: 1497023972 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/model.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model.meta similarity index 78% rename from Assets/PolyToolkit/Internal/model.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model.meta index aaab5df..e9ab313 100644 --- a/Assets/PolyToolkit/Internal/model.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 50f36087f76014c498409e33c129575a folderAsset: yes -timeCreated: 1494881719 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/model/export.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/export.meta similarity index 78% rename from Assets/PolyToolkit/Internal/model/export.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/export.meta index d6cbaf5..a737987 100644 --- a/Assets/PolyToolkit/Internal/model/export.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/export.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 35b9f049048d0c349919305a778aa184 folderAsset: yes -timeCreated: 1494881867 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/model/export/ExportUtils.cs b/Packages/icosa-api-client-unity/Runtime/Internal/model/export/ExportUtils.cs similarity index 100% rename from Assets/PolyToolkit/Internal/model/export/ExportUtils.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/model/export/ExportUtils.cs diff --git a/Assets/PolyToolkit/Internal/model/export/ExportUtils.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/export/ExportUtils.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/model/export/ExportUtils.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/export/ExportUtils.cs.meta index 1885823..59a1ed9 100644 --- a/Assets/PolyToolkit/Internal/model/export/ExportUtils.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/export/ExportUtils.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 888a02759b5e87f4c8c4ad5e6c25690c -timeCreated: 1494881976 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/model/export/Exporter.cs b/Packages/icosa-api-client-unity/Runtime/Internal/model/export/Exporter.cs similarity index 100% rename from Assets/PolyToolkit/Internal/model/export/Exporter.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/model/export/Exporter.cs diff --git a/Assets/PolyToolkit/Internal/model/export/Exporter.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/export/Exporter.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/model/export/Exporter.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/export/Exporter.cs.meta index ff2f749..12714a6 100644 --- a/Assets/PolyToolkit/Internal/model/export/Exporter.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/export/Exporter.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 886608b14fa9a314787ada9fc99e7f1d -timeCreated: 1494881896 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/model/util.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/util.meta similarity index 78% rename from Assets/PolyToolkit/Internal/model/util.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util.meta index 6366cca..a57da66 100644 --- a/Assets/PolyToolkit/Internal/model/util.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/util.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d4dfcad767ee8844f85d3207ad03954d folderAsset: yes -timeCreated: 1494881725 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/model/util/BackgroundMain.cs b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundMain.cs similarity index 100% rename from Assets/PolyToolkit/Internal/model/util/BackgroundMain.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundMain.cs diff --git a/Assets/PolyToolkit/Internal/model/util/BackgroundMain.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundMain.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/model/util/BackgroundMain.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundMain.cs.meta index 900ade4..b098a9e 100644 --- a/Assets/PolyToolkit/Internal/model/util/BackgroundMain.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundMain.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: fac7dd670b9fb074b9736a9911cc612d -timeCreated: 1495653800 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/model/util/BackgroundWork.cs b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundWork.cs similarity index 100% rename from Assets/PolyToolkit/Internal/model/util/BackgroundWork.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundWork.cs diff --git a/Assets/PolyToolkit/Internal/model/util/BackgroundWork.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundWork.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/model/util/BackgroundWork.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundWork.cs.meta index 070f3aa..a4d339f 100644 --- a/Assets/PolyToolkit/Internal/model/util/BackgroundWork.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/BackgroundWork.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 23702cfc251d4a34f9dc29d4ff7d3ea0 -timeCreated: 1494881730 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/model/util/ConcurrentQueue.cs b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/ConcurrentQueue.cs similarity index 100% rename from Assets/PolyToolkit/Internal/model/util/ConcurrentQueue.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/ConcurrentQueue.cs diff --git a/Assets/PolyToolkit/Internal/model/util/ConcurrentQueue.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/ConcurrentQueue.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/model/util/ConcurrentQueue.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/ConcurrentQueue.cs.meta index bcb556a..0e42c7f 100644 --- a/Assets/PolyToolkit/Internal/model/util/ConcurrentQueue.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/ConcurrentQueue.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 000b4aa2be11f674f9e98c1516edad15 -timeCreated: 1495653800 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/model/util/WebRequestManager.cs b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/WebRequestManager.cs similarity index 100% rename from Assets/PolyToolkit/Internal/model/util/WebRequestManager.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/WebRequestManager.cs diff --git a/Assets/PolyToolkit/Internal/model/util/WebRequestManager.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/WebRequestManager.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/model/util/WebRequestManager.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/model/util/WebRequestManager.cs.meta index 1e4904b..897d010 100644 --- a/Assets/PolyToolkit/Internal/model/util/WebRequestManager.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/model/util/WebRequestManager.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: e1f3cb0e9bee92d49838df1e35da91e7 -timeCreated: 1495654997 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/tbt.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt.meta index 4be1197..787f0d7 100644 --- a/Assets/PolyToolkit/Internal/tbt.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 0d8d82b29081749489f47d756f6a9152 folderAsset: yes -timeCreated: 1502140174 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes.meta index 30d4b95..3d9ded7 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 417b2f1bdc1c34fea98eb6ace9531e4e folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/AllBrushes.asset similarity index 98% rename from Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/AllBrushes.asset index 999dfdc..a092bbe 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/AllBrushes.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/AllBrushes.asset.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/AllBrushes.asset.meta index cc7249d..18d97e9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/AllBrushes.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/AllBrushes.asset.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 2b3e59298bb8cfc47bddd1e1ea01be06 -timeCreated: 1495576363 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic.meta index 13d46bd..9d9e3a2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 02e7509562ea74d65a8d6ae3d32a61eb folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles.meta index 280f319..1b5988e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 8c27d77dc6d1c3b4f805e7661fbafdbc folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset index 0a19e94..bb21278 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta index 5fc7279..b7c2128 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: cadc04d18daae874aa63168911a19ba6 -timeCreated: 1495127967 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat index 91b111d..4ffdd85 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Bubbles m_Shader: {fileID: 4800000, guid: ecfbf36005cdcc94d881047728719bd8, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta index db033a9..d3e35c1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 89d104cdd012426bb5b3bbaee63ac43c -timeCreated: 1495148312 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta index eb27173..59c3f42 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/Bubbles.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: ecfbf36005cdcc94d881047728719bd8 -timeCreated: 1467773228 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png.meta new file mode 100644 index 0000000..1ba81e3 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Bubbles/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: ed9b3d77606ffd840bbc7ae1adfedced +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 1 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl.meta index d8ae333..b13e645 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: c1ac470b25cdeb54da536f27d9b604ae folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta index 7680fa1..63143ea 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 8ece14794d9fb9c42a263008101ca435 -timeCreated: 1496853657 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset index 7a3e52f..1020d70 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta index b605f75..934cd73 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 94e865ca3b92ee5568334254825adac1 -timeCreated: 1529443736 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat index 31c8b8b..b61db45 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: CelVinyl_16 m_Shader: {fileID: 4800000, guid: 8ece14794d9fb9c42a263008101ca435, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta index fedc62f..76d1f8e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/CelVinyl_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 700f3aa89a7c23848b8aea028905dd8c -timeCreated: 1496858561 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CelVinyl/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/main.png.meta new file mode 100644 index 0000000..90b6277 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CelVinyl/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 8aecb07e1a668d24f89309f1e2dab649 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave.meta index 18520a6..cdaa567 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 76dbfacbeaac545c2969f4083610a42a folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset index cce8aaf..248053b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta index 2197aaf..56bcb89 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 58575cce2727fec449fd95b38f249b39 -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat index e4455c3..cd5bfb4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: ChromaticWave m_Shader: {fileID: 4800000, guid: 89cb52de98c379048bcf61a01a3c5f18, type: 3} m_ShaderKeywords: _LIGHTMAPPING_REALTIME diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta index 91a0b2d..8b74da9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 0f0ff7b2a67745eba7d60cd7206f4816 -timeCreated: 1481917492 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta index 0a42ec5..ea9526d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ChromaticWave/ChromaticWave.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 89cb52de98c379048bcf61a01a3c5f18 -timeCreated: 1457578865 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles.meta index 9dd046c..24a4cb2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: a65beed478c1c9f418ba66dc62f24a25 folderAsset: yes -timeCreated: 1510081038 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset index 44e7990..7942bb8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta index f5ae073..0c6f8f5 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: d654adeb77b0e4e57be9d81558a4eab8 -timeCreated: 1529443738 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat index 31407e0..70dda31 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: CoarseBristles m_Shader: {fileID: 4800000, guid: 76dc2f7fe973ede4bbbedfc291269c84, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta index fa24d6f..f4b5820 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/CoarseBristles.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 1161af8250cf47db97060c3576d43c43 -timeCreated: 1496878118 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png.meta new file mode 100644 index 0000000..9518daf --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristles/leaves.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 511e136566fbfc241b63ff2207dbcafe +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta index a19a2a6..f155097 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 55c48f5b982f74c8f8e56dc6231d813b folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset index 8b30232..9ee36ea 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta index 8be28e9..6a02b8c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 07ab675df8bcbd148809e406fcd485fd -timeCreated: 1529443739 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat index 600990f..e63231a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: CoarseBristlesSingleSided m_Shader: {fileID: 4800000, guid: 561cd39ab4e063843a09f5c11c3a8531, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta index ab151c3..5bec9aa 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/CoarseBristlesSingleSided/CoarseBristlesSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 79168f106961464a8be157ed364c5600 -timeCreated: 1496878118 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet.meta index 3d83221..973c06f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 62b4c3eee0cc3c24fbf0d7540d0c17c7 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta index 58191ac..526768f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 8224f6980454ee9448eaf50da5fc3ca4 -timeCreated: 1497652398 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset index b9d3921..71c2787 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta index 9b1ab50..7a8651a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: ac595c6b6de2ec859a96231504448d7c -timeCreated: 1529443740 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat index 294b53e..c29ba36 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Comet_16 m_Shader: {fileID: 4800000, guid: 8224f6980454ee9448eaf50da5fc3ca4, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta index 0466bda..73ba8b4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/Comet_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 1caa6d7df0153f543a4b8b5354d39f81 -timeCreated: 1497650213 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/gradient.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/gradient.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/gradient.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/gradient.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/gradient.png.meta new file mode 100644 index 0000000..ffac09e --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/gradient.png.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: b0396e66243f48449a3710f12f224199 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: 7 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Comet/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/main.png.meta new file mode 100644 index 0000000..91e104e --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Comet/main.png.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: 5115e6d4283754649a847abe8d481dbc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: 5 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull.meta index 335e154..a2f4144 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 15b3dae174161574f92dffb874c697d6 folderAsset: yes -timeCreated: 1526501037 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta index f1ef0b8..cb40ffc 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 8521b049d4675f340a0d50e4bd78cd0d -timeCreated: 1452563229 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset index b57eb09..44cbc6c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta index e477fa4..a7624ed 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: c6fa15292ff30d25f819be478121d74e -timeCreated: 1529443740 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat similarity index 96% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat index 861786f..d2c7f5a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: DiamondHull_16 m_Shader: {fileID: 4800000, guid: 8521b049d4675f340a0d50e4bd78cd0d, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta index 26a6252..ec04611 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/DiamondHull_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: c8313697256347fc832e290f4c04b901 -timeCreated: 1498761536 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/main.png diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/main.png.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/main.png.meta index 3982236..5f84058 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DiamondHull/main.png.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DiamondHull/main.png.meta @@ -1,11 +1,9 @@ fileFormatVersion: 2 guid: 2a6e5a1bbfe8dd240ba16ff658d95cd3 -timeCreated: 1525713743 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} + internalIDToNameTable: [] externalObjects: {} - serializedVersion: 4 + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 1 @@ -23,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -33,7 +33,7 @@ TextureImporter: serializedVersion: 2 filterMode: -1 aniso: -1 - mipBias: -1 + mipBias: -100 wrapU: -1 wrapV: -1 wrapW: -1 @@ -45,18 +45,22 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 0 spriteTessellationDetail: -1 textureType: 0 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -66,12 +70,23 @@ TextureImporter: allowsAlphaSplitting: 0 overridden: 0 androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco.meta index 308f8d0..1a16b9a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 1d0680480acf64901a479aed908e5392 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.asset index 6897d8c..a6f03b2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta index 5d18497..0bdb877 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: d4d57e30cdd022945b067d76b7ded1c7 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.mat index 4af6eb5..2b1b909 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Disco m_Shader: {fileID: 4800000, guid: 2d606fd47b43446739974645ed823957, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta index 355951b..65b5625 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 4391aaaadf7343969e3331e4e4930b27 -timeCreated: 1481917491 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta index 3b5bd2a..401339e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Disco/Disco.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 2d606fd47b43446739974645ed823957 -timeCreated: 1466956512 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker.meta index e4d7133..84705d8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 6d3ce30a8c46f47ad84d3a50877ece4d folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset index d94905f..9a41125 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta index 85a01f7..c3dac0a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 89d06e0e0a68a1c488e9eb9bc2ca3abc -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat index 4c88fd5..bfe5215 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: DotMarker m_Shader: {fileID: 4800000, guid: 0688c89ab91f95a49a7395fe0da3a0a6, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta index 8f8e844..2a6a4c0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/DotMarker.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: d1d991f2e7a04cf1b328f57e915e6260 -timeCreated: 1481917493 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png.meta new file mode 100644 index 0000000..a536650 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DotMarker/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: e4cba7db327fac04f9f443913ee51fc0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 128 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots.meta index 2525772..8f7b7b1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 0a31e800d4b353d4d8f6631e850a83ed folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.asset index 6bea7fe..f3a54a5 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta index 8059ca7..41f26ad 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 7f2dcdb5c7d9fc94db14b323331d5860 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.mat index 11291ec..d190d6e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Dots m_Shader: {fileID: 4800000, guid: 732f16cce31764a49a67b2c782bf444a, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta index a8b5324..3edc5f1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 6a1cf9f9032c45ec9b1da6680bee30f7 -timeCreated: 1495148315 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta index 228f682..c86a490 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/Dots.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 732f16cce31764a49a67b2c782bf444a -timeCreated: 1467773228 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Dots/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/maintexture.png.meta new file mode 100644 index 0000000..f52b3a2 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Dots/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: f54d138cbc195f142a9994593db7876a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta index d018335..4f03a1e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: ecdbe1078986341c3b94ed404d076c11 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta index eebfbec..d246466 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DiffuseNoTextureDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 4496a9baf3f2fc446bbaff38336003df -timeCreated: 1467133606 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset index 847ec11..c673258 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta index 2e3342c..a58b229 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: f4ed52160dfaf694ea666a6294e38f42 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat index 294b3f6..5fc2896 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: DoubleTaperedFlat m_Shader: {fileID: 4800000, guid: 4496a9baf3f2fc446bbaff38336003df, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta index 2115379..3bbc1a8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedFlat/DoubleTaperedFlat.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 0d3889f33ede470c8af4f44813306126 -timeCreated: 1481917485 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta index f4ba682..8b6d264 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 0dd12599a16bf4feba6b1694d9e51d82 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset index b872702..df2f146 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta index 7d5857e..b7d3746 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: c2b9f7e0f4fb54b41b7dbeb23b117551 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat index 52219d4..a545cfc 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: DoubleTaperedMarker m_Shader: {fileID: 4800000, guid: e412fb1c98a347b4ab08429cbf1d0894, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta index 17d9f29..c854c06 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 0d3889f33ede470c8af4de4813306126 -timeCreated: 1481917483 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta index ffc9fd8..31b29d6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DoubleTaperedMarker/DoubleTaperedMarker.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: e412fb1c98a347b4ab08429cbf1d0894 -timeCreated: 1466535959 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape.meta index 3412017..1fd935b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: ffa22675c212ec74daba38fd9964c1f1 folderAsset: yes -timeCreated: 1510081710 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset index 0e9df83..947fba6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta index d95f10d..6bf74d2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 1087726a0694716539a6894556a3a557 -timeCreated: 1529443745 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat index 4611114..b4c53db 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: DuctTape m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta index b7a3ceb..1199ae8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/DuctTape.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: d0262945853c44819cbd88586bed93cb -timeCreated: 1496877848 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/main.png.meta new file mode 100644 index 0000000..dc2ab8f --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 1819abb411411e243b701e7dd664ac9a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 512 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTape/normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/normal.png.meta new file mode 100644 index 0000000..68f9400 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTape/normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 23192df5929e8904ba29a31ec2c68e46 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.011 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 512 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta index 2ed08a2..f734bb8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: a6cb0b8fea62f4f66973b6024e34e3fe folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset index def0cc0..d99c36e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta index f195f59..96436ed 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 6d014762200f4014fa8a87bcfaa038fe -timeCreated: 1529443745 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat index b15e21c..0126dba 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: DuctTapeSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta index 6253746..e1a0954 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/DuctTapeSingleSided/DuctTapeSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 3ca16e2fbdcd4da28631dcef342f40f1 -timeCreated: 1496877848 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity.meta index 6465fd7..e0025c3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 45a14045d019d4064a97f49921582ead folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset index 4c2036f..ec9c411 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta index eb80282..c35ff07 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 6e268406bbadd084a825dda73d24387a -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat index bb32a66..a918704 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Electricity m_Shader: {fileID: 4800000, guid: 698f6f8dc012a8b4e9d6f36db04f0dd3, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta index 89f5299..b5ad4af 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: f6e85de36dcc4e7f87fdcee8c3d25d51 -timeCreated: 1481917490 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta index bf85e6a..cf6814e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Electricity/Electricity.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 698f6f8dc012a8b4e9d6f36db04f0dd3 -timeCreated: 1466532907 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers.meta index 2f53ee7..e489452 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 65e0ccd50cf557d46bbf232d10d03ef6 folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.asset index fc88329..a433ee8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta index d4d820e..02d433e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 9f45a29bbed9af6479948c03267fe239 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.mat index c914f77..a85f269 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Embers m_Shader: {fileID: 4800000, guid: f62b84c7d6bc5f24487edcd3a458ce88, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta index 9d57c6a..68b3bf4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 02ffb8667fb24d15b7611012cefb1360 -timeCreated: 1495148303 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta index 20ded7b..43e8c87 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/Embers.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: f62b84c7d6bc5f24487edcd3a458ce88 -timeCreated: 1467773228 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Embers/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/maintexture.png.meta new file mode 100644 index 0000000..60ae266 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Embers/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: b7d6447f2b229224fadf587c59f88775 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire.meta index a8a4ad3..59bfe44 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 519a9b5621c794a688fcf572323c263e folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.asset index c15b685..8996340 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta index 0f523df..c32566e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 3c7ec9f584dd60e4a9308abe95b9f22e -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.mat similarity index 89% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.mat index ee07745..090eb0c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Fire m_Shader: {fileID: 4800000, guid: aed6c5abd15318e448cc6f01d2ac0dd1, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta similarity index 52% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta index 1306c70..1bfe308 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.mat.meta @@ -1,4 +1,8 @@ fileFormatVersion: 2 guid: cb92b59794ca4255b0170e3f42f12f9e NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta similarity index 54% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta index f0beb7d..31e1f4a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/Fire.shader.meta @@ -1,5 +1,9 @@ fileFormatVersion: 2 guid: aed6c5abd15318e448cc6f01d2ac0dd1 ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/fire.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Fire/fire.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/fire.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/fire.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/fire.png.meta new file mode 100644 index 0000000..b5b0d00 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Fire/fire.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 7fd085260938914449a4cdca9398e8d1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 3 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat.meta index a3d3d22..e6be2ea 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: df3a7affa05536c4a9815e1cf740ea74 folderAsset: yes -timeCreated: 1510081809 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.asset index ccc3506..d898ca8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta index d1b41bd..7b976c4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: de779677f45c66b5bb80d8fdc8604238 -timeCreated: 1529443748 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.mat similarity index 93% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.mat index 68a737a..e04107e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Flat m_Shader: {fileID: 4800000, guid: 86ab46f12486fa446b99415e1f4785ca, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta index 9042208..c364e1c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Flat/Flat.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 2d35bcf0e4d8452c97b13311be063130 -timeCreated: 1496877550 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated.meta index c5ac0ad..9aa51d2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: e7cbb64986bcb4e67934bdc279296ac4 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset index a63b41a..4ee52b6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta index 35c9d08..447076e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 969b71c814f75e9408602593d4e10e3e -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat index d557358..525e99b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: FlatDeprecated m_Shader: {fileID: 4800000, guid: 561cd39ab4e063843a09f5c11c3a8531, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta index a715b87..b1b9956 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatDeprecated/FlatDeprecated.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 55303bc4c7494a7298d9d23e68e76e18 -timeCreated: 1481917494 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided.meta index 2c2c87b..9db35ae 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: a5eed852bc1da4426a68c1020bc52f93 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset index 079009e..61ce8eb 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta index f823c6e..364fe17 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: a97674f9669261b48a61cfed32378345 -timeCreated: 1529443749 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat similarity index 93% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat index d66858d..70743dd 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: FlatSingleSided m_Shader: {fileID: 4800000, guid: fc163d24473ddd04881e4fc188ed5802, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta index 33b478f..b3fcc73 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/FlatSingleSided/FlatSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 280c0a7aaad8416ca7d2df63d129ca70 -timeCreated: 1496877550 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter.meta index ed2d9fb..50469a6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: b24fe8a12e5894d89bdaeaeb25427398 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta index 8c77324..d2b8adf 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/AdditiveCutout.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: e2d9c195722354e42a5a45e5b73a9f19 -timeCreated: 1449195007 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset index a757fea..5c19afd 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta index 3a7a159..e21cdcc 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 0cfb52fb947fb6e4786ed9f2bdc5328c -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat similarity index 92% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat index 7d6acac..2f9d618 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Highlighter m_Shader: {fileID: 4800000, guid: e2d9c195722354e42a5a45e5b73a9f19, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta index 6575de1..771cc5c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/Highlighter.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: cf019139d41c4eb0a1d05cf54b0a42f3 -timeCreated: 1481917484 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png.meta new file mode 100644 index 0000000..badd94b --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Highlighter/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 2a6e115fa9494f2479d7a5284cbe2d3b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid.meta index 577f84d..5c1cd38 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: a83c5167788fe4207b5053212294c36b folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset index 6b6a3cc..14caa11 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta index fe47671..600c37f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 88ecf340d7ce92a4bada6eac937e887a -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat similarity index 90% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat index 71cd184..172938b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: HyperGrid m_Shader: {fileID: 4800000, guid: a2fa29912c23a774898a1b8b236ed79d, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta index 600c1a3..7ede3ac 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 6a1cf9f9032c45ec9b6ea6680bee32e9 -timeCreated: 1481917492 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta index 7f1f9da..0903860 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/HyperGrid.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: a2fa29912c23a774898a1b8b236ed79d -timeCreated: 1467942564 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png.meta new file mode 100644 index 0000000..53e8eeb --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HyperGrid/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: b8757e27137f3ba4da9ad36c95d82bb4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor.meta index 7fa9f40..c5fc2e9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 7ef3bb3a348b70a4b87f63d2a4c81e8a folderAsset: yes -timeCreated: 1510081710 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset index d35fb0e..e40a7a8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta index 91d7785..2ab28a6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: b22741da3567d9353a0ccc88393d8c8e -timeCreated: 1529443751 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat similarity index 90% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat index b39bc63..28ebd5f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Hypercolor m_Shader: {fileID: 4800000, guid: 9a1f8894d4b051a43a120f0b237cd2f8, type: 3} m_ShaderKeywords: m_LightmapFlags: 5 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta index 752ee99..d8bc54a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/Hypercolor.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: dce872c27b494684b59bc45387949c5c -timeCreated: 1443583622 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta index 4f65426..4625779 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 9a1f8894d4b051a43a120f0b237cd2f8 -timeCreated: 1443582864 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta index 95d45aa..8e5c925 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/HypercolorSingleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: ea5570411cfab2d4b9b3f053e5497f0a -timeCreated: 1443582864 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/main.png.meta new file mode 100644 index 0000000..a362e47 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: df7c592ef1f278543b4de38471df9994 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Hypercolor/normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/normal.png.meta new file mode 100644 index 0000000..8be4240 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Hypercolor/normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 7c4d1ee0e90a536468404363fb2bef1d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.066 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta index 2ee0dbd..2818e6f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 1e9f1c1c33aed4d949af4efc0604eb17 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset index 29c3007..e0ce3e9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta index 724280c..fea2961 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 3251442494b7f6c43aa51c2ede6c409e -timeCreated: 1529443752 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat similarity index 90% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat index 068c5a6..e740394 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: HypercolorSingleSided m_Shader: {fileID: 4800000, guid: ea5570411cfab2d4b9b3f053e5497f0a, type: 3} m_ShaderKeywords: m_LightmapFlags: 5 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta index dafc35a..00730f4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/HypercolorSingleSided/HypercolorSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: e8ef32b1baa8460a9c2c9cf8506794f5 -timeCreated: 1443583622 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing.meta index 63fe1ee..700bd4e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: ce2758a38cc333d47b9092a3508a04b9 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset index dc7e0b8..91f5e51 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta index a22dad8..b0ef955 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 4fcc165667ef68c5780910cc28494a38 -timeCreated: 1529443753 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat index 3efb840..6a8e0d0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Icing_16 m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta index 03b582f..e3bb911 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/Icing_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 2f212815f4d3c1a4681afeeaf9c6dc37 -timeCreated: 1496358003 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Icing/normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/normal.png.meta new file mode 100644 index 0000000..a5bd156 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Icing/normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 5130495e7534a264da464eec3b7c43d2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.02 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink.meta index 927f167..e71e9d5 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 91b1fb85bb70c524484acdf2b069432e folderAsset: yes -timeCreated: 1510081710 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.asset index 17bd3db..84d50e4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta index 679c3a6..1e9ff05 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: f83c05f7491995a53af9be352980ef25 -timeCreated: 1529443754 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.mat index c294cc5..737922b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Ink m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta index c1df8fd..b5601fa 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/Ink.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: f5c336cf51084b40ade9c687504385ab -timeCreated: 1496877187 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture.png.meta new file mode 100644 index 0000000..e096254 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 31a0dba64c25fa442a02171bc2131ccc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png.meta new file mode 100644 index 0000000..7ff10c8 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Ink/maintexture_normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 599e16957e2a8a84c81e8e72b55312d7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.089 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided.meta index 09f0c34..d425729 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 10e42e3354872413887cf7c0cf1f93bf folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset index 2ffa929..c0e7c38 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta index 0bf8a88..d6e16bc 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 6c27caca67a732d4f9d59b028c4dd9a8 -timeCreated: 1529443755 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat index 30d57e4..e776754 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: InkSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta index 1f97525..9cfe8d0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/InkSingleSided/InkSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: c00120953ffd40408ee1fc180d346eaa -timeCreated: 1496877187 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves.meta index 2f9e808..f71fd43 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: b0761f8bc1bd1a54e914d8e875a22d18 folderAsset: yes -timeCreated: 1510081710 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset index 7a9b813..f4b58f4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta index d91c6bd..7fec75d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.asset.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 6e08a273b7cdf2b50b4db8fcd5d3d9b2 -timeCreated: 1510081749 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 11400000 userData: assetBundleName: diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat new file mode 100644 index 0000000..654546e --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat @@ -0,0 +1,79 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Leaves + m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} + m_ShaderKeywords: _EMISSION + m_LightmapFlags: 1 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 735a5f2fd14c4764682ef32fc6822de5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3743071a0f034424390b1aa53dda0d60, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Shininess: 0.395 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0, g: 0, b: 0, a: 0} diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta index 256f148..0c5e8e9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/Leaves.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 4a76a27a44d84bfe9a8c713749a499b0 -timeCreated: 1496879712 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/leaves.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/leaves.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/leaves.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/leaves.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/leaves.png.meta new file mode 100644 index 0000000..db48020 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/leaves.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 3743071a0f034424390b1aa53dda0d60 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Leaves/normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/normal.png.meta new file mode 100644 index 0000000..6396d1b --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Leaves/normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 735a5f2fd14c4764682ef32fc6822de5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.046 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta index d4efc7c..4bbe9d7 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: de327f6b8aa1b4ef6a931a145d39b360 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset index c7a35f9..cb17ce0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta index f2b8c6d..99a7903 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 362043fe9dab1704fa0f912c4f1e0d09 -timeCreated: 1529443756 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat index 1ea3dc5..2e5fc24 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: LeavesSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta index d1a7e95..4641def 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LeavesSingleSided/LeavesSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: ea19de07d0c04484919818489a3c1487 -timeCreated: 1496879712 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light.meta index c4643f3..2e81759 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: bc0199b9f13244b5d8b1d981a1e5a156 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.asset index 572a160..035e8ad 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.asset.meta index 417e829..77be091 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 54a30b55c2e961643a7701bedc663c88 -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.mat index 0d269fb..0451be7 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Light m_Shader: {fileID: 4800000, guid: 3623f1b71da7dda49b588a77c984e1de, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.mat.meta index 9ff557c..1c550fe 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/Light.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/Light.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 2241cd328ba248a59ee72caef7e9ed62 -timeCreated: 1481917485 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Light/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/maintexture.png.meta new file mode 100644 index 0000000..1b25748 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Light/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 0e093d6c79a128746b77cc289ed425a7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire.meta index cffada0..5dc886a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 08b15b915c3d848adadd97270c9632d9 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset index 59582c8..c5bf79a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta index c3ce6c7..5a29818 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 4f55fba4b64913b419cf4a17ba5d489b -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat index 2b5552d..4b04ba4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: LightWire m_Shader: {fileID: 4800000, guid: 3b4cc34a39a839049b4387ce42e3b56c, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta index 7e1a64b..ca05ffb 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 4391aaaadf8143969e3331e4e4930b27 -timeCreated: 1481917492 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta index 74c6089..598b844 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/LightWire.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 3b4cc34a39a839049b4387ce42e3b56c -timeCreated: 1468009950 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/LightWire/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/maintexture.png.meta new file mode 100644 index 0000000..6104879 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/LightWire/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: ea466d6b6f5981a418210cf0db7aee16 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted.meta index 3df01f0..a2a3057 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: c9b716f4dec38ad4fb9c81c8a204e928 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset index 91f924c..01fc068 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta index c2ef52c..2d8c9d8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 1d8b02cc1233fee5fae7728123e6257d -timeCreated: 1529443758 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat index 336e58b..d10cfde 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Lofted_16 m_Shader: {fileID: 4800000, guid: fc163d24473ddd04881e4fc188ed5802, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta index 544cdf4..4425df5 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Lofted/Lofted_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: d381e0f53def4a0d885331e9200bcbda -timeCreated: 1480279860 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker.meta index b7db94b..381061c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d1fe226ea5a194dfca407b77aeb18203 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.asset index 0b77a90..5ac3bdf 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta index 0afe43d..2b440c3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 3fd505f4dc669fe4c86c80d009ec2efd -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.mat index 985b770..4f4bb90 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Marker m_Shader: {fileID: 4800000, guid: 0688c89ab91f95a49a7395fe0da3a0a6, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta index 224b005..af7c5f3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/Marker.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 429ed64a4e97446684d3145a861ef684 -timeCreated: 1481917483 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Marker/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/maintexture.png.meta new file mode 100644 index 0000000..3ad51b5 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Marker/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: a5e21dec06724194490cbe6156ac19d2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull.meta index e138703..8e85b5a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: b417516d271ce9e48b616776ba472ff5 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset index 9db8860..ce9685e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta index 12d5550..2fa0b88 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: cc8a936db644b835cb1d6ac3836f65f2 -timeCreated: 1529443760 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat similarity index 96% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat index 0739e2f..de62174 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: MatteHull_16 m_Shader: {fileID: 4800000, guid: 76dc2f7fe973ede4bbbedfc291269c84, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta index ac7f248..165328d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/MatteHull/MatteHull_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 79348357432d47468e290e25c112e3aa -timeCreated: 1498761536 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse.meta index 32768cd..58c8394 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 6d30be1916e364cef92e6789c6ef55cc folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset index c34a919..f482fca 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta index a7e7896..c15ca7a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 71228caab923caf46a89c3275938564a -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat similarity index 89% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat index 42c4f79..7ff435d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: NeonPulse m_Shader: {fileID: 4800000, guid: 39f9ec0559d25f44bad64ce4dbc8a0c4, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta index 217e4ed..7c068da 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/NeonPulse/NeonPulse.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: b2ffef01eaaa4ab5aa6495a2c4f5dbc6 -timeCreated: 1481917491 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint.meta index 3e915e7..13e8c8b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: de21f3bce5e9c4a4fba53df768c4d7ba folderAsset: yes -timeCreated: 1510081710 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset index 8baa46c..547e7b3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta index d99cc2b..31c6e5c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 542d61ce63831da52a2faf8cb6e2d161 -timeCreated: 1529443761 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat index cd09e62..f37fbcb 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: OilPaint m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta index 5db939d..267cc1e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/OilPaint.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: f72ec0e7a8444e3882e3140c44772699 -timeCreated: 1496877084 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/main.png.meta new file mode 100644 index 0000000..b05cb98 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: d986b523673bfdb4f8325bc62054d06b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaint/normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/normal.png.meta new file mode 100644 index 0000000..0d155ad --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaint/normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 432d5c408cd625945ab19bb572a6f8e4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.018 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta index 107a6b2..70f0323 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: ed3ecb2d3c34947499301c7968449653 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset index 8f22f90..82cb2e3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta index ae34064..f759608 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: d7ada22e6a436e742910a7553f159550 -timeCreated: 1529443762 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat index caf31e5..1eff0ce 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: OilPaintSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta index 3ff0b7a..c39cd45 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/OilPaintSingleSided/OilPaintSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: c515dad74393468181ad162ef052241b -timeCreated: 1496877084 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper.meta index 9734f1e..9608b45 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 8625be97b62688a4e863ad1bdfa3cc98 folderAsset: yes -timeCreated: 1510081710 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.asset index 1feeff3..034ef4c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta index bae4bb5..29442dd 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 4c750113c587a7e5c97a5627a917967e -timeCreated: 1529443763 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.mat index 512e6dc..493f50f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Paper m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta index 277a961..9a45c06 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/Paper.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: f1114e2eeb8d4fde915a6e653b54e9f5 -timeCreated: 1496878249 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/bump.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/bump.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/bump.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/bump.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/bump.png.meta new file mode 100644 index 0000000..2d4d850 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/bump.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 72b554b36eb21d445a97a119717a00e9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.05 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Paper/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/main.png.meta new file mode 100644 index 0000000..199ef6d --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Paper/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: d2267f6b367938a49abf5cf6e5daab14 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided.meta index ac410db..5a4708d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 03693478f2a54469091fd2233c689891 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset index 22125e5..74ed46b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta index c5e7289..fd73af2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 9b77a7cd7bb6c0244bca8ab8221af846 -timeCreated: 1529443764 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat index 70236f5..8e7942c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: PaperSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta index cbcdab8..7389038 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/PaperSingleSided/PaperSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 759f1ebd20cd47208d41234e0da63716 -timeCreated: 1496878249 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal.meta index 7116745..569fe07 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: e233c138c5b50db499054712013bd11f folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta index a4f14f4..46dbbd6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 542a05b67e6a6ef4c994b08f44143639 -timeCreated: 1498166764 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset index 8e993c7..b924b4d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta index a954a67..071eddb 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: a8f488f387b09e35dba50b6e9904301b -timeCreated: 1529443765 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat index 79ac23b..aead96d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Petal_16 m_Shader: {fileID: 4800000, guid: 542a05b67e6a6ef4c994b08f44143639, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta index f6abb3b..732894e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Petal/Petal_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: e0abbc800f80e85449708924a0863dcc -timeCreated: 1498166756 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma.meta index ceb4a73..ea024a3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 8a75af0d0dd8543fbaa7a6bdfac414dd folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset index f4307cf..8889aea 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta index f984c7b..ed939a1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 7e6a9b8a0ad82cf4da20e86f1a326040 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat similarity index 91% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat index 13e75ce..85cc06d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Plasma m_Shader: {fileID: 4800000, guid: 0417065cc2dc3244588be4534f9bbd91, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta index 0a52839..2574c05 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: c33714d1b2f9412ebd501884c9d46336 -timeCreated: 1481917493 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta index 37b0a45..2be9b57 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/Plasma.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 0417065cc2dc3244588be4534f9bbd91 -timeCreated: 1442704399 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Plasma/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/main.png.meta new file mode 100644 index 0000000..b308214 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Plasma/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 164c6b5add812494f8f5395410e84ac8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow.meta index f1b34c0..61451e8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d9b8d92482e7d473487ecfe04679bd29 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset index bc712d8..e42bd32 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta index a280f09..38f77e3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: d75833fb286458e468c00cc5b0ac5f4d -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat index 12641a2..99d0602 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Rainbow m_Shader: {fileID: 4800000, guid: 2427d50c8f9a5c04592a6dbb537bfa0d, type: 3} m_ShaderKeywords: _LIGHTMAPPING_REALTIME diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta similarity index 63% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta index 1dccd0f..52b9bee 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.mat.meta @@ -1,5 +1,8 @@ fileFormatVersion: 2 guid: ad1ad43776e2450da23ae17f8310b960 NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta similarity index 64% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta index 21388c2..e5e7ff2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Rainbow/Rainbow.shader.meta @@ -1,6 +1,9 @@ fileFormatVersion: 2 guid: 2427d50c8f9a5c04592a6dbb537bfa0d ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull.meta index 7c501f5..d5f21e6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 8a0c46a0755510a44bdb56e138030b6b folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset index 975e3b2..6e16ac1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta index 663e117..595474d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: aaaca97d63dd3d156ad1632b76baaf8d -timeCreated: 1529443767 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat similarity index 96% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat index ae38c48..5cd52e2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: ShinyHull_16 m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta index 29639b4..874e86e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ShinyHull/ShinyHull_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: faaa4d44fcfb417796be753ac0421ba3 -timeCreated: 1498761536 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke.meta index 6f9c98d..112ff1e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 236799d609fcf4d459cf192c6dfe4212 folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset index 7279d83..b398bdb 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta index 44f8ed5..54c0be2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 84e07a49ce756cf44ab7ea2dbdc064c4 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat index a6e7cd7..0168be3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Smoke m_Shader: {fileID: 4800000, guid: b00f8a3e2356b6144b32fe4a62905a7b, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta index 5ccb5f4..77e9597 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 70d79ccab1594f35990cf02193947fe8 -timeCreated: 1495148303 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta index 0ca5e12..7d73cf3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/Smoke.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: b00f8a3e2356b6144b32fe4a62905a7b -timeCreated: 1467773228 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Smoke/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/maintexture.png.meta new file mode 100644 index 0000000..ff268ae --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Smoke/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 5a1c975bb724e2a4ebdde0f9e9674023 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow.meta index 0c22661..f649832 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: efc8e06447270804a96b7c7e3b9c4de0 folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.asset index d18502e..d7b746d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta index 6721aa5..f0c4d42 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 7ccf5a61af1914e409b526a98d43354b -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.mat index ec62745..f3f5421 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Snow m_Shader: {fileID: 4800000, guid: 731f18bedecafd24f8a663a28a1e1b42, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta index 9c0987a..448068f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: d902ed8bd0d1476ca8de878a79e3a34c -timeCreated: 1495148304 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta index 6cc8b6b..c21a1e6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/Snow.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 731f18bedecafd24f8a663a28a1e1b42 -timeCreated: 1467773228 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Snow/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/maintexture.png.meta new file mode 100644 index 0000000..0798e11 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Snow/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: d015d7bf56fb5a248a95618587bc43d5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter.meta index a297190..fc60af1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 868cb1f12b09a445bbc18f983f171220 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset index a4f7c92..e598903 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta index b4192ad..6d794a3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: bf5c0e36bc63d7b418af3ac347cfdcfd -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat similarity index 88% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat index 1de3ad8..e972881 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: SoftHighlighter m_Shader: {fileID: 4800000, guid: 63ee81a0fbf19bc44bec7e2ca3ba73e1, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta index 9d111ba..1e42b40 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: accb32f54509454f93f81df3fd31df1b -timeCreated: 1481917485 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta index 3431dee..f10a10e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/SoftHighlighter.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 63ee81a0fbf19bc44bec7e2ca3ba73e1 -timeCreated: 1467842216 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png.meta new file mode 100644 index 0000000..3d7a1f5 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SoftHighlighter/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 32bb2679f5fb44b4f88d7afc21730e9b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes.meta index 479e3f3..9f84c6c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 383ce8f88c6a43741a36ad0aab01a4e2 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset index 6b20bf2..7bd9c94 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta index decea68..68e18d9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: aa162493b08406a5a82822709c50af77 -timeCreated: 1529443770 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat index 3a1fca4..3cda29a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Spikes_16 m_Shader: {fileID: 4800000, guid: fc163d24473ddd04881e4fc188ed5802, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta index daf00f9..363caf0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Spikes/Spikes_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: cf7f00597aeb53a42b67c83d863a9ffa -timeCreated: 1498171568 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter.meta index e09c629..f6fd920 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 198d4474be9a7264fa23ee405d0cce11 folderAsset: yes -timeCreated: 1510081709 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset index 949eb0c..065f297 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta index b61e877..c283a46 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 20e65e1c9af17105b8a58d0d04ad41c8 -timeCreated: 1529443771 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat index 7b688a8..75df016 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Splatter m_Shader: {fileID: 4800000, guid: 76dc2f7fe973ede4bbbedfc291269c84, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta index 5ac2670..3c12184 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/Splatter.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 8dc4a70cd5584efda5edd4e860f40dc3 -timeCreated: 1496878064 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Splatter/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/main.png.meta new file mode 100644 index 0000000..e639663 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Splatter/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: ff92acc4bd186bd4ca5a9fa9c32220a6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta index 7f8f061..a643616 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 4a4e128289e674525ba66decee6a2e6c folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset index e9701dd..2374024 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta index f2e9d27..59f641d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 402a078d5db9ad0468dda690396443bc -timeCreated: 1529443772 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat index d9bc529..0c4c207 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: SplatterSingleSided m_Shader: {fileID: 4800000, guid: 561cd39ab4e063843a09f5c11c3a8531, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta index f45d5e3..68d487c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/SplatterSingleSided/SplatterSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 7a1c810750c54b709a39421576d6617e -timeCreated: 1496878064 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars.meta index bbfe8dd..0bfbbd2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d724e09c655ee64489991e4cf5fec78b folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.asset index 4a37cb6..aa74a78 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta index 729c546..01a3270 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: b1626af60ae7a31419a1c40afb39c5ed -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.mat index dc927e2..f2de276 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Stars m_Shader: {fileID: 4800000, guid: c5ccca3779289ff49a2768609995604b, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta index 0889ccf..0b56f0d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 0eb4db273f82408db5a119ebd7d5b711 -timeCreated: 1495148305 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta index 110e241..7e075a3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/Stars.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: c5ccca3779289ff49a2768609995604b -timeCreated: 1467773228 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Stars/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/maintexture.png.meta new file mode 100644 index 0000000..e7e0bbf --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Stars/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: e336afde05c4832408da68507aa57261 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 1 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers.meta index 17250a1..d360b32 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 1fc50bfae5a43400cb7d40e6e321d746 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset index a20ad27..11de7ec 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta index 3ec1248..1d99263 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 12b98790c761f47429559af03b6669d2 -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat similarity index 89% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat index 5c3f387..8329b88 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Streamers m_Shader: {fileID: 4800000, guid: d3f113ebb941b344eab871b7ff555989, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta index 6b78ff1..c6a09a1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 44bb800afbc34592842694ecb05ddec3 -timeCreated: 1481917490 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta index 9c0eaec..de935bf 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/Streamers.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: d3f113ebb941b344eab871b7ff555989 -timeCreated: 1443567489 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/main.png diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/main.png.meta similarity index 73% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/main.png.meta index bbca991..73eadca 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Streamers/main.png.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Streamers/main.png.meta @@ -1,11 +1,9 @@ fileFormatVersion: 2 guid: 448c9093ac3aecc41a1b6ab64a727073 -timeCreated: 1440714585 -licenseType: Pro TextureImporter: - fileIDToRecycleName: {} + internalIDToNameTable: [] externalObjects: {} - serializedVersion: 4 + serializedVersion: 11 mipmaps: mipMapMode: 0 enableMipMap: 1 @@ -23,6 +21,8 @@ TextureImporter: heightScale: 0.25 normalMapFilter: 0 isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -33,7 +33,7 @@ TextureImporter: serializedVersion: 2 filterMode: 2 aniso: 5 - mipBias: -1 + mipBias: -100 wrapU: -1 wrapV: -1 wrapW: -1 @@ -45,18 +45,22 @@ TextureImporter: spriteMeshType: 1 alignment: 0 spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 0 spriteTessellationDetail: -1 textureType: 0 textureShape: 1 + singleChannelComponent: 0 maxTextureSizeSet: 0 compressionQualitySet: 0 textureFormatSet: 0 + applyGammaDecoding: 1 platformSettings: - - buildTarget: DefaultTexturePlatform + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -66,7 +70,9 @@ TextureImporter: allowsAlphaSplitting: 0 overridden: 0 androidETC2FallbackOverride: 0 - - buildTarget: Standalone + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -76,7 +82,9 @@ TextureImporter: allowsAlphaSplitting: 0 overridden: 0 androidETC2FallbackOverride: 0 - - buildTarget: Android + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -86,12 +94,23 @@ TextureImporter: allowsAlphaSplitting: 0 overridden: 0 androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 spriteSheet: serializedVersion: 2 sprites: [] outline: [] physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy.meta index c370ba4..40df244 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: f38271d47ec954eec8ea9720428c39a6 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset index fe1390a..bcbf86b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta index 5b4fe37..7bd4433 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 38f5be2edab11fa429b090756d26d000 -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat index 9303e54..d38a247 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Taffy m_Shader: {fileID: 4800000, guid: 0688c89ab91f95a49a7395fe0da3a0a6, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta index 6eefc56..bf920a7 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/Taffy.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 0077f88cd93a42f3b59bb31c50cdb414 -timeCreated: 1481917494 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Taffy/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/main.png.meta new file mode 100644 index 0000000..6944fb2 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Taffy/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 0758becf0979c9c42a2419c32260227b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat.meta index 8ceb9df..f4e8e58 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 0125f3e1ba620954db96015dda538645 folderAsset: yes -timeCreated: 1510081709 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset index b2783c8..4c65917 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta index d5c4967..7c78fb3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: a713e4e48dc9bed57b2da96e510f3770 -timeCreated: 1529443775 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat index fb89238..2aa641b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: TaperedFlat m_Shader: {fileID: 4800000, guid: 76dc2f7fe973ede4bbbedfc291269c84, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta index 3fb2c60..ebfbdbf 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/TaperedFlat.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: b468c1fbf25441ed8ec957030bc5660c -timeCreated: 1496877602 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png.meta new file mode 100644 index 0000000..a7f08bd --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlat/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: f3edc2a3ac909e640b160e04d7c1f116 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta index 5c66cb8..2dd0bfe 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: e085203924e0b41c0949b2e73fece58a folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset index f88af44..ca5ddd9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta index 8969926..fe79b1f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: e7ec06c48c590ea4ebe400ce6a278efe -timeCreated: 1529443776 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat index dcaaf09..fb98ce3 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: TaperedFlatSingleSided m_Shader: {fileID: 4800000, guid: 561cd39ab4e063843a09f5c11c3a8531, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta index 330fd8a..2559e83 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedFlatSingleSided/TaperedFlatSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: c8ccb53dae1345ef8afbb730d81394eb -timeCreated: 1496877602 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker.meta index 4e92f89..e573740 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 1cdb27e2c28f3462ab1c7f83866c93d6 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset index 4301199..0bc144e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta index 2466b72..538eb6d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: b39f584eb1440404289d9461a0973e35 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat index 10598a0..af9e31c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: TaperedMarker m_Shader: {fileID: 4800000, guid: 0688c89ab91f95a49a7395fe0da3a0a6, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta index 5079107..5ba7ac1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/TaperedMarker.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: d90c6ad8af0f4b54b422e0f92abe1b3c -timeCreated: 1481917483 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png.meta new file mode 100644 index 0000000..3f0e512 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 12b1499f1adf4d545a80f2ec18204030 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 4 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta index d59050b..4166737 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 0cbf65aec22a5426eaaffe7be4155e64 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset index c4e83b0..6f1bd3a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta index b948921..9eb79b2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 26d7464425c0b84479a8a21a695b194c -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat index 657efc6..8368527 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: TaperedMarker_Flat m_Shader: {fileID: 4800000, guid: 561cd39ab4e063843a09f5c11c3a8531, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta index 99612fa..7e0946f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/TaperedMarker_Flat/TaperedMarker_Flat.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 1a26b8c08a074f8a9facd2ef36e0cad0 -timeCreated: 1481917495 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint.meta index 14ef351..b100985 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 14f44d51a57757c47b3b9696e3075df2 folderAsset: yes -timeCreated: 1510081709 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset index a33881b..207b6c8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta index 0000519..3648c10 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: de4112b6c3a19ae5bb03397212a78339 -timeCreated: 1529443778 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat index e65cc92..2d1a30b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: ThickPaint m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta index 040af02..83944df 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/ThickPaint.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 75b32cf0fdd64d89a64be2a00b247b0f -timeCreated: 1496877269 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png.meta new file mode 100644 index 0000000..9ff58ca --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: b0bde6581a3229a4aa4a2d294da9d00f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png.meta new file mode 100644 index 0000000..1c3b381 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaint/streakystroke_bump.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: adae364a85e64564f8a75e1c0c9958e7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.1 + normalMapFilter: 1 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta index 190b7ae..1778a26 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 4c7ba54c914f94ae89941400898f7fdc folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset index e9ac171..b25a29c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta index 47019a6..7fa5b03 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 94cb84ebeec44c540bb15b32797e5a98 -timeCreated: 1529443779 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat index 0c33e68..99d7bf7 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat @@ -4,13 +4,15 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: ThickPaintSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION m_LightmapFlags: 1 m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} disabledShaderPasses: [] diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta index 1183b84..d49ac5b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/ThickPaintSingleSided/ThickPaintSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: fdf0326ac0d14fedb1019db0ff6d071f -timeCreated: 1496877269 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon.meta index 4584c58..f1e8c4f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: b5290c8da3eb84038a25969cf22ee24a folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.asset index f306066..8cbdec4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta index ed67ee9..146e8ba 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: b8a2349e67797ea4593639454ef74543 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.mat similarity index 89% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.mat index 9fcb44e..4111032 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Toon m_Shader: {fileID: 4800000, guid: f642cb91c8b664571967bdb587334e76, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta index 837f972..c83e001 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 4391385adf7343969e3331e4e4930b27 -timeCreated: 1481917489 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta index b6d1db0..7d1978c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Toon/Toon.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: f642cb91c8b664571967bdb587334e76 -timeCreated: 1466953084 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull.meta index aa9ffb7..366f825 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 448158fa71444cd4787d10ccbd0ab8c9 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset index 84b05eb..43b473e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta index 33f6f9d..d49f198 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: e6226d3ece719e15aae431e9b1bacf2d -timeCreated: 1529443780 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat similarity index 96% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat index e5c430b..cee9c16 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: UnlitHull_16 m_Shader: {fileID: 4800000, guid: 0688c89ab91f95a49a7395fe0da3a0a6, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta index a4d3064..d177bb0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/UnlitHull/UnlitHull_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: a8fea537da7c4d4b817f24f074725d6d -timeCreated: 1498761536 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk.meta index d78194f..d2ba9c9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 85a1c7cc29b6340859bf980ddf5bb89f folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset index baeab07..f85b67d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta index c41a863..7251247 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 5398e778cce3fdf469bbfa388aa46d5d -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat index e097abe..7bc8140 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: VelvetInk m_Shader: {fileID: 4800000, guid: bfa82537bb6dcf94a8d673eb2ac036f0, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta index c4327b8..63566e5 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: d229d335c334495aa801660ac8a87360 -timeCreated: 1481917487 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta index e6d0b87..fce1f6d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/VelvetInk.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: bfa82537bb6dcf94a8d673eb2ac036f0 -timeCreated: 1468367742 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png.meta new file mode 100644 index 0000000..bcfccc0 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/VelvetInk/maintexture.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 23f34828bab17994180c05cba4679802 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform.meta index b1b7cfb..c9e1389 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d8721da132c114b4aacae4ee9a74de54 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset index b9c10d5..b5dcb29 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta index 770c25e..806037b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: ebe8a9d99afbd6b46909ea24a9896258 -timeCreated: 1495162083 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat similarity index 89% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat index 4f6ad65..911cab9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Waveform m_Shader: {fileID: 4800000, guid: 9296f4d6e8a59fa4b86aa34b80d895ba, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta index fb057ad..3eb415f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 10201aa3ebc242d884b72e63f6eeb8ab -timeCreated: 1481917488 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta index c464605..f5802db 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/Waveform.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 9296f4d6e8a59fa4b86aa34b80d895ba -timeCreated: 1456355323 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/waveform.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Waveform/waveform.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/waveform.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/waveform.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/waveform.png.meta new file mode 100644 index 0000000..ddda62e --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Waveform/waveform.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 2e1a7d5cb3753244e97923f78cc37197 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 64 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse.meta index 6d5fd9c..de5625c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: afbcb7dd613e446e2a8ec086d60ee8d3 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta index d8ce7c8..50e9fd1 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/NeonPulse.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 39f9ec0559d25f44bad64ce4dbc8a0c4 -timeCreated: 1457493617 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WaveformPulse/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/main.png.meta new file mode 100644 index 0000000..b1563ca --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WaveformPulse/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 7c9e2c33abd01d5468b670b8d02d6925 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 32 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 32 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint.meta index 14a2c12..a41fea0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 744bddeb8fe4ff74fb77c6eb2bbcdc23 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset index bc08f93..4a83a4d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta index 90317f0..d4ba38a 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: cb620f38d66c44f559d8abd0efa6a295 -timeCreated: 1529443783 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat index 3ea1256..411cb1d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: WetPaint_16 m_Shader: {fileID: 4800000, guid: 6eca343108a01a946a82e0c33f58fda1, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta index 138c436..42ec57e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/WetPaint_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: b67c0e81ce6d40a8aeb0ef036b081aa3 -timeCreated: 1496701463 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/main.png.meta new file mode 100644 index 0000000..870fc5f --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 5e3fee17e4e859e499de57ab74599628 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/normal.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaint/normal.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/normal.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/normal.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/normal.png.meta new file mode 100644 index 0000000..ba2ba5f --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaint/normal.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 2dc1a52e6c8e9734dbc80815d8732e8a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: 0.03 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta index aeb8ec3..ce50b73 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 18c2ce081aa9beb41b242f9f1497ede1 folderAsset: yes -timeCreated: 1526501037 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset index b88f900..c685800 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta index 5c70d36..1eccf91 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 979dc653ba7d1d358a1a3c25bf5d033f -timeCreated: 1526500943 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat index 8572725..8905b8e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: WetPaintSingleSided m_Shader: {fileID: 4800000, guid: 6af6ca8fad7576846a6a44f5c6d7bf6b, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta index d35d3ff..601bbed 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WetPaintSingleSided/WetPaintSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: dea67637cd1a27e4c9b152f4bbcb84e5 -timeCreated: 1496701463 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite.meta index c44b839..898965f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: f1040052c0052bc4b83c5394cf938e08 folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta index 0cc5699..522f08e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphiteDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 5e1540b883dd10647a305c0ec4ae14ed -timeCreated: 1488504258 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset index 1ac04c6..9307462 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta index d03c4be..7b6bbd0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: b250a068d80bad858be65c3d4675b50d -timeCreated: 1529443784 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat index 05b0db7..22e58b0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: WigglyGraphite_16 m_Shader: {fileID: 4800000, guid: 5e1540b883dd10647a305c0ec4ae14ed, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta index 64a3dce..b1dc070 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/WigglyGraphite_16.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 5347acf0a8e247b6834630c70719d763 -timeCreated: 1488504943 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png.meta new file mode 100644 index 0000000..e20f531 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphite/main.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: dcae52156c7b5af40bcf91076a87a6b5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 4 + mipBias: -100 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta index f7409e9..9102e1d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: d71634861e64122458230bb78b06e6bd folderAsset: yes -timeCreated: 1526501038 -licenseType: Pro DefaultImporter: externalObjects: {} userData: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset index 8811f70..2abf59f 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta index cc0d80f..f03efbe 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 34192af8b5bb56258ba49d0cf281f850 -timeCreated: 1526500945 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat index d8d0ece..08de0c8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: WigglyGraphiteSingleSided m_Shader: {fileID: 4800000, guid: 06a41f8d9deb2264c9e9b067bbaae02a, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta index 5356921..ee9d91e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/WigglyGraphiteSingleSided/WigglyGraphiteSingleSided.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: e814fef197fd71944a2f50c2bb918be2 -timeCreated: 1488504943 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire.meta index 62f420d..0b1d021 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 102aa32bd38d040aca46704252113fbe folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.asset index d03510b..ba27287 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta index c37aaa9..2e6b784 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 3a72bd3c1fe3d784ab8896ec9fdfd058 -timeCreated: 1495162082 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.mat similarity index 94% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.mat index b464ca9..e0e8028 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: Wire m_Shader: {fileID: 4800000, guid: 0688c89ab91f95a49a7395fe0da3a0a6, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta index e32fab2..4b61534 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Basic/Wire/Wire.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 4391385acf8343969e3331e4e4930b27 -timeCreated: 1481917482 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks.meta index 5c999ab..b8ec985 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d086c32b105e6ae4e82b91075e02682a folderAsset: yes -timeCreated: 1507248510 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem.meta index c14397d..7b26c89 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 7510be7e36a9313459cd08af1865366b folderAsset: yes -timeCreated: 1507248510 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset index 0a94a0e..a4b23fd 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta index b8672d1..ff3526d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 71dc5ead67382b75789dd72c8058d553 -timeCreated: 1507250767 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat index 416a471..abeaf7d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BlocksGem m_Shader: {fileID: 4800000, guid: cd72ccec010118e44bcae69ab6186eb4, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta index c70c136..6f1e5fc 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 232998f8d35747a2993a53415df9be10 -timeCreated: 1502926363 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta index 25e2cc1..6e16fc4 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGem.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: cd72ccec010118e44bcae69ab6186eb4 -timeCreated: 1503342700 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat index 6b8e0b5..f1664f9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BlocksGemPT m_Shader: {fileID: 4800000, guid: cd72ccec010118e44bcae69ab6186eb4, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta index edf65c6..a2631a8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGem/BlocksGemPT.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 79b25d2d8ffdf4c4eb448df9609dfdc7 -timeCreated: 1502926363 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass.meta index d073b5b..28240c9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 61428f4e95dd6a74cbb57d9b3a31228e folderAsset: yes -timeCreated: 1507248510 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset index 3d71b3f..bc6db42 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta index 42a66e2..122f0bf 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: 185ca6407d6d6095e95d6695d994a12b -timeCreated: 1507250768 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat index 6548347..081f8a6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BlocksGlass m_Shader: {fileID: 4800000, guid: 7fbe2fe7dc7c2a64a9b2abac67b85b54, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta index 34e36a5..ca9ecc0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 3d813d82583944508ddc8e889ecd96c7 -timeCreated: 1502926363 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta index ed15634..14bb46c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlass.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 7fbe2fe7dc7c2a64a9b2abac67b85b54 -timeCreated: 1503342687 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat index 9415d82..56c1de0 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BlocksGlassPT m_Shader: {fileID: 4800000, guid: 7fbe2fe7dc7c2a64a9b2abac67b85b54, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta index e601e95..c182d1c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksGlass/BlocksGlassPT.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 537db0387b31e004888533b91562f23d -timeCreated: 1502926363 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper.meta index 0d54fad..599281b 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 1d86c549a4d4b1e4b909a462189ecdd1 folderAsset: yes -timeCreated: 1507248510 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset index 9708839..691bb85 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta similarity index 82% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta index d470b16..fa56b56 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.asset.meta @@ -1,7 +1,5 @@ fileFormatVersion: 2 guid: d6f6de76308b4b05386f187491479d94 -timeCreated: 1507250768 -licenseType: Pro NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat similarity index 95% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat index 6013324..64bc3a2 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BlocksPaper m_Shader: {fileID: 4800000, guid: 50d409e7765e3e8489865238cdf646e7, type: 3} m_ShaderKeywords: _EMISSION diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta index d4dd7dc..a5e4732 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.mat.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 guid: 0e87b49c65463a343a448a556d7d6c3e -timeCreated: 1502926363 -licenseType: Pro NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta index 25fc58d..a03b032 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Blocks/BlocksPaper/BlocksPaper.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 50d409e7765e3e8489865238cdf646e7 -timeCreated: 1426624476 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly.meta index e988f53..b5f79aa 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 8d06f3cc308462143ac9bfd596505643 folderAsset: yes -timeCreated: 1510551825 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate.meta index 39684fd..4a114ce 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 250c85fc8dc14044b8aeb1b3f0170f5e folderAsset: yes -timeCreated: 1510551825 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset similarity index 85% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset index e61f05a..2002bf8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta index dcd7db6..4315172 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTemplate/PbrTemplate.asset.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 64222159a2860fd5d8a9efd7fac6610a -timeCreated: 1510551544 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 11400000 userData: assetBundleName: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta index 43e35bf..50289dd 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: fada679b5c7067240b7d43a1bb93ee9c folderAsset: yes -timeCreated: 1510551825 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset similarity index 86% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset index 3e8fa07..762d8a6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta similarity index 80% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta index 5a1fe7e..d8c30af 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Poly/PbrTransparentTemplate/PbrTransparentTemplate.asset.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 116cd5bf02ca0345da1f33cc3484c5ec -timeCreated: 1510551545 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 11400000 userData: assetBundleName: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared.meta index 443b335..05c6d3c 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 78b2304c05c2b421581c084093d84be7 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders.meta index e393c2e..f9c5c18 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: efd695d4f560e4b34afd9ff8bc3687c1 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta similarity index 54% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta index e934ede..18b7d69 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Bloom.shader.meta @@ -1,5 +1,9 @@ fileFormatVersion: 2 guid: 3623f1b71da7dda49b588a77c984e1de ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta similarity index 54% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta index b2daaee..8d6d5b6 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseDoubleSided.shader.meta @@ -1,5 +1,9 @@ fileFormatVersion: 2 guid: 76dc2f7fe973ede4bbbedfc291269c84 ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta index 83b8fee..25cc729 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 86ab46f12486fa446b99415e1f4785ca -timeCreated: 1474306204 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta index 55331af..e6236a8 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseOpaqueSingleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: fc163d24473ddd04881e4fc188ed5802 -timeCreated: 1474306204 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta similarity index 54% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta index 4c72d4e..402a0bc 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/DiffuseSingleSided.shader.meta @@ -1,5 +1,9 @@ fileFormatVersion: 2 guid: 561cd39ab4e063843a09f5c11c3a8531 ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta index 07820ba..934b1f7 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 6eca343108a01a946a82e0c33f58fda1 -timeCreated: 1426624476 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta index dfdb748..7e601a5 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/StandardSingleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 6af6ca8fad7576846a6a44f5c6d7bf6b -timeCreated: 1426624476 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta index b2538f7..d87c42e 100644 --- a/Assets/PolyToolkit/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Brushes/Shared/Shaders/Unlit.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 0688c89ab91f95a49a7395fe0da3a0a6 -timeCreated: 1449103631 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts.meta similarity index 73% rename from Assets/PolyToolkit/Internal/tbt/Scripts.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts.meta index b1849e4..1e73e17 100644 --- a/Assets/PolyToolkit/Internal/tbt/Scripts.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts.meta @@ -2,5 +2,7 @@ fileFormatVersion: 2 guid: b5072846c5c66a24ba393b30ef500fcb folderAsset: yes DefaultImporter: + externalObjects: {} userData: assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts/BrushDescriptor.cs b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushDescriptor.cs similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Scripts/BrushDescriptor.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushDescriptor.cs diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts/BrushDescriptor.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushDescriptor.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/tbt/Scripts/BrushDescriptor.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushDescriptor.cs.meta index 57abf0b..bfaab16 100644 --- a/Assets/PolyToolkit/Internal/tbt/Scripts/BrushDescriptor.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushDescriptor.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 103cd3480fe93f646be28a7da5812871 -timeCreated: 1495127825 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts/BrushManifest.cs b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushManifest.cs similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Scripts/BrushManifest.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushManifest.cs diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts/BrushManifest.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushManifest.cs.meta similarity index 88% rename from Assets/PolyToolkit/Internal/tbt/Scripts/BrushManifest.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushManifest.cs.meta index 86e6435..5ea0bd9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Scripts/BrushManifest.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/BrushManifest.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 8a4e1c4479d3ef54a83ac7187217ec6a -timeCreated: 1495578773 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: - m_DefaultManifest: {fileID: 11400000, guid: 2b3e59298bb8cfc47bddd1e1ea01be06, diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts/SerializableGuid.cs b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/SerializableGuid.cs similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Scripts/SerializableGuid.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/SerializableGuid.cs diff --git a/Assets/PolyToolkit/Internal/tbt/Scripts/SerializableGuid.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/SerializableGuid.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/tbt/Scripts/SerializableGuid.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/SerializableGuid.cs.meta index f797c10..2e732ba 100644 --- a/Assets/PolyToolkit/Internal/tbt/Scripts/SerializableGuid.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Scripts/SerializableGuid.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 614800611c666bd498aa946dc06be1f0 -timeCreated: 1495127911 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Shaders.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders.meta index c32a776..5f73591 100644 --- a/Assets/PolyToolkit/Internal/tbt/Shaders.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 32a313623a2af425486f94b12345ceda folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Include.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Include.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include.meta index ada2e6e..b17165d 100644 --- a/Assets/PolyToolkit/Internal/tbt/Shaders/Include.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 4b693034723d7064d8ddb143f73ad45e folderAsset: yes -timeCreated: 1494992040 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Include/Brush.cginc b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Brush.cginc similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Include/Brush.cginc rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Brush.cginc diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Include/Brush.cginc.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Brush.cginc.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Include/Brush.cginc.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Brush.cginc.meta index 47ef533..91e82be 100644 --- a/Assets/PolyToolkit/Internal/tbt/Shaders/Include/Brush.cginc.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Brush.cginc.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 5c0164a5aba2bc140afe140e9f53a38f -timeCreated: 1449082003 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Include/Particles.cginc b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Particles.cginc similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Include/Particles.cginc rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Particles.cginc diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Include/Particles.cginc.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Particles.cginc.meta similarity index 75% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Include/Particles.cginc.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Particles.cginc.meta index 4584880..18162d9 100644 --- a/Assets/PolyToolkit/Internal/tbt/Shaders/Include/Particles.cginc.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Include/Particles.cginc.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 84c7a84b6a3eeb04794295998eb56657 -timeCreated: 1494557205 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Unlit-Diffuse.shader b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Unlit-Diffuse.shader similarity index 100% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Unlit-Diffuse.shader rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Unlit-Diffuse.shader diff --git a/Assets/PolyToolkit/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta similarity index 54% rename from Assets/PolyToolkit/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta index 369a2d8..f93ce40 100644 --- a/Assets/PolyToolkit/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tbt/Shaders/Unlit-Diffuse.shader.meta @@ -1,5 +1,9 @@ fileFormatVersion: 2 guid: ed6138546a7a6c6459f5bb9f1a60a114 ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tests.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tests.meta similarity index 78% rename from Assets/PolyToolkit/Internal/tests.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tests.meta index d703818..52d1c4a 100644 --- a/Assets/PolyToolkit/Internal/tests.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tests.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 2943216ebf1a6ce40938576a1b01424e folderAsset: yes -timeCreated: 1506004121 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs b/Packages/icosa-api-client-unity/Runtime/Internal/tests/TestRuntimeImport.cs similarity index 96% rename from Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs rename to Packages/icosa-api-client-unity/Runtime/Internal/tests/TestRuntimeImport.cs index 2071cd0..977a8cb 100644 --- a/Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tests/TestRuntimeImport.cs @@ -28,7 +28,7 @@ public class TestRuntimeImport : MonoBehaviour { private const string CLIENT_ID = "3539303a373737363831393b2178617c60227d7f7b7966252a74226e296f2d29174315175" + "15716131b1c5a4d1b034f5f40421c545b5a515b5d4c495e4e5e515134242c376a26292a"; private const string API_KEY = "41487862577c4474616e3b5f4b39466e5161732a4b645d5b495752557276274673196e74496173"; - + private const string BASE_URL = "https://icosa-api-django.ixxy.co.uk"; private const string kAssetId = "15ARMT6StKO"; private const string kGltf2AssetId = "5eiqgJe4rMb"; @@ -36,6 +36,7 @@ public class TestRuntimeImport : MonoBehaviour { private const string kAssetIdFromPoly = "aqCWHdQNAiL"; private PolyAuthConfig authConfig = new PolyAuthConfig( + baseUrl: BASE_URL, apiKey: Deobfuscate(API_KEY), clientId: Deobfuscate(CLIENT_ID), clientSecret: Deobfuscate(CLIENT_SECRET)); @@ -60,7 +61,7 @@ void Start() { TestImport(kAssetIdFromPoly); } - + public static string Deobfuscate(string input) { byte[] data = new byte[input.Length / 2]; for (int i = 0; i < data.Length; i++) { diff --git a/Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs.meta b/Packages/icosa-api-client-unity/Runtime/Internal/tests/TestRuntimeImport.cs.meta similarity index 84% rename from Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Internal/tests/TestRuntimeImport.cs.meta index 3ca28f1..40d396e 100644 --- a/Assets/PolyToolkit/Internal/tests/TestRuntimeImport.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Internal/tests/TestRuntimeImport.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: c4938c3b173177547ac856fd6cff5aa3 -timeCreated: 1505922913 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Materials.meta b/Packages/icosa-api-client-unity/Runtime/Materials.meta similarity index 78% rename from Assets/PolyToolkit/Materials.meta rename to Packages/icosa-api-client-unity/Runtime/Materials.meta index 5a394c5..1ee23fd 100644 --- a/Assets/PolyToolkit/Materials.meta +++ b/Packages/icosa-api-client-unity/Runtime/Materials.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 5c4747f61e693af4daef0c8fa8f56a28 folderAsset: yes -timeCreated: 1506090882 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrBlendDoubleSided.mat similarity index 95% rename from Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Materials/BasePbrBlendDoubleSided.mat index 6ae38ab..df30694 100644 --- a/Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrBlendDoubleSided.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BasePbrBlendDoubleSided m_Shader: {fileID: 4800000, guid: 54d2dca8417702d4e849ce93707a354b, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrBlendDoubleSided.mat.meta similarity index 80% rename from Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Materials/BasePbrBlendDoubleSided.mat.meta index 9f41894..0db07cf 100644 --- a/Assets/PolyToolkit/Materials/BasePbrBlendDoubleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrBlendDoubleSided.mat.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: b2b07ce943390e34993803beeb1e8548 -timeCreated: 1506436272 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 2100000 userData: assetBundleName: diff --git a/Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrOpaqueDoubleSided.mat similarity index 95% rename from Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat rename to Packages/icosa-api-client-unity/Runtime/Materials/BasePbrOpaqueDoubleSided.mat index 5a8a24f..fc252ac 100644 --- a/Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat +++ b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrOpaqueDoubleSided.mat @@ -4,8 +4,9 @@ Material: serializedVersion: 6 m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_Name: BasePbrOpaqueDoubleSided m_Shader: {fileID: 4800000, guid: fdd67cb064f9adf4ea9ff64d948f9387, type: 3} m_ShaderKeywords: diff --git a/Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat.meta b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrOpaqueDoubleSided.mat.meta similarity index 80% rename from Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat.meta rename to Packages/icosa-api-client-unity/Runtime/Materials/BasePbrOpaqueDoubleSided.mat.meta index 959d0e6..5f2781b 100644 --- a/Assets/PolyToolkit/Materials/BasePbrOpaqueDoubleSided.mat.meta +++ b/Packages/icosa-api-client-unity/Runtime/Materials/BasePbrOpaqueDoubleSided.mat.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: a24c5cab5717b124889fe758761686b4 -timeCreated: 1506436272 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 2100000 userData: assetBundleName: diff --git a/Assets/PolyToolkit/Prefabs.meta b/Packages/icosa-api-client-unity/Runtime/Prefabs.meta similarity index 78% rename from Assets/PolyToolkit/Prefabs.meta rename to Packages/icosa-api-client-unity/Runtime/Prefabs.meta index 74e9ada..7788f76 100644 --- a/Assets/PolyToolkit/Prefabs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Prefabs.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: ab29faf716419db4ba214e6524fc948b folderAsset: yes -timeCreated: 1507834296 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab b/Packages/icosa-api-client-unity/Runtime/Prefabs/PolyToolkitManager.prefab similarity index 60% rename from Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab rename to Packages/icosa-api-client-unity/Runtime/Prefabs/PolyToolkitManager.prefab index 1453639..80a84f3 100644 --- a/Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab +++ b/Packages/icosa-api-client-unity/Runtime/Prefabs/PolyToolkitManager.prefab @@ -1,22 +1,12 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1001 &100100000 -Prefab: - m_ObjectHideFlags: 1 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: [] - m_RemovedComponents: [] - m_ParentPrefab: {fileID: 0} - m_RootGameObject: {fileID: 1842104048969352} - m_IsPrefabParent: 1 --- !u!1 &1842104048969352 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4059514712971238} - component: {fileID: 114797153153435936} @@ -29,9 +19,10 @@ GameObject: m_IsActive: 1 --- !u!4 &4059514712971238 Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1842104048969352} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -42,9 +33,10 @@ Transform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &114797153153435936 MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1842104048969352} m_Enabled: 1 m_EditorHideFlags: 0 diff --git a/Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab.meta b/Packages/icosa-api-client-unity/Runtime/Prefabs/PolyToolkitManager.prefab.meta similarity index 55% rename from Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab.meta rename to Packages/icosa-api-client-unity/Runtime/Prefabs/PolyToolkitManager.prefab.meta index 8d53608..2b9c488 100644 --- a/Assets/PolyToolkit/Prefabs/PolyToolkitManager.prefab.meta +++ b/Packages/icosa-api-client-unity/Runtime/Prefabs/PolyToolkitManager.prefab.meta @@ -1,9 +1,7 @@ fileFormatVersion: 2 guid: 13c13d3c28878fc4ab122b555674fe1f -timeCreated: 1507834328 -licenseType: Pro -NativeFormatImporter: - mainObjectFileID: 100100000 +PrefabImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Resources.meta b/Packages/icosa-api-client-unity/Runtime/Resources.meta similarity index 78% rename from Assets/PolyToolkit/Resources.meta rename to Packages/icosa-api-client-unity/Runtime/Resources.meta index 3e85df5..386e6f5 100644 --- a/Assets/PolyToolkit/Resources.meta +++ b/Packages/icosa-api-client-unity/Runtime/Resources.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: d8aa961a93d7c9c488b8dfe89e668109 folderAsset: yes -timeCreated: 1505485983 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Resources/PtSettings.asset b/Packages/icosa-api-client-unity/Runtime/Resources/PtSettings.asset similarity index 91% rename from Assets/PolyToolkit/Resources/PtSettings.asset rename to Packages/icosa-api-client-unity/Runtime/Resources/PtSettings.asset index d3c49fc..c48351d 100644 --- a/Assets/PolyToolkit/Resources/PtSettings.asset +++ b/Packages/icosa-api-client-unity/Runtime/Resources/PtSettings.asset @@ -3,8 +3,9 @@ --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 @@ -42,7 +43,8 @@ MonoBehaviour: basePbrBlendDoubleSidedMaterial: {fileID: 2100000, guid: b2b07ce943390e34993803beeb1e8548, type: 2} authConfig: - apiKey: '** INSERT YOUR API KEY HERE **' + apiKey: + baseUrl: https://icosa-api-django.ixxy.co.uk/api clientId: clientSecret: additionalScopes: [] diff --git a/Assets/PolyToolkit/Resources/PtSettings.asset.meta b/Packages/icosa-api-client-unity/Runtime/Resources/PtSettings.asset.meta similarity index 80% rename from Assets/PolyToolkit/Resources/PtSettings.asset.meta rename to Packages/icosa-api-client-unity/Runtime/Resources/PtSettings.asset.meta index 963bd9d..14a643d 100644 --- a/Assets/PolyToolkit/Resources/PtSettings.asset.meta +++ b/Packages/icosa-api-client-unity/Runtime/Resources/PtSettings.asset.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 86eb32a1d469be44a99294025e7795de -timeCreated: 1502413196 -licenseType: Pro NativeFormatImporter: + externalObjects: {} mainObjectFileID: 11400000 userData: assetBundleName: diff --git a/Assets/PolyToolkit/Scripts.meta b/Packages/icosa-api-client-unity/Runtime/Scripts.meta similarity index 78% rename from Assets/PolyToolkit/Scripts.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts.meta index 6cc0c46..f06bbdc 100644 --- a/Assets/PolyToolkit/Scripts.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 8bd6607824d4c174bb7591f24a18d0ce folderAsset: yes -timeCreated: 1502412334 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Scripts/PolyApi.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyApi.cs similarity index 100% rename from Assets/PolyToolkit/Scripts/PolyApi.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyApi.cs diff --git a/Assets/PolyToolkit/Scripts/PolyApi.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyApi.cs.meta similarity index 84% rename from Assets/PolyToolkit/Scripts/PolyApi.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyApi.cs.meta index 0cd0d3b..52f5db7 100644 --- a/Assets/PolyToolkit/Scripts/PolyApi.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyApi.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: bffc1b9d57b39eb47a9ca38dcb349814 -timeCreated: 1505755815 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Scripts/PolyConfigTypes.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyConfigTypes.cs similarity index 85% rename from Assets/PolyToolkit/Scripts/PolyConfigTypes.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyConfigTypes.cs index 60c2c0f..340700d 100644 --- a/Assets/PolyToolkit/Scripts/PolyConfigTypes.cs +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyConfigTypes.cs @@ -26,19 +26,24 @@ public struct PolyAuthConfig { [HelpText("NOTE: API Key is required for all API calls. Client ID/secret are only needed " + "for authenticated API calls.")] /// - /// API key used to access the Poly API. + /// API key used to access the Icosa API. /// - [Tooltip("Your project's API key for the Poly API (required for all API calls).")] + [Tooltip("Your project's API key for the Icosa API (Currently unused).")] public string apiKey; /// + /// Base URL for the Icosa API. + /// + [Tooltip("The base URL the Icosa API")] + public string baseUrl; + /// /// Your project's Client ID as supplied by Google Cloud Console. /// - [Tooltip("Your project's client ID for the Poly API (only required for authenticated API calls).")] + [Tooltip("Your project's client ID for the Icosa API (only required for authenticated API calls).")] public string clientId; /// /// Your project's client secret as supplied by Google Cloud Console. /// - [Tooltip("Your project's client secret for the Poly API (only required for authenticated API calls).")] + [Tooltip("Your project's client secret for the Icosa API (only required for authenticated API calls).")] public string clientSecret; /// /// Additional scopes required by your project (separated by spaces). @@ -58,7 +63,8 @@ public struct PolyAuthConfig { /// /// Creates a new PolyAuthConfig with the given settings. /// - public PolyAuthConfig(string apiKey, string clientId, string clientSecret) { + public PolyAuthConfig(string baseUrl, string apiKey, string clientId, string clientSecret) { + this.baseUrl = baseUrl; this.apiKey = apiKey; this.clientId = clientId; this.clientSecret = clientSecret; diff --git a/Assets/PolyToolkit/Scripts/PolyConfigTypes.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyConfigTypes.cs.meta similarity index 84% rename from Assets/PolyToolkit/Scripts/PolyConfigTypes.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyConfigTypes.cs.meta index c511e5d..c1c80ed 100644 --- a/Assets/PolyToolkit/Scripts/PolyConfigTypes.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyConfigTypes.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 1530f2ba1ee5dc547ae44f65fc61f142 -timeCreated: 1494961792 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Scripts/PolyImportOptions.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyImportOptions.cs similarity index 100% rename from Assets/PolyToolkit/Scripts/PolyImportOptions.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyImportOptions.cs diff --git a/Assets/PolyToolkit/Scripts/PolyImportOptions.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyImportOptions.cs.meta similarity index 84% rename from Assets/PolyToolkit/Scripts/PolyImportOptions.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyImportOptions.cs.meta index 20526d6..af3e64b 100644 --- a/Assets/PolyToolkit/Scripts/PolyImportOptions.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyImportOptions.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: b7d56f410e6f86f47aba5e2c24b79571 -timeCreated: 1505404028 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Scripts/PolyToolkitManager.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyToolkitManager.cs similarity index 100% rename from Assets/PolyToolkit/Scripts/PolyToolkitManager.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyToolkitManager.cs diff --git a/Assets/PolyToolkit/Scripts/PolyToolkitManager.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyToolkitManager.cs.meta similarity index 87% rename from Assets/PolyToolkit/Scripts/PolyToolkitManager.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyToolkitManager.cs.meta index f191aa6..7f4e224 100644 --- a/Assets/PolyToolkit/Scripts/PolyToolkitManager.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyToolkitManager.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 182cbbbef9cdbe1499d8032718118cf1 -timeCreated: 1502414230 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: - settings: {fileID: 11400000, guid: 86eb32a1d469be44a99294025e7795de, type: 2} diff --git a/Assets/PolyToolkit/Scripts/PolyTypes.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyTypes.cs similarity index 100% rename from Assets/PolyToolkit/Scripts/PolyTypes.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyTypes.cs diff --git a/Assets/PolyToolkit/Scripts/PolyTypes.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyTypes.cs.meta similarity index 84% rename from Assets/PolyToolkit/Scripts/PolyTypes.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PolyTypes.cs.meta index 4f268d8..dc80640 100644 --- a/Assets/PolyToolkit/Scripts/PolyTypes.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PolyTypes.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: d3365558c9fb5b74ab914a51890c14ab -timeCreated: 1495730751 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Scripts/PtAsset.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PtAsset.cs similarity index 100% rename from Assets/PolyToolkit/Scripts/PtAsset.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PtAsset.cs diff --git a/Assets/PolyToolkit/Scripts/PtAsset.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PtAsset.cs.meta similarity index 84% rename from Assets/PolyToolkit/Scripts/PtAsset.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PtAsset.cs.meta index 74221bc..e368be1 100644 --- a/Assets/PolyToolkit/Scripts/PtAsset.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PtAsset.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 33a7a203f9e09e74e9c082121e4f44c1 -timeCreated: 1502920343 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Scripts/PtAssetObject.cs b/Packages/icosa-api-client-unity/Runtime/Scripts/PtAssetObject.cs similarity index 100% rename from Assets/PolyToolkit/Scripts/PtAssetObject.cs rename to Packages/icosa-api-client-unity/Runtime/Scripts/PtAssetObject.cs diff --git a/Assets/PolyToolkit/Scripts/PtAssetObject.cs.meta b/Packages/icosa-api-client-unity/Runtime/Scripts/PtAssetObject.cs.meta similarity index 84% rename from Assets/PolyToolkit/Scripts/PtAssetObject.cs.meta rename to Packages/icosa-api-client-unity/Runtime/Scripts/PtAssetObject.cs.meta index b67e523..66567ec 100644 --- a/Assets/PolyToolkit/Scripts/PtAssetObject.cs.meta +++ b/Packages/icosa-api-client-unity/Runtime/Scripts/PtAssetObject.cs.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: ec0c7f9abd0af2840a99d45af7227d62 -timeCreated: 1503001782 -licenseType: Pro MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Assets/PolyToolkit/Shaders.meta b/Packages/icosa-api-client-unity/Runtime/Shaders.meta similarity index 78% rename from Assets/PolyToolkit/Shaders.meta rename to Packages/icosa-api-client-unity/Runtime/Shaders.meta index 7ebc663..e8d0fb5 100644 --- a/Assets/PolyToolkit/Shaders.meta +++ b/Packages/icosa-api-client-unity/Runtime/Shaders.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: e135f6ec71501a9409f3968800bd6cb5 folderAsset: yes -timeCreated: 1506090885 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Shaders/PolyToolkitPbrBlendDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrBlendDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Shaders/PolyToolkitPbrBlendDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrBlendDoubleSided.shader diff --git a/Assets/PolyToolkit/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta index a65230a..666bf84 100644 --- a/Assets/PolyToolkit/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrBlendDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 54d2dca8417702d4e849ce93707a354b -timeCreated: 1506436870 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader b/Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader similarity index 100% rename from Assets/PolyToolkit/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader rename to Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader diff --git a/Assets/PolyToolkit/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta b/Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta similarity index 75% rename from Assets/PolyToolkit/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta rename to Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta index 9ca84cf..2d03a80 100644 --- a/Assets/PolyToolkit/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/Shaders/PolyToolkitPbrOpaqueDoubleSided.shader.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: fdd67cb064f9adf4ea9ff64d948f9387 -timeCreated: 1506436870 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty.meta similarity index 78% rename from Assets/PolyToolkit/ThirdParty.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty.meta index 44590c1..bfbf099 100644 --- a/Assets/PolyToolkit/ThirdParty.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 878df629c9c7f72428bb6a371a19c897 folderAsset: yes -timeCreated: 1502140377 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise.meta similarity index 78% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise.meta index 8efa7a2..332446f 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: fb9b7137aa48a9d478eba951d92e9372 folderAsset: yes -timeCreated: 1509461606 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets.meta similarity index 78% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets.meta index 6c886a8..50251a2 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: f77f413b4fe48924daaa58aa31b2d7ae folderAsset: yes -timeCreated: 1509461606 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta similarity index 78% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta index 70b74e8..589b908 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: a9726b590579e8f47a8d60d8a0a3094f folderAsset: yes -timeCreated: 1489635539 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta similarity index 87% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta index 6314c95..c1b256b 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader.meta @@ -2,6 +2,7 @@ fileFormatVersion: 2 guid: 01e344b081967b04f843f671232bf01f folderAsset: yes DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc similarity index 100% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta similarity index 75% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta index 0d041cd..bfd63b7 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/Shader/BlocksGemGPUVoronoiNoise.cginc.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 3809946657c170a439d20c3aadd2362b -timeCreated: 1509461611 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity similarity index 71% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity index a85e600..7e5d343 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -39,30 +39,30 @@ RenderSettings: m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 12 m_Resolution: 1 m_BakeResolution: 50 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 1 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -77,17 +77,28 @@ LightmapSettings: m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 0 --- !u!196 &5 NavMeshSettings: serializedVersion: 2 @@ -107,13 +118,16 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} --- !u!1 &124605139 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 124605141} - component: {fileID: 124605140} @@ -127,16 +141,19 @@ GameObject: --- !u!108 &124605140 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 124605139} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 0 @@ -146,6 +163,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -153,18 +188,23 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 1 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &124605141 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 124605139} m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.10938166, w: 0.8754261} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -176,13 +216,13 @@ Transform: --- !u!1 &1569067671 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1569067676} - component: {fileID: 1569067675} - - component: {fileID: 1569067674} - component: {fileID: 1569067673} - component: {fileID: 1569067672} m_Layer: 0 @@ -195,34 +235,36 @@ GameObject: --- !u!81 &1569067672 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 --- !u!124 &1569067673 Behaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1569067671} - m_Enabled: 1 ---- !u!92 &1569067674 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 --- !u!20 &1569067675 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -244,16 +286,17 @@ Camera: m_TargetEye: 3 m_HDR: 0 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 --- !u!4 &1569067676 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -10} @@ -265,9 +308,10 @@ Transform: --- !u!1 &2060309020 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 2060309024} - component: {fileID: 2060309023} @@ -283,15 +327,20 @@ GameObject: --- !u!23 &2060309021 MeshRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2060309020} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 0 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 2100000, guid: 0368be2fa58895741aa8c54cbed3276f, type: 2} m_StaticBatchInfo: @@ -301,9 +350,11 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_StitchLightmapSeams: 1 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -315,29 +366,31 @@ MeshRenderer: --- !u!64 &2060309022 MeshCollider: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2060309020} m_Material: {fileID: 0} m_IsTrigger: 0 m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 4 m_Convex: 0 - m_InflateMesh: 0 - m_SkinWidth: 0.01 + m_CookingOptions: 30 m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!33 &2060309023 MeshFilter: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2060309020} m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!4 &2060309024 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2060309020} m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} m_LocalPosition: {x: 0, y: 0, z: 0} diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta similarity index 85% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta index 2a8ef45..2780d11 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise2D.unity.meta @@ -1,6 +1,7 @@ fileFormatVersion: 2 guid: a5355925e161fc0478e21907b66fecd5 DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity similarity index 71% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity index 00d3728..17c0efb 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -39,30 +39,30 @@ RenderSettings: m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 12 m_Resolution: 1 m_BakeResolution: 50 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 1 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -77,17 +77,28 @@ LightmapSettings: m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 0 --- !u!196 &5 NavMeshSettings: serializedVersion: 2 @@ -107,13 +118,16 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} --- !u!1 &169671147 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 169671151} - component: {fileID: 169671150} @@ -130,15 +144,20 @@ GameObject: --- !u!23 &169671148 MeshRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 0 + m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 0 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 2100000, guid: 5068c64d085adf344b99d9b26c115ec6, type: 2} m_StaticBatchInfo: @@ -148,9 +167,11 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_StitchLightmapSeams: 1 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -162,8 +183,9 @@ MeshRenderer: --- !u!135 &169671149 SphereCollider: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Material: {fileID: 0} m_IsTrigger: 0 @@ -174,15 +196,17 @@ SphereCollider: --- !u!33 &169671150 MeshFilter: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} --- !u!4 &169671151 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -194,8 +218,9 @@ Transform: --- !u!114 &169671153 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Enabled: 1 m_EditorHideFlags: 0 @@ -206,9 +231,10 @@ MonoBehaviour: --- !u!1 &367773281 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 367773283} - component: {fileID: 367773282} @@ -222,16 +248,19 @@ GameObject: --- !u!108 &367773282 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 367773281} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 1 @@ -241,6 +270,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -248,18 +295,23 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 1 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &367773283 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 367773281} m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.10938166, w: 0.8754261} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -271,9 +323,10 @@ Transform: --- !u!1 &950452976 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 950452980} - component: {fileID: 950452979} @@ -289,15 +342,20 @@ GameObject: --- !u!23 &950452977 MeshRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 950452976} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 0 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} m_StaticBatchInfo: @@ -307,9 +365,11 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_StitchLightmapSeams: 1 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -321,29 +381,31 @@ MeshRenderer: --- !u!64 &950452978 MeshCollider: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 950452976} m_Material: {fileID: 0} m_IsTrigger: 0 m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 4 m_Convex: 0 - m_InflateMesh: 0 - m_SkinWidth: 0.01 + m_CookingOptions: 30 m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!33 &950452979 MeshFilter: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 950452976} m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!4 &950452980 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 950452976} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: -1.2, z: 0} @@ -355,13 +417,13 @@ Transform: --- !u!1 &1569067671 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1569067676} - component: {fileID: 1569067675} - - component: {fileID: 1569067674} - component: {fileID: 1569067673} - component: {fileID: 1569067672} m_Layer: 0 @@ -374,34 +436,36 @@ GameObject: --- !u!81 &1569067672 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 --- !u!124 &1569067673 Behaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1569067671} - m_Enabled: 1 ---- !u!92 &1569067674 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 --- !u!20 &1569067675 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -423,16 +487,17 @@ Camera: m_TargetEye: 3 m_HDR: 0 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 --- !u!4 &1569067676 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_LocalRotation: {x: 0.1500026, y: 9.216405e-20, z: 0.000000017881701, w: 0.9886856} m_LocalPosition: {x: 0.0000000050328612, y: 0.4392473, z: -1.6229327} diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta similarity index 85% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta index 137e173..f0704b5 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise3D.unity.meta @@ -1,6 +1,7 @@ fileFormatVersion: 2 guid: ce325d2c832991645a3200b1a0851507 DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity similarity index 71% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity index 5642c19..3d8e8ac 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -39,30 +39,30 @@ RenderSettings: m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 12 m_Resolution: 1 m_BakeResolution: 50 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 1 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -77,17 +77,28 @@ LightmapSettings: m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 0 --- !u!196 &5 NavMeshSettings: serializedVersion: 2 @@ -107,13 +118,16 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} --- !u!1 &169671147 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 169671151} - component: {fileID: 169671150} @@ -130,15 +144,20 @@ GameObject: --- !u!23 &169671148 MeshRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 0 + m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 0 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 2100000, guid: 22111096f7506fb4a917e90de8889cbf, type: 2} m_StaticBatchInfo: @@ -148,9 +167,11 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_StitchLightmapSeams: 1 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -162,8 +183,9 @@ MeshRenderer: --- !u!135 &169671149 SphereCollider: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Material: {fileID: 0} m_IsTrigger: 0 @@ -174,15 +196,17 @@ SphereCollider: --- !u!33 &169671150 MeshFilter: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} --- !u!4 &169671151 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -194,8 +218,9 @@ Transform: --- !u!114 &169671153 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 169671147} m_Enabled: 1 m_EditorHideFlags: 0 @@ -206,9 +231,10 @@ MonoBehaviour: --- !u!1 &242937201 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 242937203} - component: {fileID: 242937202} @@ -222,16 +248,19 @@ GameObject: --- !u!108 &242937202 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 242937201} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 1 @@ -241,6 +270,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -248,18 +295,23 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 1 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &242937203 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 242937201} m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.10938166, w: 0.8754261} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -271,9 +323,10 @@ Transform: --- !u!1 &325113100 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 325113104} - component: {fileID: 325113103} @@ -289,15 +342,20 @@ GameObject: --- !u!23 &325113101 MeshRenderer: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 325113100} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 0 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} m_StaticBatchInfo: @@ -307,9 +365,11 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_StitchLightmapSeams: 1 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -321,29 +381,31 @@ MeshRenderer: --- !u!64 &325113102 MeshCollider: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 325113100} m_Material: {fileID: 0} m_IsTrigger: 0 m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 4 m_Convex: 0 - m_InflateMesh: 0 - m_SkinWidth: 0.01 + m_CookingOptions: 30 m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!33 &325113103 MeshFilter: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 325113100} m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} --- !u!4 &325113104 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 325113100} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: -1.2, z: 0} @@ -355,13 +417,13 @@ Transform: --- !u!1 &1569067671 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 1569067676} - component: {fileID: 1569067675} - - component: {fileID: 1569067674} - component: {fileID: 1569067673} - component: {fileID: 1569067672} m_Layer: 0 @@ -374,34 +436,36 @@ GameObject: --- !u!81 &1569067672 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 --- !u!124 &1569067673 Behaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1569067671} - m_Enabled: 1 ---- !u!92 &1569067674 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 --- !u!20 &1569067675 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -423,16 +487,17 @@ Camera: m_TargetEye: 3 m_HDR: 0 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 --- !u!4 &1569067676 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1569067671} m_LocalRotation: {x: 0.1770985, y: 9.2981654e-20, z: 0.000000021111784, w: 0.98419315} m_LocalPosition: {x: 0.000000006583898, y: 0.42669505, z: -1.4609463} diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta similarity index 85% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta index 048f015..b2f9dcc 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/Assets/GPUVoronoiNoise/VoronoNoise4D.unity.meta @@ -1,6 +1,7 @@ fileFormatVersion: 2 guid: 8741b22f2702e2d49a2ba9f1b357e808 DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/LICENSE b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/LICENSE similarity index 100% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/LICENSE rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/LICENSE diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta similarity index 76% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta index 40a4b50..c59f70a 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/LICENSE.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: cec9053afa21c5747b11565fa1ec2ac5 -timeCreated: 1509461606 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/METADATA similarity index 100% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/METADATA diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/METADATA.meta similarity index 76% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/METADATA.meta index 61bdaa3..4b6a683 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/METADATA.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/METADATA.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 5c25127ea4c77f74bb21044fa649cda0 -timeCreated: 1509461606 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/README.md b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/README.md similarity index 100% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/README.md rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/README.md diff --git a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/README.md.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/README.md.meta similarity index 66% rename from Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/README.md.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/README.md.meta index 83f42ad..39cef5f 100644 --- a/Assets/PolyToolkit/ThirdParty/GPU-Voronoi-Noise/README.md.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/GPU-Voronoi-Noise/README.md.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: f27c263530f5f9d40ad63dc92a7f95f2 -timeCreated: 1509461606 -licenseType: Pro -DefaultImporter: +TextScriptImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Noise.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise.meta similarity index 78% rename from Assets/PolyToolkit/ThirdParty/Noise.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise.meta index d365c71..57c84e2 100644 --- a/Assets/PolyToolkit/ThirdParty/Noise.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 6565751afc03c42ebbd6410247d1aa28 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Noise/LICENSE b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/LICENSE similarity index 100% rename from Assets/PolyToolkit/ThirdParty/Noise/LICENSE rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/LICENSE diff --git a/Assets/PolyToolkit/ThirdParty/Noise/LICENSE.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/LICENSE.meta similarity index 76% rename from Assets/PolyToolkit/ThirdParty/Noise/LICENSE.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/LICENSE.meta index 16c8b6c..23cb075 100644 --- a/Assets/PolyToolkit/ThirdParty/Noise/LICENSE.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/LICENSE.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 15931af0ce6bc2c40899c2398dd2a2c8 -timeCreated: 1480711613 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Noise/METADATA b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/METADATA similarity index 100% rename from Assets/PolyToolkit/ThirdParty/Noise/METADATA rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/METADATA diff --git a/Assets/PolyToolkit/ThirdParty/Noise/METADATA.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/METADATA.meta similarity index 76% rename from Assets/PolyToolkit/ThirdParty/Noise/METADATA.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/METADATA.meta index 155d57c..2902de5 100644 --- a/Assets/PolyToolkit/ThirdParty/Noise/METADATA.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/METADATA.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 6c14892961a64fe429c28a7880fd8acd -timeCreated: 1509461606 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Noise/README b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/README similarity index 100% rename from Assets/PolyToolkit/ThirdParty/Noise/README rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/README diff --git a/Assets/PolyToolkit/ThirdParty/Noise/README.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/README.meta similarity index 76% rename from Assets/PolyToolkit/ThirdParty/Noise/README.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/README.meta index 03e0085..0980dd0 100644 --- a/Assets/PolyToolkit/ThirdParty/Noise/README.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/README.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: 746b1a10fb10dff409d634c229b666c7 -timeCreated: 1480711613 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Noise/Shaders.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders.meta similarity index 78% rename from Assets/PolyToolkit/ThirdParty/Noise/Shaders.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders.meta index f7b604d..440d7d5 100644 --- a/Assets/PolyToolkit/ThirdParty/Noise/Shaders.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 guid: 94a9989d1def24c5b9fabd8d761ecf70 folderAsset: yes -timeCreated: 1480629351 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/PolyToolkit/ThirdParty/Noise/Shaders/Noise.cginc b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders/Noise.cginc similarity index 100% rename from Assets/PolyToolkit/ThirdParty/Noise/Shaders/Noise.cginc rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders/Noise.cginc diff --git a/Assets/PolyToolkit/ThirdParty/Noise/Shaders/Noise.cginc.meta b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders/Noise.cginc.meta similarity index 75% rename from Assets/PolyToolkit/ThirdParty/Noise/Shaders/Noise.cginc.meta rename to Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders/Noise.cginc.meta index 94c5602..6342985 100644 --- a/Assets/PolyToolkit/ThirdParty/Noise/Shaders/Noise.cginc.meta +++ b/Packages/icosa-api-client-unity/Runtime/ThirdParty/Noise/Shaders/Noise.cginc.meta @@ -1,9 +1,9 @@ fileFormatVersion: 2 guid: 47b72df894c60b9438c4346e953ad62e -timeCreated: 1466548022 -licenseType: Pro ShaderImporter: + externalObjects: {} defaultTextures: [] + nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant: diff --git a/Packages/icosa-api-client-unity/Runtime/icosa-api-client-unity-runtime.asmdef b/Packages/icosa-api-client-unity/Runtime/icosa-api-client-unity-runtime.asmdef new file mode 100644 index 0000000..372437c --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/icosa-api-client-unity-runtime.asmdef @@ -0,0 +1,15 @@ +{ + "name": "Icosa API Client for Unity-runtime", + "rootNamespace": "", + "references": [ + ], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Packages/icosa-api-client-unity/Runtime/icosa-api-client-unity-runtime.asmdef.meta b/Packages/icosa-api-client-unity/Runtime/icosa-api-client-unity-runtime.asmdef.meta new file mode 100644 index 0000000..4116194 --- /dev/null +++ b/Packages/icosa-api-client-unity/Runtime/icosa-api-client-unity-runtime.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d78e5bd1ea41677448b94d16032f50af +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PolyToolkit/poly_toolkit_manifest.dat b/Packages/icosa-api-client-unity/Runtime/poly_toolkit_manifest.dat similarity index 100% rename from Assets/PolyToolkit/poly_toolkit_manifest.dat rename to Packages/icosa-api-client-unity/Runtime/poly_toolkit_manifest.dat diff --git a/Assets/PolyToolkit/poly_toolkit_manifest.dat.meta b/Packages/icosa-api-client-unity/Runtime/poly_toolkit_manifest.dat.meta similarity index 76% rename from Assets/PolyToolkit/poly_toolkit_manifest.dat.meta rename to Packages/icosa-api-client-unity/Runtime/poly_toolkit_manifest.dat.meta index 7dc3e94..9b5d019 100644 --- a/Assets/PolyToolkit/poly_toolkit_manifest.dat.meta +++ b/Packages/icosa-api-client-unity/Runtime/poly_toolkit_manifest.dat.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: b188a89e99d347d4ba303dd9b9b45c5f -timeCreated: 1526930513 -licenseType: Pro DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Packages/icosa-api-client-unity/package.json b/Packages/icosa-api-client-unity/package.json new file mode 100644 index 0000000..b1d473e --- /dev/null +++ b/Packages/icosa-api-client-unity/package.json @@ -0,0 +1,16 @@ +{ + "name": "com.icosa.icosa-api-client-unity", + "version": "0.0.1", + "displayName": "Icosa API Client for Unity", + "description": "Icosa API Client for Unity", + "unity": "2019.4", + "author": { + "name": "The Icosa Team", + "email": "admin@icosa-foundation.org", + "url": "https://icosa.foundation" + }, + "dependencies": { + }, + "scopedRegistries": [ + ] +} diff --git a/Packages/icosa-api-client-unity/package.json.meta b/Packages/icosa-api-client-unity/package.json.meta new file mode 100644 index 0000000..62e56cc --- /dev/null +++ b/Packages/icosa-api-client-unity/package.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 721ead5d52663754b8475d6ea7525b24 +PackageManifestImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..e1b362f --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,51 @@ +{ + "dependencies": { + "com.newtonsoft.json": "1.0.1", + "com.unity.ide.rider": "3.0.31", + "com.unity.ide.vscode": "1.2.5", + "com.unity.test-framework": "1.1.33", + "com.unity.textmeshpro": "2.1.6", + "com.unity.timeline": "1.2.18", + "com.unity.ugui": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + }, + "scopedRegistries": [ + { + "name": "package.openupm.com", + "url": "https://package.openupm.com", + "scopes": [ + "com.newtonsoft.json" + ] + } + ] +} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 0000000..96531df --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,323 @@ +{ + "dependencies": { + "com.icosa.icosa-api-client-unity": { + "version": "file:icosa-api-client-unity", + "depth": 0, + "source": "embedded", + "dependencies": {} + }, + "com.newtonsoft.json": { + "version": "1.0.1", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://package.openupm.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "3.0.31", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.5", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.33", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "2.1.6", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.2.18", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset index 2c4f5a1..df1e809 100644 --- a/ProjectSettings/AudioManager.asset +++ b/ProjectSettings/AudioManager.asset @@ -3,14 +3,18 @@ --- !u!11 &1 AudioManager: m_ObjectHideFlags: 0 + serializedVersion: 2 m_Volume: 1 Rolloff Scale: 1 Doppler Factor: 1 Default Speaker Mode: 2 m_SampleRate: 0 - m_DSPBufferSize: 0 + m_DSPBufferSize: 1024 m_VirtualVoiceCount: 512 m_RealVoiceCount: 32 + m_EnableOutputSuspension: 1 m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: m_DisableAudio: 0 m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 0 diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset index 6be6910..4959cac 100644 --- a/ProjectSettings/DynamicsManager.asset +++ b/ProjectSettings/DynamicsManager.asset @@ -3,7 +3,7 @@ --- !u!55 &1 PhysicsManager: m_ObjectHideFlags: 0 - serializedVersion: 3 + serializedVersion: 13 m_Gravity: {x: 0, y: -9.81, z: 0} m_DefaultMaterial: {fileID: 0} m_BounceThreshold: 2 @@ -14,5 +14,23 @@ PhysicsManager: m_QueriesHitBackfaces: 0 m_QueriesHitTriggers: 1 m_EnableAdaptiveForce: 0 - m_EnablePCM: 1 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 + m_ContactsGeneration: 1 m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 1 + m_ReuseCollisionCallbacks: 0 + m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 7 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 6dc24f7..0147887 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -5,3 +5,4 @@ EditorBuildSettings: m_ObjectHideFlags: 0 serializedVersion: 2 m_Scenes: [] + m_configObjects: {} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset index 7f72f1b..9ccec94 100644 --- a/ProjectSettings/EditorSettings.asset +++ b/ProjectSettings/EditorSettings.asset @@ -3,12 +3,33 @@ --- !u!159 &1 EditorSettings: m_ObjectHideFlags: 0 - serializedVersion: 3 + serializedVersion: 9 m_ExternalVersionControlSupport: Visible Meta Files m_SerializationMode: 2 + m_LineEndingsForNewScripts: 1 m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} m_SpritePackerMode: 0 m_SpritePackerPaddingPower: 1 - m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd + m_EtcTextureCompressorBehavior: 0 + m_EtcTextureFastCompressor: 2 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 5 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmref m_ProjectGenerationRootNamespace: - m_UserGeneratedProjectSuffix: + m_CollabEditorSettings: + inProgressEnabled: 1 + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_AsyncShaderCompilation: 1 + m_EnterPlayModeOptionsEnabled: 0 + m_EnterPlayModeOptions: 3 + m_ShowLightmapResolutionOverlay: 1 + m_UseLegacyProbeSampleCount: 1 + m_AssetPipelineMode: 1 + m_CacheServerMode: 0 + m_CacheServerEndpoint: + m_CacheServerNamespacePrefix: default + m_CacheServerEnableDownload: 1 + m_CacheServerEnableUpload: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index d74737e..442377c 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -3,7 +3,7 @@ --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 m_Deferred: m_Mode: 1 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} @@ -60,3 +60,5 @@ GraphicsSettings: m_AlbedoSwatchInfos: [] m_LightsUseLinearIntensity: 0 m_LightsUseColorTemperature: 0 + m_LogWhenShaderIsCompiled: 0 + m_AllowEnlightenSupportForUpgradedProject: 1 diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset index 6dd520f..3b0b7c3 100644 --- a/ProjectSettings/NavMeshAreas.asset +++ b/ProjectSettings/NavMeshAreas.asset @@ -85,5 +85,7 @@ NavMeshProjectSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + debug: + m_Flags: 0 m_SettingNames: - Humanoid diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..9ab4aef --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,45 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + - m_Id: scoped:package.openupm.com + m_Name: package.openupm.com + m_Url: https://package.openupm.com + m_Scopes: + - com.newtonsoft.json + m_IsDefault: 0 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: scoped:package.openupm.com + m_Name: package.openupm.com + m_Url: https://package.openupm.com + m_Scopes: + - com.newtonsoft.json + m_IsDefault: 0 + m_Modified: 0 + m_Name: package.openupm.com + m_Url: https://package.openupm.com + m_Scopes: + - com.newtonsoft.json + m_SelectedScopeIndex: 0 diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset index 5f6ffab..417ef45 100644 --- a/ProjectSettings/Physics2DSettings.asset +++ b/ProjectSettings/Physics2DSettings.asset @@ -3,7 +3,7 @@ --- !u!19 &1 Physics2DSettings: m_ObjectHideFlags: 0 - serializedVersion: 3 + serializedVersion: 4 m_Gravity: {x: 0, y: -9.81} m_DefaultMaterial: {fileID: 0} m_VelocityIterations: 8 @@ -19,10 +19,31 @@ Physics2DSettings: m_LinearSleepTolerance: 0.01 m_AngularSleepTolerance: 2 m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_AutoSimulation: 1 m_QueriesHitTriggers: 1 m_QueriesStartInColliders: 1 - m_ChangeStopsCallbacks: 0 m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 0 + m_AutoSyncTransforms: 1 m_AlwaysShowColliders: 0 m_ShowColliderSleep: 1 m_ShowColliderContacts: 0 diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..67a94da --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_DefaultPresets: {} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 4501dce..da140d3 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,9 +3,11 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 + serializedVersion: 20 productGUID: 9c0d217d7342a0845a211b8178399514 AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 defaultScreenOrientation: 4 targetDevice: 2 useOnDemandResources: 0 @@ -14,7 +16,7 @@ PlayerSettings: productName: PolyToolkitUnity defaultCursor: {fileID: 0} cursorHotspot: {x: 0, y: 0} - m_SplashScreenBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21176471, a: 1} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} m_ShowUnitySplashScreen: 1 m_ShowUnitySplashLogo: 1 m_SplashScreenOverlayOpacity: 1 @@ -38,8 +40,6 @@ PlayerSettings: width: 1 height: 1 m_SplashScreenLogos: [] - m_SplashScreenBackgroundLandscape: {fileID: 0} - m_SplashScreenBackgroundPortrait: {fileID: 0} m_VirtualRealitySplashScreen: {fileID: 0} m_HolographicTrackingLossScreen: {fileID: 0} defaultScreenWidth: 1024 @@ -49,13 +49,10 @@ PlayerSettings: m_StereoRenderingPath: 0 m_ActiveColorSpace: 0 m_MTRendering: 1 - m_MobileMTRendering: 0 m_StackTraceTypes: 010000000100000001000000010000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 - tizenShowActivityIndicatorOnLoading: -1 - iosAppInBackgroundBehavior: 0 - displayResolutionDialog: 1 + iosUseCustomAppBackgroundBehavior: 0 iosAllowHTTPDownload: 1 allowedAutorotateToPortrait: 1 allowedAutorotateToPortraitUpsideDown: 1 @@ -63,22 +60,30 @@ PlayerSettings: allowedAutorotateToLandscapeLeft: 1 useOSAutorotation: 1 use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 disableDepthAndStencilBuffers: 0 - defaultIsFullScreen: 1 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 0 + androidBlitType: 0 defaultIsNativeResolution: 1 + macRetinaSupport: 1 runInBackground: 0 captureSingleScreen: 0 muteOtherAudioSources: 0 Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 submitAnalytics: 1 usePlayerLog: 1 bakeCollisionMeshes: 0 forceSingleInstance: 0 + useFlipModelSwapchain: 1 resizableWindow: 0 useMacAppStoreValidation: 0 macAppStoreCategory: public.app-category.games gpuSkinning: 0 - graphicsJobs: 0 xboxPIXTextureCapture: 0 xboxEnableAvatar: 0 xboxEnableKinect: 0 @@ -86,33 +91,33 @@ PlayerSettings: xboxEnableFitness: 0 visibleInBackground: 0 allowFullscreenSwitch: 1 - graphicsJobMode: 0 - macFullscreenMode: 2 - d3d9FullscreenMode: 1 - d3d11FullscreenMode: 1 + fullscreenMode: 1 xboxSpeechDB: 0 xboxEnableHeadOrientation: 0 xboxEnableGuest: 0 xboxEnablePIXSampling: 0 - n3dsDisableStereoscopicView: 0 - n3dsEnableSharedListOpt: 1 - n3dsEnableVSync: 0 - ignoreAlphaClear: 0 + metalFramebufferOnly: 0 xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 xboxOneMonoLoggingLevel: 0 xboxOneLoggingLevel: 1 - videoMemoryForVertexBuffers: 0 - psp2PowerMode: 0 - psp2AcquireBGM: 1 - wiiUTVResolution: 0 - wiiUGamePadMSAA: 1 - wiiUSupportsNunchuk: 0 - wiiUSupportsClassicController: 0 - wiiUSupportsBalanceBoard: 0 - wiiUSupportsMotionPlus: 0 - wiiUSupportsProController: 0 - wiiUAllowScreenCapture: 1 - wiiUControllerCount: 0 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 1048576 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + stadiaPresentMode: 0 + stadiaTargetFramerate: 0 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnableLateAcquireNextImage: 0 m_SupportedAspectRatios: 4:3: 1 5:4: 1 @@ -122,6 +127,7 @@ PlayerSettings: bundleVersion: 1.0 preloadedAssets: [] metroInputSource: 0 + wsaTransparentSwapchain: 0 m_HolographicPauseOnTrackingLoss: 1 xboxOneDisableKinectGpuReservation: 0 xboxOneEnable7thCore: 0 @@ -132,14 +138,39 @@ PlayerSettings: daydream: depthFormat: 0 useSustainedPerformanceMode: 0 + enableVideoLayer: 0 + useProtectedVideoMemory: 0 + minimumSupportedHeadTracking: 0 + maximumSupportedHeadTracking: 1 hololens: depthFormat: 1 - protectGraphicsMemory: 0 + depthBufferSharingEnabled: 1 + lumin: + depthFormat: 0 + frameTiming: 2 + enableGLCache: 0 + glCacheMaxBlobSize: 524288 + glCacheMaxFileSize: 8388608 + oculus: + sharedDepthBuffer: 1 + dashSupport: 1 + lowOverheadMode: 0 + protectedContext: 0 + v2Signing: 1 + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 useHDRDisplay: 0 + D3DHDRBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 applicationIdentifier: {} buildNumber: {} AndroidBundleVersionCode: 1 - AndroidMinSdkVersion: 16 + AndroidMinSdkVersion: 19 AndroidTargetSdkVersion: 0 AndroidPreferredInstallLocation: 1 aotOptions: @@ -152,35 +183,28 @@ PlayerSettings: APKExpansionFiles: 0 keepLoadedShadersAlive: 0 StripUnusedMeshComponents: 0 - VertexChannelCompressionMask: - serializedVersion: 2 - m_Bits: 238 + VertexChannelCompressionMask: 214 iPhoneSdkVersion: 988 - iOSTargetOSVersionString: + iOSTargetOSVersionString: 10.0 tvOSSdkVersion: 0 tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: + tvOSTargetOSVersionString: 10.0 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 uIStatusBarHidden: 1 uIExitOnSuspend: 0 uIStatusBarStyle: 0 - iPhoneSplashScreen: {fileID: 0} - iPhoneHighResSplashScreen: {fileID: 0} - iPhoneTallHighResSplashScreen: {fileID: 0} - iPhone47inSplashScreen: {fileID: 0} - iPhone55inPortraitSplashScreen: {fileID: 0} - iPhone55inLandscapeSplashScreen: {fileID: 0} - iPadPortraitSplashScreen: {fileID: 0} - iPadHighResPortraitSplashScreen: {fileID: 0} - iPadLandscapeSplashScreen: {fileID: 0} - iPadHighResLandscapeSplashScreen: {fileID: 0} appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] iOSLaunchScreenType: 0 iOSLaunchScreenPortrait: {fileID: 0} iOSLaunchScreenLandscape: {fileID: 0} @@ -198,6 +222,8 @@ PlayerSettings: iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadSize: 100 iOSLaunchScreeniPadCustomXibPath: + iOSUseLaunchScreenStoryboard: 0 + iOSLaunchScreenCustomStoryboardPath: iOSDeviceRequirements: [] iOSURLSchemes: [] iOSBackgroundModes: 0 @@ -205,26 +231,81 @@ PlayerSettings: metalEditorSupport: 1 metalAPIValidation: 1 iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 appleDeveloperTeamID: iOSManualSigningProvisioningProfileID: tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 appleEnableAutomaticSigning: 0 - AndroidTargetDevice: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + clonedFromGUID: 00000000000000000000000000000000 + templatePackageId: + templateDefaultScene: + AndroidTargetArchitectures: 1 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} - AndroidKeystoreName: + AndroidKeystoreName: '{inproject}: ' AndroidKeyaliasName: + AndroidBuildApkPerCpuArchitecture: 0 AndroidTVCompatibility: 1 AndroidIsGame: 1 + AndroidEnableTango: 0 androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 m_AndroidBanners: - width: 320 height: 180 banner: {fileID: 0} androidGamepadSupportLevel: 0 - resolutionDialogBanner: {fileID: 0} + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: [] m_BuildTargetBatching: [] + m_BuildTargetGraphicsJobs: + - m_BuildTarget: MacStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: Switch + m_GraphicsJobs: 0 + - m_BuildTarget: MetroSupport + m_GraphicsJobs: 0 + - m_BuildTarget: GameCoreScarlettSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AppleTVSupport + m_GraphicsJobs: 0 + - m_BuildTarget: BJMSupport + m_GraphicsJobs: 0 + - m_BuildTarget: LinuxStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: GameCoreXboxOneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: PS4Player + m_GraphicsJobs: 0 + - m_BuildTarget: iOSSupport + m_GraphicsJobs: 0 + - m_BuildTarget: PS5Player + m_GraphicsJobs: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobs: 0 + - m_BuildTarget: LuminSupport + m_GraphicsJobs: 0 + - m_BuildTarget: CloudRendering + m_GraphicsJobs: 0 + - m_BuildTarget: AndroidPlayer + m_GraphicsJobs: 0 + - m_BuildTarget: WebGLSupport + m_GraphicsJobs: 0 + m_BuildTargetGraphicsJobMode: + - m_BuildTarget: PS4Player + m_GraphicsJobMode: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobMode: 0 m_BuildTargetGraphicsAPIs: - m_BuildTarget: WindowsStandaloneSupport m_APIs: 02000000 @@ -232,27 +313,25 @@ PlayerSettings: m_BuildTargetVRSettings: [] openGLRequireES31: 0 openGLRequireES31AEP: 0 - webPlayerTemplate: APPLICATION:Default + openGLRequireES32: 0 m_TemplateCustomTags: {} - wiiUTitleID: 0005000011000000 - wiiUGroupID: 00010000 - wiiUCommonSaveSize: 4096 - wiiUAccountSaveSize: 2048 - wiiUOlvAccessKey: 0 - wiiUTinCode: 0 - wiiUJoinGameId: 0 - wiiUJoinGameModeMask: 0000000000000000 - wiiUCommonBossSize: 0 - wiiUAccountBossSize: 0 - wiiUAddOnUniqueIDs: [] - wiiUMainThreadStackSize: 3072 - wiiULoaderThreadStackSize: 1024 - wiiUSystemHeapSize: 128 - wiiUTVStartupScreen: {fileID: 0} - wiiUGamePadStartupScreen: {fileID: 0} - wiiUDrcBufferDisabled: 0 - wiiUProfilerLibPath: + mobileMTRendering: + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: + - m_BuildTarget: Standalone + m_EncodingQuality: 1 + - m_BuildTarget: XboxOne + m_EncodingQuality: 1 + - m_BuildTarget: PS4 + m_EncodingQuality: 1 + - m_BuildTarget: GameCoreScarlett + m_EncodingQuality: 1 + - m_BuildTarget: GameCoreXboxOne + m_EncodingQuality: 1 + m_BuildTargetGroupLightmapSettings: [] playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 enableInternalProfiler: 0 logObjCUncaughtExceptions: 1 @@ -280,6 +359,10 @@ PlayerSettings: switchTitleNames_9: switchTitleNames_10: switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchTitleNames_15: switchPublisherNames_0: switchPublisherNames_1: switchPublisherNames_2: @@ -292,6 +375,10 @@ PlayerSettings: switchPublisherNames_9: switchPublisherNames_10: switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchPublisherNames_15: switchIcons_0: {fileID: 0} switchIcons_1: {fileID: 0} switchIcons_2: {fileID: 0} @@ -304,6 +391,10 @@ PlayerSettings: switchIcons_9: {fileID: 0} switchIcons_10: {fileID: 0} switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchIcons_15: {fileID: 0} switchSmallIcons_0: {fileID: 0} switchSmallIcons_1: {fileID: 0} switchSmallIcons_2: {fileID: 0} @@ -316,6 +407,10 @@ PlayerSettings: switchSmallIcons_9: {fileID: 0} switchSmallIcons_10: {fileID: 0} switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchSmallIcons_15: {fileID: 0} switchManualHTML: switchAccessibleURLs: switchLegalInformation: @@ -347,6 +442,7 @@ PlayerSettings: switchRatingsInt_9: 0 switchRatingsInt_10: 0 switchRatingsInt_11: 0 + switchRatingsInt_12: 0 switchLocalCommunicationIds_0: 0x0005000C10000001 switchLocalCommunicationIds_1: switchLocalCommunicationIds_2: @@ -357,8 +453,15 @@ PlayerSettings: switchLocalCommunicationIds_7: switchParentalControl: 0 switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 switchSupportedNpadStyles: 3 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 switchSocketConfigEnabled: 0 switchTcpInitialSendBufferSize: 32 switchTcpInitialReceiveBufferSize: 64 @@ -370,6 +473,8 @@ PlayerSettings: switchSocketInitializeEnabled: 1 switchNetworkInterfaceManagerInitializeEnabled: 1 switchPlayerConnectionEnabled: 1 + switchUseMicroSleepForYield: 1 + switchMicroSleepForYieldTime: 25 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -388,12 +493,15 @@ PlayerSettings: ps4PronunciationSIGPath: ps4BackgroundImagePath: ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: ps4SaveDataImagePath: ps4SdkOverride: ps4BGMPath: ps4ShareFilePath: ps4ShareOverlayImagePath: ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: ps4NPtitleDatPath: ps4RemotePlayKeyAssignment: -1 ps4RemotePlayKeyMappingDir: @@ -406,17 +514,20 @@ PlayerSettings: ps4DownloadDataSize: 0 ps4GarlicHeapSize: 2048 ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ - ps4UseDebugIl2cppLibs: 0 ps4pnSessions: 1 ps4pnPresence: 1 ps4pnFriends: 1 ps4pnGameCustomData: 1 playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 restrictedAudioUsageRights: 0 ps4UseResolutionFallback: 0 ps4ReprojectionSupport: 0 ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 ps4SocialScreenEnabled: 0 ps4ScriptOptimizationLevel: 3 ps4Audio3dVirtualSpeakerCount: 14 @@ -433,59 +544,40 @@ PlayerSettings: ps4disableAutoHideSplash: 0 ps4videoRecordingFeaturesUsed: 0 ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4GPU800MHz: 1 ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 + ps5ParamFilePath: + ps5VideoOutPixelFormat: 0 + ps5VideoOutInitialWidth: 1920 + ps5VideoOutOutputMode: 1 + ps5BackgroundImagePath: + ps5StartupImagePath: + ps5Pic2Path: + ps5StartupImagesFolder: + ps5IconImagesFolder: + ps5SaveDataImagePath: + ps5SdkOverride: + ps5BGMPath: + ps5ShareOverlayImagePath: + ps5NPConfigZipPath: + ps5Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps5UseResolutionFallback: 0 + ps5UseAudio3dBackend: 0 + ps5ScriptOptimizationLevel: 2 + ps5Audio3dVirtualSpeakerCount: 14 + ps5UpdateReferencePackage: + ps5disableAutoHideSplash: 0 + ps5OperatingSystemCanDisableSplashScreen: 0 + ps5IncludedModules: [] + ps5SharedBinaryContentLabels: [] + ps5SharedBinarySystemFolders: [] monoEnv: - psp2Splashimage: {fileID: 0} - psp2NPTrophyPackPath: - psp2NPSupportGBMorGJP: 0 - psp2NPAgeRating: 12 - psp2NPTitleDatPath: - psp2NPCommsID: - psp2NPCommunicationsID: - psp2NPCommsPassphrase: - psp2NPCommsSig: - psp2ParamSfxPath: - psp2ManualPath: - psp2LiveAreaGatePath: - psp2LiveAreaBackroundPath: - psp2LiveAreaPath: - psp2LiveAreaTrialPath: - psp2PatchChangeInfoPath: - psp2PatchOriginalPackage: - psp2PackagePassword: F69AzBlax3CF3EDNhm3soLBPh71Yexui - psp2KeystoneFile: - psp2MemoryExpansionMode: 0 - psp2DRMType: 0 - psp2StorageType: 0 - psp2MediaCapacity: 0 - psp2DLCConfigPath: - psp2ThumbnailPath: - psp2BackgroundPath: - psp2SoundPath: - psp2TrophyCommId: - psp2TrophyPackagePath: - psp2PackagedResourcesPath: - psp2SaveDataQuota: 10240 - psp2ParentalLevel: 1 - psp2ShortTitle: Not Set - psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF - psp2Category: 0 - psp2MasterVersion: 01.00 - psp2AppVersion: 01.00 - psp2TVBootMode: 0 - psp2EnterButtonAssignment: 2 - psp2TVDisableEmu: 0 - psp2AllowTwitterDialog: 1 - psp2Upgradable: 0 - psp2HealthWarning: 0 - psp2UseLibLocation: 0 - psp2InfoBarOnStartup: 0 - psp2InfoBarColor: 0 - psp2UseDebugIl2cppLibs: 0 - psmSplashimage: {fileID: 0} splashScreenBackgroundSourceLandscape: {fileID: 0} splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 spritePackerPolicy: webGLMemorySize: 256 webGLExceptionSupport: 1 @@ -497,13 +589,22 @@ PlayerSettings: webGLTemplate: APPLICATION:Default webGLAnalyzeBuildSize: 0 webGLUseEmbeddedResources: 0 - webGLUseWasm: 0 webGLCompressionFormat: 1 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLWasmStreaming: 0 scriptingDefineSymbols: {} platformArchitecture: {} scriptingBackend: {} + il2cppCompilerConfiguration: {} + managedStrippingLevel: {} incrementalIl2cppBuild: {} + allowUnsafeCode: 0 additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 0 + assemblyVersionValidation: 1 + gcWBarrierValidation: 0 apiCompatibilityLevelPerPlatform: {} m_RenderingPath: 1 m_MobileRenderingPath: 1 @@ -517,11 +618,12 @@ PlayerSettings: metroApplicationDescription: PolyToolkitUnity wsaImages: {} metroTileShortName: - metroCommandLineArgsFile: metroTileShowName: 0 metroMediumTileShowName: 0 metroLargeTileShowName: 0 metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 metroDefaultTileSize: 1 metroTileForegroundText: 2 metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} @@ -529,35 +631,10 @@ PlayerSettings: a: 1} metroSplashScreenUseBackgroundColor: 0 platformCapabilities: {} + metroTargetDeviceFamilies: {} metroFTAName: metroFTAFileTypes: [] metroProtocolName: - metroCompilationOverrides: 1 - tizenProductDescription: - tizenProductURL: - tizenSigningProfileName: - tizenGPSPermissions: 0 - tizenMicrophonePermissions: 0 - tizenDeploymentTarget: - tizenDeploymentTargetType: -1 - tizenMinOSVersion: 1 - n3dsUseExtSaveData: 0 - n3dsCompressStaticMem: 1 - n3dsExtSaveDataNumber: 0x12345 - n3dsStackSize: 131072 - n3dsTargetPlatform: 2 - n3dsRegion: 7 - n3dsMediaSize: 0 - n3dsLogoStyle: 3 - n3dsTitle: GameName - n3dsProductCode: - n3dsApplicationId: 0xFF3FF - stvDeviceAddress: - stvProductDescription: - stvProductAuthor: - stvProductAuthorEmail: - stvProductLink: - stvProductCategory: 0 XboxOneProductId: XboxOneUpdateKey: XboxOneSandboxId: @@ -567,6 +644,7 @@ PlayerSettings: XboxOneGameOsOverridePath: XboxOnePackagingOverridePath: XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 XboxOnePackageEncryption: 0 XboxOnePackageUpdateGranularity: 2 XboxOneDescription: @@ -575,22 +653,38 @@ PlayerSettings: XboxOneCapability: [] XboxOneGameRating: {} XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 XboxOneEnableGPUVariability: 0 XboxOneSockets: {} XboxOneSplashScreen: {fileID: 0} XboxOneAllowedProductIds: [] XboxOnePersistentLocalStorageSize: 0 - xboxOneScriptCompiler: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: vrEditorSettings: daydream: daydreamIconForeground: {fileID: 0} daydreamIconBackground: {fileID: 0} cloudServicesEnabled: UNet: 1 - facebookSdkVersion: 7.9.1 - apiCompatibilityLevel: 2 + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + apiCompatibilityLevel: 6 cloudProjectId: + framebufferDepthMemorylessMode: 0 projectName: organizationId: cloudEnabled: 0 - enableNewInputSystem: 0 + enableNativePlatformBackendsForNewInputSystem: 0 + disableOldInputManagerSupport: 0 + legacyClampBlendShapeWeights: 1 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index e48a9f5..ba35eb1 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1 +1,2 @@ -m_EditorVersion: 5.6.3f1 +m_EditorVersion: 2019.4.25f1 +m_EditorVersionWithRevision: 2019.4.25f1 (01a0494af254) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset index 1b445c7..575456c 100644 --- a/ProjectSettings/QualitySettings.asset +++ b/ProjectSettings/QualitySettings.asset @@ -17,7 +17,8 @@ QualitySettings: shadowNearPlaneOffset: 3 shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - blendWeights: 1 + shadowmaskMode: 0 + skinWeights: 1 textureQuality: 1 anisotropicTextures: 0 antiAliasing: 0 @@ -28,9 +29,18 @@ QualitySettings: vSyncCount: 0 lodBias: 0.3 maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 particleRaycastBudget: 4 asyncUploadTimeSlice: 2 asyncUploadBufferSize: 4 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Fast @@ -43,7 +53,8 @@ QualitySettings: shadowNearPlaneOffset: 3 shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - blendWeights: 2 + shadowmaskMode: 0 + skinWeights: 2 textureQuality: 0 anisotropicTextures: 0 antiAliasing: 0 @@ -54,9 +65,18 @@ QualitySettings: vSyncCount: 0 lodBias: 0.4 maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 particleRaycastBudget: 16 asyncUploadTimeSlice: 2 asyncUploadBufferSize: 4 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Simple @@ -69,7 +89,8 @@ QualitySettings: shadowNearPlaneOffset: 3 shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - blendWeights: 2 + shadowmaskMode: 0 + skinWeights: 2 textureQuality: 0 anisotropicTextures: 1 antiAliasing: 0 @@ -80,9 +101,18 @@ QualitySettings: vSyncCount: 1 lodBias: 0.7 maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 particleRaycastBudget: 64 asyncUploadTimeSlice: 2 asyncUploadBufferSize: 4 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Good @@ -95,7 +125,8 @@ QualitySettings: shadowNearPlaneOffset: 3 shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - blendWeights: 2 + shadowmaskMode: 1 + skinWeights: 2 textureQuality: 0 anisotropicTextures: 1 antiAliasing: 0 @@ -106,9 +137,18 @@ QualitySettings: vSyncCount: 1 lodBias: 1 maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 particleRaycastBudget: 256 asyncUploadTimeSlice: 2 asyncUploadBufferSize: 4 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Beautiful @@ -121,7 +161,8 @@ QualitySettings: shadowNearPlaneOffset: 3 shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - blendWeights: 4 + shadowmaskMode: 1 + skinWeights: 4 textureQuality: 0 anisotropicTextures: 2 antiAliasing: 2 @@ -132,9 +173,18 @@ QualitySettings: vSyncCount: 1 lodBias: 1.5 maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 particleRaycastBudget: 1024 asyncUploadTimeSlice: 2 asyncUploadBufferSize: 4 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Fantastic @@ -147,7 +197,8 @@ QualitySettings: shadowNearPlaneOffset: 3 shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - blendWeights: 4 + shadowmaskMode: 1 + skinWeights: 4 textureQuality: 0 anisotropicTextures: 2 antiAliasing: 2 @@ -158,9 +209,18 @@ QualitySettings: vSyncCount: 1 lodBias: 2 maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 particleRaycastBudget: 4096 asyncUploadTimeSlice: 2 asyncUploadBufferSize: 4 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] m_PerPlatformDefaultQuality: Android: 2 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset index e6c9fd7..b169ebd 100644 --- a/ProjectSettings/UnityConnectSettings.asset +++ b/ProjectSettings/UnityConnectSettings.asset @@ -3,30 +3,32 @@ --- !u!310 &1 UnityConnectSettings: m_ObjectHideFlags: 0 + serializedVersion: 1 m_Enabled: 0 m_TestMode: 0 - m_TestEventUrl: - m_TestConfigUrl: + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com m_TestInitMode: 0 CrashReportingSettings: - m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes + m_EventUrl: https://perf-events.cloud.unity3d.com m_Enabled: 0 + m_LogBufferSize: 10 m_CaptureEditorExceptions: 1 UnityPurchasingSettings: m_Enabled: 0 m_TestMode: 0 UnityAnalyticsSettings: m_Enabled: 1 - m_InitializeOnStartup: 1 m_TestMode: 0 - m_TestEventUrl: - m_TestConfigUrl: + m_InitializeOnStartup: 1 UnityAdsSettings: m_Enabled: 0 m_InitializeOnStartup: 1 m_TestMode: 0 - m_EnabledPlatforms: 4294967295 m_IosGameId: m_AndroidGameId: + m_GameIds: {} + m_GameId: PerformanceReportingSettings: m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..3a95c98 --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,12 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_StripUpdateShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/README.md b/README.md index e90fbad..eb487f4 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ -This project is no longer being actively developed or maintained. We recommend directly utilizing the [Poly API](https://developers.google.com/poly/develop/api) to access Poly assets from Unity, and using the existing Unity support for loading Poly compatible asset formats. -# Poly Toolkit for Unity +# Icosa API Client for Unity +### based on Google Poly Toolkit for Unity Copyright (c) 2017 Google Inc. All rights reserved. +# Original Readme: + This is the source code for Poly Toolkit, a plugin for the [Unity](http://unity3d.com) engine that allows you to import 3D assets from [Poly](https://poly.google.com) at