diff --git a/.gitignore b/.gitignore index 25d09c4..e3f0347 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,17 @@ $RECYCLE.BIN/ *.msp Builds/ .vs/ +Logs + +# Asset meta data should only be ignored when the corresponding asset is also ignored +!/[Aa]ssets/**/*.meta + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* + diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0dcbe98 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,47 @@ +--- +os: osx +language: objective-c +osx_image: xcode9.3 +rvm: + - 2.5.1 + +before_install: + - chmod a+x ./Scripts/install.sh + - chmod a+x ./Scripts/build.sh + +install: + - "./Scripts/install.sh" +script: + - travis_wait 180 "./Scripts/build.sh" + +env: + global: + - JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home + - ANDROID_SDK_ROOT=/usr/local/share/android-sdk + - ANDROID_NDK_ROOT=/usr/local/share/android-ndk + - ANDROID_HOME=/usr/local/share/android-sdk + - UNITY=/Applications/Unity/Unity.app/Contents/MacOS/Unity +# - UNITY=/home/humbertodias/Unity/Hub/Editor/2017.4.39f1/Editor/Unity + - PROJECT_NAME=sonic-realms + - SKIP_IOS=true + +deploy: +- provider: pages + local-dir: Build/webgl/$PROJECT_NAME/ + github-token: $GITHUB_TOKEN + keep-history: false + skip_cleanup: true +# on: +# tags: true + +- provider: releases + file_glob: true + file: + - Build/**/*.zip + - Build/android/*.apk + - Build/ios/*.ipa + api_key: $GITHUB_TOKEN + skip_cleanup: true +# on: +# tags: true + diff --git a/Assets/Data.meta b/Assets/Data.meta deleted file mode 100644 index d0b4e35..0000000 --- a/Assets/Data.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4f2991f9d94afbe42afeb0a37b8c90cd -folderAsset: yes -timeCreated: 1454446253 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Data/Characters.meta b/Assets/Data/Characters.meta deleted file mode 100644 index f8bdfe7..0000000 --- a/Assets/Data/Characters.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: cad3af284fb98d94f9f38db467ae7032 -folderAsset: yes -timeCreated: 1456281394 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Data/Characters/Sonic.asset.meta b/Assets/Data/Characters/Sonic.asset.meta deleted file mode 100644 index c95c565..0000000 --- a/Assets/Data/Characters/Sonic.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 819344311bcc8a049bac258c77bd1211 -timeCreated: 1456281457 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Data/Levels.meta b/Assets/Data/Levels.meta deleted file mode 100644 index 162cff3..0000000 --- a/Assets/Data/Levels.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5296e14913283a643901e1b1cc94094f -folderAsset: yes -timeCreated: 1456281047 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Data/Levels/Test Zone.asset.meta b/Assets/Data/Levels/Test Zone.asset.meta deleted file mode 100644 index 2c234ed..0000000 --- a/Assets/Data/Levels/Test Zone.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4861631379e5fc54db57c19bd8daf3c1 -timeCreated: 1456280542 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Editor/PerformBuild.cs b/Assets/Editor/PerformBuild.cs new file mode 100644 index 0000000..ccd6afd --- /dev/null +++ b/Assets/Editor/PerformBuild.cs @@ -0,0 +1,203 @@ +using UnityEditor; +using UnityEngine; +using System.IO; +using System.Collections; +using System.Collections.Generic; +using System; + +public class PerformBuild +{ + private static string BUILD_LOCATION = "+buildlocation"; + + public static string GetBuildLocation(BuildTarget buildTarget) + { + string[] args = System.Environment.GetCommandLineArgs(); + int indexOfBuildLocation = System.Array.IndexOf(args, BUILD_LOCATION); + if (indexOfBuildLocation >= 0) + { + indexOfBuildLocation++; + Debug.Log(string.Format("Build Location for {0} set to {1}", buildTarget.ToString(), args[indexOfBuildLocation])); + return args[indexOfBuildLocation]; + } + else + { + Debug.Log(string.Format("Build Location for {0} not set. Defaulting to {1}",buildTarget.ToString(), + EditorUserBuildSettings.GetBuildLocation(buildTarget))); + return EditorUserBuildSettings.GetBuildLocation(buildTarget); + } + } + + public static string[] GetBuildScenes() + { + List names = new List(); + + foreach(EditorBuildSettingsScene e in EditorBuildSettings.scenes) + { + if(e==null) + continue; + + if(e.enabled) + names.Add(e.path); + } + return names.ToArray(); + } + + public static void BuildPlayerTarget(BuildTarget target){ + + Debug.Log("Command line build " + target.ToString() + " version\n------------------\n------------------"); + + + string[] scenes = GetBuildScenes(); + string path = GetBuildLocation(target); + if(scenes == null || scenes.Length==0 || path == null) + return; + + Debug.Log(string.Format("Path: \"{0}\"", path)); + for(int i=0; i < scenes.Length; ++i) + { + Debug.Log(string.Format("Scene[{0}]: \"{1}\"", i, scenes[i])); + } + + Debug.Log(string.Format("Creating Directory \"{0}\" if it does not exist", path)); + FileInfo fileInfo = new FileInfo (path); + if (!fileInfo.Exists) { + Debug.Log(string.Format("Not.Exists {0}", fileInfo.ToString())); + if (!fileInfo.Directory.Exists) { + Debug.Log(string.Format("Directory.Dont.Exists {0}", fileInfo.Directory.ToString())); + fileInfo.Directory.Create (); + } else { + if (!fileInfo.Directory.Parent.Exists) { + Debug.Log(string.Format("Directory.Parent.Exists {0}", fileInfo.Directory.Parent.ToString())); + fileInfo.Directory.Parent.Create (); + } + } + } else { + Debug.Log(string.Format("Exists {0}", fileInfo.ToString())); + } + + Debug.Log(string.Format("Switching Build Target to {0}", target.ToString())); + BuildTargetGroup buildTargetGroup = BuildPipeline.GetBuildTargetGroup (target); + + // IL2CPP + PlayerSettings.SetScriptingBackend(buildTargetGroup, ScriptingImplementation.IL2CPP); + + EditorUserBuildSettings.SwitchActiveBuildTarget(buildTargetGroup, target); + + Debug.Log("Starting " + target.ToString() + " Build!"); + BuildPipeline.BuildPlayer(scenes, path, target, BuildOptions.None); + + } + + [UnityEditor.MenuItem("Perform Build/iOS Command Line Build")] + static void CommandLineBuildiOS () + { + BuildPlayerTarget(BuildTarget.iOS); + } + + [UnityEditor.MenuItem("Perform Build/Android Command Line Build")] + public static void CommandLineBuildAndroid () + { + BuildTarget target = BuildTarget.Android; + + string JavaHome = Environment.GetEnvironmentVariable("JAVA_HOME"); + string AndroidSdkRoot = Environment.GetEnvironmentVariable("ANDROID_SDK_ROOT"); + string AndroidNdkRoot = Environment.GetEnvironmentVariable("ANDROID_NDK_ROOT"); + Debug.Log("JAVA_HOME: " + JavaHome); + Debug.Log("ANDROID_SDK_ROOT: " + AndroidSdkRoot); + Debug.Log("ANDROID_NDK_ROOT: " + AndroidNdkRoot); + + Debug.Log("Command line build " + target.ToString() + " version\n------------------\n------------------"); + + string[] scenes = GetBuildScenes(); + string path = GetBuildLocation(target); + if(scenes == null || scenes.Length==0 || path == null) + return; + + Debug.Log(string.Format("Path: \"{0}\"", path)); + for(int i=0; i < scenes.Length; ++i) + { + Debug.Log(string.Format("Scene[{0}]: \"{1}\"", i, scenes[i])); + } + + Debug.Log(string.Format("Creating Directory \"{0}\" if it does not exist", path)); + FileInfo fileInfo = new FileInfo (path); + if (!fileInfo.Exists) { + Debug.Log(string.Format("Not.Exists {0}", fileInfo.ToString())); + if (!fileInfo.Directory.Exists) { + Debug.Log(string.Format("Directory.Dont.Exists {0}", fileInfo.Directory.ToString())); + fileInfo.Directory.Create (); + } else { + if (!fileInfo.Directory.Parent.Exists) { + Debug.Log(string.Format("Directory.Parent.Exists {0}", fileInfo.Directory.Parent.ToString())); + fileInfo.Directory.Parent.Create (); + } + } + } else { + Debug.Log(string.Format("Exists {0}", fileInfo.ToString())); + } + + EditorPrefs.SetString ("JdkPath", JavaHome); + EditorPrefs.SetString ("AndroidSdkRoot", AndroidSdkRoot); + EditorPrefs.SetString ("AndroidNdkRoot", AndroidNdkRoot); + + PlayerSettings.SetScriptingBackend(BuildTargetGroup.Android, ScriptingImplementation.IL2CPP); + + Debug.Log(string.Format("Switching Build Target to {0}", target.ToString())); + BuildTargetGroup buildTargetGroup = BuildPipeline.GetBuildTargetGroup (target); + EditorUserBuildSettings.SwitchActiveBuildTarget(buildTargetGroup, target); + + BuildPlayerOptions buildPlayerOptions = new BuildPlayerOptions(); + buildPlayerOptions.scenes = scenes; + buildPlayerOptions.locationPathName = path; + buildPlayerOptions.target = BuildTarget.Android; + buildPlayerOptions.options = BuildOptions.None; + + //set the internal apk version to the current unix timestamp, so this increases with every build + PlayerSettings.Android.bundleVersionCode = (Int32)(DateTime.UtcNow.Subtract(new DateTime(1970, 1, 1))).TotalSeconds; + PlayerSettings.Android.keyaliasName = "android"; + PlayerSettings.Android.keyaliasPass = "android"; + PlayerSettings.Android.keystorePass = "android"; + PlayerSettings.Android.keystoreName = Path.GetFullPath(@"./android.keystore"); + + Debug.Log("Starting " + target.ToString() + " Build!"); + BuildPipeline.BuildPlayer(buildPlayerOptions); + + } + + [UnityEditor.MenuItem("Perform Build/WebGL Command Line Build")] + public static void CommandLineBuildWebGL () + { + BuildPlayerTarget(BuildTarget.WebGL); + } + + [UnityEditor.MenuItem("Perform Build/WebGL")] + public static void buildWebGL() { + string path = "Build/webgl"; + BuildPipeline.BuildPlayer(GetBuildScenes(), path, BuildTarget.WebGL, BuildOptions.None); + } + + [UnityEditor.MenuItem("Perform Build/iOS")] + public static void buildiOS() { + string path = "Build/ios"; + BuildPipeline.BuildPlayer(GetBuildScenes(), path, BuildTarget.iOS, BuildOptions.None); + } + + [UnityEditor.MenuItem("Perform Build/Windows")] + public static void buildWindows() { + string path = "Build/windows/sonic.exe"; + BuildPipeline.BuildPlayer(GetBuildScenes(), path, BuildTarget.StandaloneWindows, BuildOptions.None); + } + + [UnityEditor.MenuItem("Perform Build/Linux")] + public static void buildLinux() { + string path = "Build/linux/sonic.x64"; + BuildPipeline.BuildPlayer(GetBuildScenes(), path, BuildTarget.StandaloneLinux64, BuildOptions.None); + } + + [UnityEditor.MenuItem("Perform Build/OSX")] + public static void buildOSX() { + string path = "Build/osx/sonic"; + BuildPipeline.BuildPlayer(GetBuildScenes(), path, BuildTarget.StandaloneOSX, BuildOptions.None); + } + +} diff --git a/Assets/Gizmos.meta b/Assets/Gizmos.meta deleted file mode 100644 index a2cf19b..0000000 --- a/Assets/Gizmos.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 82b45b65c366dcb4e882706f929d1a2a -folderAsset: yes -timeCreated: 1457298568 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers.meta b/Assets/Gizmos/Collision Layers.meta deleted file mode 100644 index e9ae694..0000000 --- a/Assets/Gizmos/Collision Layers.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 750cafe2ad922d448850e3075f0cf222 -folderAsset: yes -timeCreated: 1457298568 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_0.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_0.png.meta deleted file mode 100644 index b0155f7..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_0.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 14b54a9cc9ce54247ad3cd4693dbeed1 -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_1.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_1.png.meta deleted file mode 100644 index bfb15bb..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_1.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 5558cf3c476f8b14b95e26ad4d393c86 -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_2.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_2.png.meta deleted file mode 100644 index 13d8939..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_2.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 3909cf008916a97428732b23cfba7fb3 -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_3.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_3.png.meta deleted file mode 100644 index e7065a3..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_3.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: c5d0a190195f830498acaeaf6c495e70 -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_4.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_4.png.meta deleted file mode 100644 index 8acb8c8..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_4.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: e3974135504a1a047b31abd22123c64a -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_5.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_5.png.meta deleted file mode 100644 index ad1bfa9..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_5.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: f36436fbb5d391b4b8e45b25829e0362 -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_6.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_6.png.meta deleted file mode 100644 index 39e3dec..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_6.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 5b5d99520077291419aa65b32bef1aef -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_7.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_7.png.meta deleted file mode 100644 index 2fb5727..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_7.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: a872fb3f5ed423f40a97e69f404642fd -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_8.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_8.png.meta deleted file mode 100644 index bbbb319..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_8.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 0e336eb6a64ce5642bb5f4b27fbc0c8b -timeCreated: 1457298568 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Gizmos/Collision Layers/gizmo_layer_9.png.meta b/Assets/Gizmos/Collision Layers/gizmo_layer_9.png.meta deleted file mode 100644 index c55971c..0000000 --- a/Assets/Gizmos/Collision Layers/gizmo_layer_9.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 4f7d642e19730c641aade94f3004fe03 -timeCreated: 1457298569 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials.meta b/Assets/Materials.meta deleted file mode 100644 index 2d60bb3..0000000 --- a/Assets/Materials.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 9a323e1238f625549b62a06683ebb1a4 -folderAsset: yes -timeCreated: 1456378465 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves.meta b/Assets/Materials/Curves.meta deleted file mode 100644 index fa9f940..0000000 --- a/Assets/Materials/Curves.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 298736a0c385fc644a08f8f3210b5dc1 -folderAsset: yes -timeCreated: 1456973868 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves/Aquatic Ruin Curve.psd.meta b/Assets/Materials/Curves/Aquatic Ruin Curve.psd.meta deleted file mode 100644 index 7a946a5..0000000 --- a/Assets/Materials/Curves/Aquatic Ruin Curve.psd.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: c29b70cf7ef70ab43ad715affcf8a5bd -timeCreated: 1456972391 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves/Hidden Palace Curve.psd.meta b/Assets/Materials/Curves/Hidden Palace Curve.psd.meta deleted file mode 100644 index 7c235b9..0000000 --- a/Assets/Materials/Curves/Hidden Palace Curve.psd.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 261ebbfc926627e43a989b53e17bcaae -timeCreated: 1456972714 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves/Hydrocity Curve.psd.meta b/Assets/Materials/Curves/Hydrocity Curve.psd.meta deleted file mode 100644 index 77d6f91..0000000 --- a/Assets/Materials/Curves/Hydrocity Curve.psd.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 5ebf145759bf9bc40813c5bb23455240 -timeCreated: 1457077524 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves/Identity Curve.psd.meta b/Assets/Materials/Curves/Identity Curve.psd.meta deleted file mode 100644 index 659e611..0000000 --- a/Assets/Materials/Curves/Identity Curve.psd.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 4670b18168024bc4bab139ffcf7f735b -timeCreated: 1456976871 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves/Labyrinth Curve.psd.meta b/Assets/Materials/Curves/Labyrinth Curve.psd.meta deleted file mode 100644 index 41db5d5..0000000 --- a/Assets/Materials/Curves/Labyrinth Curve.psd.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 59e762b6810b90a4980fbb3046570ba0 -timeCreated: 1456973495 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Curves/Megamack Curve.psd.meta b/Assets/Materials/Curves/Megamack Curve.psd.meta deleted file mode 100644 index fc8fae5..0000000 --- a/Assets/Materials/Curves/Megamack Curve.psd.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 82b32264a6a8c8343b180f2b08451e99 -timeCreated: 1456976871 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Heat Test.mat.meta b/Assets/Materials/Heat Test.mat.meta deleted file mode 100644 index a796a74..0000000 --- a/Assets/Materials/Heat Test.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3d916a67ce13d11479f690b2d36b8926 -timeCreated: 1450271554 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Paletted Sprite.mat.meta b/Assets/Materials/Paletted Sprite.mat.meta deleted file mode 100644 index f55c4aa..0000000 --- a/Assets/Materials/Paletted Sprite.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1b8f24c06c4ecb44da81eb53ee297641 -timeCreated: 1449493061 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Sonic Fade.mat b/Assets/Materials/Sonic Fade.mat index 1f333a6..c4ae67a 100644 --- a/Assets/Materials/Sonic Fade.mat +++ b/Assets/Materials/Sonic Fade.mat @@ -10,145 +10,67 @@ Material: m_Shader: {fileID: 4800000, guid: fb08b0934ed40be4c841c4ab01821f3b, type: 3} m_ShaderKeywords: m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: 2000 stringTagMap: {} + disabledShaderPasses: [] m_SavedProperties: - serializedVersion: 2 + serializedVersion: 3 m_TexEnvs: - data: - first: - name: _MainTex - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _BumpMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _DetailNormalMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _ParallaxMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _OcclusionMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _EmissionMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _DetailMask - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _DetailAlbedoMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _MetallicGlossMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + 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: 0} + 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: - data: - first: - name: _SrcBlend - second: 1 - data: - first: - name: _DstBlend - second: 0 - data: - first: - name: _Cutoff - second: 0.5 - data: - first: - name: _Parallax - second: 0.02 - data: - first: - name: _ZWrite - second: 1 - data: - first: - name: _Glossiness - second: 0.5 - data: - first: - name: _BumpScale - second: 1 - data: - first: - name: _OcclusionStrength - second: 1 - data: - first: - name: _DetailNormalMapScale - second: 1 - data: - first: - name: _UVSec - second: 0 - data: - first: - name: _Mode - second: 0 - data: - first: - name: _Metallic - second: 0 - data: - first: - name: _Red - second: 0 - data: - first: - name: _Green - second: -0 - data: - first: - name: _Blue - second: -0 - data: - first: - name: _Progress - second: 0 + - _Blue: -0 + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Glossiness: 0.5 + - _Green: -0 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Progress: 0 + - _Red: 0 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 m_Colors: - data: - first: - name: _EmissionColor - second: {r: 0, g: 0, b: 0, a: 1} - data: - first: - name: _Color - second: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/Materials/Sonic Fade.mat.meta b/Assets/Materials/Sonic Fade.mat.meta deleted file mode 100644 index c1956d6..0000000 --- a/Assets/Materials/Sonic Fade.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 025d66904b7ec654984fad06e38536f5 -timeCreated: 1449881156 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water.meta b/Assets/Materials/Water.meta deleted file mode 100644 index 0c1f58d..0000000 --- a/Assets/Materials/Water.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f113af2246d616745a775e8d7bb0d83c -folderAsset: yes -timeCreated: 1457132332 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Aquatic Ruin Water Wavy.mat.meta b/Assets/Materials/Water/Aquatic Ruin Water Wavy.mat.meta deleted file mode 100644 index 9edcb62..0000000 --- a/Assets/Materials/Water/Aquatic Ruin Water Wavy.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ea75666762566fd4492123075cf32911 -timeCreated: 1457132432 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Aquatic Ruin Water.mat.meta b/Assets/Materials/Water/Aquatic Ruin Water.mat.meta deleted file mode 100644 index 4d5c13c..0000000 --- a/Assets/Materials/Water/Aquatic Ruin Water.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 348099f2ab2e12e4aab27a0c989534d3 -timeCreated: 1456952245 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Hidden Palace Water Wavy.mat.meta b/Assets/Materials/Water/Hidden Palace Water Wavy.mat.meta deleted file mode 100644 index 79173e9..0000000 --- a/Assets/Materials/Water/Hidden Palace Water Wavy.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 182bf0ed87f81df4fa811ac8f24390c8 -timeCreated: 1457132432 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Hidden Palace Water.mat.meta b/Assets/Materials/Water/Hidden Palace Water.mat.meta deleted file mode 100644 index 6fcc1ab..0000000 --- a/Assets/Materials/Water/Hidden Palace Water.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 76cbbe06ad80c56469dd3d64d183511b -timeCreated: 1456974066 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Hydrocity Water Wavy.mat.meta b/Assets/Materials/Water/Hydrocity Water Wavy.mat.meta deleted file mode 100644 index 83a2a52..0000000 --- a/Assets/Materials/Water/Hydrocity Water Wavy.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5307654d42f65c74bb51fc8a5203ef72 -timeCreated: 1457132432 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Hydrocity Water.mat.meta b/Assets/Materials/Water/Hydrocity Water.mat.meta deleted file mode 100644 index e7fd78f..0000000 --- a/Assets/Materials/Water/Hydrocity Water.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5641db994dc241e4aae5606567dbb194 -timeCreated: 1457077553 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Labyrinth Water Wavy.mat.meta b/Assets/Materials/Water/Labyrinth Water Wavy.mat.meta deleted file mode 100644 index bf66bff..0000000 --- a/Assets/Materials/Water/Labyrinth Water Wavy.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2c12ca01dbff0444baf685d31931b86d -timeCreated: 1457132432 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Labyrinth Water.mat.meta b/Assets/Materials/Water/Labyrinth Water.mat.meta deleted file mode 100644 index 9fd2557..0000000 --- a/Assets/Materials/Water/Labyrinth Water.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0a12b29f58791934a96699aff025aa15 -timeCreated: 1456974032 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Mega Mack Wavy.mat b/Assets/Materials/Water/Mega Mack Wavy.mat index 9933a85..c3a2ba5 100644 --- a/Assets/Materials/Water/Mega Mack Wavy.mat +++ b/Assets/Materials/Water/Mega Mack Wavy.mat @@ -8,31 +8,22 @@ Material: m_PrefabInternal: {fileID: 0} m_Name: Mega Mack Wavy m_Shader: {fileID: 4800000, guid: 9977e690ca6a5e14985235cdcadcc590, type: 3} - m_ShaderKeywords: + m_ShaderKeywords: ETC1_EXTERNAL_ALPHA m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: {} + disabledShaderPasses: [] m_SavedProperties: - serializedVersion: 2 + serializedVersion: 3 m_TexEnvs: - data: - first: - name: _Curve - second: - m_Texture: {fileID: 2800000, guid: 82b32264a6a8c8343b180f2b08451e99, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} + - _Curve: + m_Texture: {fileID: 2800000, guid: 82b32264a6a8c8343b180f2b08451e99, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - data: - first: - name: _Wavelength - second: 0.3 - data: - first: - name: _Amplitude - second: 0.003 - data: - first: - name: _ScrollRate - second: 0.08 - m_Colors: {} + - _Amplitude: 0.003 + - _ScrollRate: 0.08 + - _Wavelength: 0.3 + m_Colors: [] diff --git a/Assets/Materials/Water/Mega Mack Wavy.mat.meta b/Assets/Materials/Water/Mega Mack Wavy.mat.meta deleted file mode 100644 index 6bb1ef5..0000000 --- a/Assets/Materials/Water/Mega Mack Wavy.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d89ce982c0c97ee449b6c6270c8ad88d -timeCreated: 1457132432 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Materials/Water/Mega Mack.mat.meta b/Assets/Materials/Water/Mega Mack.mat.meta deleted file mode 100644 index 0945e42..0000000 --- a/Assets/Materials/Water/Mega Mack.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 68d086d69c72e7f4c95d50bd74944181 -timeCreated: 1457129527 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs.meta b/Assets/Prefabs.meta deleted file mode 100644 index 24218c0..0000000 --- a/Assets/Prefabs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2f645da053f5cde46981548a7f315549 -folderAsset: yes -timeCreated: 1441097660 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Game Infrastructure.meta b/Assets/Prefabs/Game Infrastructure.meta deleted file mode 100644 index 4911442..0000000 --- a/Assets/Prefabs/Game Infrastructure.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: bd4f572e7ab6f3c4ba381a63ad4bdc2c -folderAsset: yes -timeCreated: 1456520668 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Game Infrastructure/Game Manager.prefab.meta b/Assets/Prefabs/Game Infrastructure/Game Manager.prefab.meta deleted file mode 100644 index ba1bd1e..0000000 --- a/Assets/Prefabs/Game Infrastructure/Game Manager.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2408b886ba162e84eb4eafdc49295c5e -timeCreated: 1456520689 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Game Infrastructure/HUD Manager.prefab.meta b/Assets/Prefabs/Game Infrastructure/HUD Manager.prefab.meta deleted file mode 100644 index 0f02729..0000000 --- a/Assets/Prefabs/Game Infrastructure/HUD Manager.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8148285a99481814496678bc525ed3c7 -timeCreated: 1456897268 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Game Infrastructure/Level Manager.prefab.meta b/Assets/Prefabs/Game Infrastructure/Level Manager.prefab.meta deleted file mode 100644 index c8dd85a..0000000 --- a/Assets/Prefabs/Game Infrastructure/Level Manager.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1111ab33b2440654d8471bdc2ba54c93 -timeCreated: 1457305322 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Game Infrastructure/Level Tester.prefab.meta b/Assets/Prefabs/Game Infrastructure/Level Tester.prefab.meta deleted file mode 100644 index ccc7340..0000000 --- a/Assets/Prefabs/Game Infrastructure/Level Tester.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d628105d581e2534c93c385591561f3f -timeCreated: 1456632317 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Game Infrastructure/Sound Manager.prefab.meta b/Assets/Prefabs/Game Infrastructure/Sound Manager.prefab.meta deleted file mode 100644 index 97b2370..0000000 --- a/Assets/Prefabs/Game Infrastructure/Sound Manager.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 80b94990b2cf5a0499eeadc4a0031409 -timeCreated: 1456632042 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD.meta b/Assets/Prefabs/Level-OLD.meta deleted file mode 100644 index 8477fa5..0000000 --- a/Assets/Prefabs/Level-OLD.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1a2cdb0b5b97a7f4a848a2a05b5c2e5b -folderAsset: yes -timeCreated: 1445636125 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Areas.meta b/Assets/Prefabs/Level-OLD/Areas.meta deleted file mode 100644 index bc8fe0a..0000000 --- a/Assets/Prefabs/Level-OLD/Areas.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3562643758b9a5b4f98fb517932d8ca2 -folderAsset: yes -timeCreated: 1445636084 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Areas/Current.prefab.meta b/Assets/Prefabs/Level-OLD/Areas/Current.prefab.meta deleted file mode 100644 index 912988b..0000000 --- a/Assets/Prefabs/Level-OLD/Areas/Current.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c4c7275f6702b1e40980ec0df3001cdc -timeCreated: 1445636500 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Areas/Path Switcher.prefab.meta b/Assets/Prefabs/Level-OLD/Areas/Path Switcher.prefab.meta deleted file mode 100644 index bcbcc04..0000000 --- a/Assets/Prefabs/Level-OLD/Areas/Path Switcher.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1df4856af48998740bd308f1eab0634e -timeCreated: 1441097676 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Areas/Water.prefab.meta b/Assets/Prefabs/Level-OLD/Areas/Water.prefab.meta deleted file mode 100644 index e54cac6..0000000 --- a/Assets/Prefabs/Level-OLD/Areas/Water.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0eecd3ee704fd6148988b39203053f8b -timeCreated: 1445636578 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Objects.meta b/Assets/Prefabs/Level-OLD/Objects.meta deleted file mode 100644 index 5f22a39..0000000 --- a/Assets/Prefabs/Level-OLD/Objects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f06a3fec2352e2c41bd91bffbeb02332 -folderAsset: yes -timeCreated: 1445636097 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Objects/Boost Pad.prefab.meta b/Assets/Prefabs/Level-OLD/Objects/Boost Pad.prefab.meta deleted file mode 100644 index c566fdf..0000000 --- a/Assets/Prefabs/Level-OLD/Objects/Boost Pad.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d1574c26ddf1ff842a275d8a5797966b -timeCreated: 1445636455 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Objects/Bumper.prefab.meta b/Assets/Prefabs/Level-OLD/Objects/Bumper.prefab.meta deleted file mode 100644 index 4df331f..0000000 --- a/Assets/Prefabs/Level-OLD/Objects/Bumper.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e2401059cedc95342b4d9c6859c6c5e0 -timeCreated: 1445636380 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Objects/Spring.prefab.meta b/Assets/Prefabs/Level-OLD/Objects/Spring.prefab.meta deleted file mode 100644 index e995bbc..0000000 --- a/Assets/Prefabs/Level-OLD/Objects/Spring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 696b1fc4612db3b4ebe0b89eeb99ea47 -timeCreated: 1445636204 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms.meta b/Assets/Prefabs/Level-OLD/Platforms.meta deleted file mode 100644 index 3d951e0..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6e02206f55c3d8b4abbf7dba559eed8d -folderAsset: yes -timeCreated: 1445636102 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Accelerator.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Accelerator.prefab.meta deleted file mode 100644 index dd0c1da..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Accelerator.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4c24fd158fcc579458f75b5ae93ea17a -timeCreated: 1445636619 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Conveyor Belt.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Conveyor Belt.prefab.meta deleted file mode 100644 index ddfdb4f..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Conveyor Belt.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1688aedf8e0d13444833e717996bd008 -timeCreated: 1445636663 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Gravity Magnet.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Gravity Magnet.prefab.meta deleted file mode 100644 index 66cfe34..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Gravity Magnet.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0a48d5b2dc2baf54eaa38834303346b0 -timeCreated: 1445636738 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Ice.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Ice.prefab.meta deleted file mode 100644 index 1d603c6..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Ice.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a89c31908c0f99a4897a626132b5907f -timeCreated: 1445636835 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Ledge.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Ledge.prefab.meta deleted file mode 100644 index 64fc46c..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Ledge.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 736efe377f5159940bdc8ef59accd35a -timeCreated: 1445637626 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Path Platform.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Path Platform.prefab.meta deleted file mode 100644 index 7ea7426..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Path Platform.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e2519cb5c7f03d24bb856ff3d7abb46d -timeCreated: 1445638033 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Swing Platform.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Swing Platform.prefab.meta deleted file mode 100644 index 1d8f699..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Swing Platform.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3553a3aecfffe63449e8bf27ed85f995 -timeCreated: 1445637732 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Level-OLD/Platforms/Weighted Platform.prefab.meta b/Assets/Prefabs/Level-OLD/Platforms/Weighted Platform.prefab.meta deleted file mode 100644 index f0dcf42..0000000 --- a/Assets/Prefabs/Level-OLD/Platforms/Weighted Platform.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0baa1c191fa69744da98b08eb39e56a0 -timeCreated: 1445646956 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Sprites.meta b/Assets/Prefabs/Sprites.meta deleted file mode 100644 index f14c3e0..0000000 --- a/Assets/Prefabs/Sprites.meta +++ /dev/null @@ -1,5 +0,0 @@ -fileFormatVersion: 2 -guid: e6b8a9d00139d8e43a0d92987396d571 -folderAsset: yes -DefaultImporter: - userData: diff --git a/Assets/Prefabs/Sprites/blonic.png.meta b/Assets/Prefabs/Sprites/blonic.png.meta deleted file mode 100644 index 990540d..0000000 --- a/Assets/Prefabs/Sprites/blonic.png.meta +++ /dev/null @@ -1,54 +0,0 @@ -fileFormatVersion: 2 -guid: d84179f40b4dfa94dbb0701f97db310c -TextureImporter: - fileIDToRecycleName: - 21300000: blonic - 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: 1024 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 125 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Sprites/specials.png.meta b/Assets/Prefabs/Sprites/specials.png.meta deleted file mode 100644 index c6d826f..0000000 --- a/Assets/Prefabs/Sprites/specials.png.meta +++ /dev/null @@ -1,92 +0,0 @@ -fileFormatVersion: 2 -guid: f40afa7251d5a4640a4894b2828fe9bb -TextureImporter: - fileIDToRecycleName: - 21300000: specials - 21300002: special_path_1-2 - 21300004: special_path_2-1 - 21300006: construction_flat - 21300008: construct_flat_2x - 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 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 1024 - textureSettings: - filterMode: 1 - aniso: 1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: special_path_1-2 - rect: - serializedVersion: 2 - x: 1 - y: 959 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: special_path_2-1 - rect: - serializedVersion: 2 - x: 66 - y: 959 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: construction_flat - rect: - serializedVersion: 2 - x: 1 - y: 921 - width: 100 - height: 37 - alignment: 1 - pivot: {x: 0, y: 1} - border: {x: 0, y: 0, z: 0, w: 0} - - name: construct_flat_2x - rect: - serializedVersion: 2 - x: 1 - y: 846 - width: 200 - height: 74 - alignment: 1 - pivot: {x: 0, y: 1} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: diff --git a/Assets/Prefabs/Sprites/specials.xcf.meta b/Assets/Prefabs/Sprites/specials.xcf.meta deleted file mode 100644 index 24d16a9..0000000 --- a/Assets/Prefabs/Sprites/specials.xcf.meta +++ /dev/null @@ -1,4 +0,0 @@ -fileFormatVersion: 2 -guid: a94395f9ef7c63b4fb6234ee59d0bdd5 -DefaultImporter: - userData: diff --git a/Assets/Prefabs/Sprites/test_set.png.meta b/Assets/Prefabs/Sprites/test_set.png.meta deleted file mode 100644 index 4c9dffc..0000000 --- a/Assets/Prefabs/Sprites/test_set.png.meta +++ /dev/null @@ -1,92 +0,0 @@ -fileFormatVersion: 2 -guid: f9f626e87feb3a04ba91820c958a618b -TextureImporter: - fileIDToRecycleName: - 21300000: test_set - 21300002: test_slope - 21300004: test_corner - 21300006: test_box - 21300008: test_circ - 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 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 1024 - textureSettings: - filterMode: 2 - aniso: 1 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: test_slope - rect: - serializedVersion: 2 - x: 1 - y: 895 - width: 128 - height: 128 - alignment: 1 - pivot: {x: 0, y: 1} - border: {x: 0, y: 0, z: 0, w: 0} - - name: test_corner - rect: - serializedVersion: 2 - x: 130 - y: 895 - width: 128 - height: 128 - alignment: 1 - pivot: {x: 0, y: 1} - border: {x: 0, y: 0, z: 0, w: 0} - - name: test_box - rect: - serializedVersion: 2 - x: 259 - y: 895 - width: 128 - height: 128 - alignment: 1 - pivot: {x: 0, y: 1} - border: {x: 0, y: 0, z: 0, w: 0} - - name: test_circ - rect: - serializedVersion: 2 - x: 388 - y: 895 - width: 128 - height: 128 - alignment: 1 - pivot: {x: 0, y: 1} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: diff --git a/Assets/Prefabs/Sprites/tileset1.ai.meta b/Assets/Prefabs/Sprites/tileset1.ai.meta deleted file mode 100644 index 54bd7af..0000000 --- a/Assets/Prefabs/Sprites/tileset1.ai.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 51f3a71e4492d8b4a926b11d1a561c46 -timeCreated: 1444639016 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Sprites/tileset1.png.meta b/Assets/Prefabs/Sprites/tileset1.png.meta deleted file mode 100644 index 56fa9fb..0000000 --- a/Assets/Prefabs/Sprites/tileset1.png.meta +++ /dev/null @@ -1,265 +0,0 @@ -fileFormatVersion: 2 -guid: b621336e83454614582967f4cea26782 -timeCreated: 1444641197 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: tileset1_0 - 21300002: tileset1_1 - 21300004: tileset1_2 - 21300006: tileset1_3 - 21300008: tileset1_4 - 21300010: tileset1_5 - 21300012: tileset1_6 - 21300014: tileset1_7 - 21300016: tileset1_8 - 21300018: tileset1_9 - 21300020: tileset1_10 - 21300022: tileset1_11 - 21300024: tileset1_12 - 21300026: tileset1_13 - 21300028: tileset1_14 - 21300030: tileset1_15 - 21300032: tileset1_16 - 21300034: tileset1_17 - 21300036: tileset1_18 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: tileset1_0 - rect: - serializedVersion: 2 - x: 2 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_1 - rect: - serializedVersion: 2 - x: 104 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_2 - rect: - serializedVersion: 2 - x: 206 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_3 - rect: - serializedVersion: 2 - x: 308 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_4 - rect: - serializedVersion: 2 - x: 410 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_5 - rect: - serializedVersion: 2 - x: 512 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_6 - rect: - serializedVersion: 2 - x: 614 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_7 - rect: - serializedVersion: 2 - x: 716 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_8 - rect: - serializedVersion: 2 - x: 818 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_9 - rect: - serializedVersion: 2 - x: 920 - y: 104 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_10 - rect: - serializedVersion: 2 - x: 2 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_11 - rect: - serializedVersion: 2 - x: 104 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_12 - rect: - serializedVersion: 2 - x: 206 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_13 - rect: - serializedVersion: 2 - x: 308 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_14 - rect: - serializedVersion: 2 - x: 410 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_15 - rect: - serializedVersion: 2 - x: 512 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_16 - rect: - serializedVersion: 2 - x: 614 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_17 - rect: - serializedVersion: 2 - x: 716 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: tileset1_18 - rect: - serializedVersion: 2 - x: 818 - y: 2 - width: 100 - height: 100 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Sprites/tileset1.psd.meta b/Assets/Prefabs/Sprites/tileset1.psd.meta deleted file mode 100644 index a0d8e8b..0000000 --- a/Assets/Prefabs/Sprites/tileset1.psd.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: be6354d5386c71043b91cbc3e95c856d -timeCreated: 1444650361 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Sprites/tileset1.txt.meta b/Assets/Prefabs/Sprites/tileset1.txt.meta deleted file mode 100644 index a76a394..0000000 --- a/Assets/Prefabs/Sprites/tileset1.txt.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 32f3e7f0d5d42a34bb5b93afeadaeae4 -timeCreated: 1444641023 -licenseType: Free -TextScriptImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Sprites/tileset1_sliced.psd.meta b/Assets/Prefabs/Sprites/tileset1_sliced.psd.meta deleted file mode 100644 index 8772496..0000000 --- a/Assets/Prefabs/Sprites/tileset1_sliced.psd.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ed0ad24ccf381314385690c490f440c9 -timeCreated: 1444641023 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles.meta b/Assets/Prefabs/Tiles.meta deleted file mode 100644 index e8590d8..0000000 --- a/Assets/Prefabs/Tiles.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b1227bed2b891ef47b1ba016f88871cb -folderAsset: yes -timeCreated: 1445636140 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites.meta b/Assets/Prefabs/Tiles/Sprites.meta deleted file mode 100644 index 105e9ff..0000000 --- a/Assets/Prefabs/Tiles/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a34f3b4e47bf11945aee6419730e5af1 -folderAsset: yes -timeCreated: 1444641019 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/circle_in.png.meta b/Assets/Prefabs/Tiles/Sprites/circle_in.png.meta deleted file mode 100644 index e52fe5f..0000000 --- a/Assets/Prefabs/Tiles/Sprites/circle_in.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3689ef7fd0aca5a4ab0dfa5d8dc9787e -timeCreated: 1444677089 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/circle_in_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/circle_in_thin.png.meta deleted file mode 100644 index eb3079c..0000000 --- a/Assets/Prefabs/Tiles/Sprites/circle_in_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c63e9a56fdc7844468c3bbfe18107425 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/circle_out.png.meta b/Assets/Prefabs/Tiles/Sprites/circle_out.png.meta deleted file mode 100644 index 059f45f..0000000 --- a/Assets/Prefabs/Tiles/Sprites/circle_out.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 74ce333995220d34cbb8b0ab9834ea05 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/circle_out_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/circle_out_thin.png.meta deleted file mode 100644 index 32a28f9..0000000 --- a/Assets/Prefabs/Tiles/Sprites/circle_out_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: fe964f6de0d2a8f44855cd299e5155d2 -timeCreated: 1444677092 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/flat.png.meta b/Assets/Prefabs/Tiles/Sprites/flat.png.meta deleted file mode 100644 index 8165dd3..0000000 --- a/Assets/Prefabs/Tiles/Sprites/flat.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7aca43c8f78381445a9f90a2b70083e1 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/flat_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/flat_thin.png.meta deleted file mode 100644 index 07016b1..0000000 --- a/Assets/Prefabs/Tiles/Sprites/flat_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7f9ad1c7d2d5a8645ab51eb243879424 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/flat_to_halfslope.png.meta b/Assets/Prefabs/Tiles/Sprites/flat_to_halfslope.png.meta deleted file mode 100644 index e754467..0000000 --- a/Assets/Prefabs/Tiles/Sprites/flat_to_halfslope.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c7c30a84f0cb2fa4a9f05c42e284720a -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/flat_to_halfslope_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/flat_to_halfslope_thin.png.meta deleted file mode 100644 index de7775e..0000000 --- a/Assets/Prefabs/Tiles/Sprites/flat_to_halfslope_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 698fb67cec184334fb01204cc04b9fa1 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/flat_to_slope.png.meta b/Assets/Prefabs/Tiles/Sprites/flat_to_slope.png.meta deleted file mode 100644 index dc7d727..0000000 --- a/Assets/Prefabs/Tiles/Sprites/flat_to_slope.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d0b870c62d2ff6a4a9c5a00e9bc6066e -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/flat_to_slope_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/flat_to_slope_thin.png.meta deleted file mode 100644 index 2aafd37..0000000 --- a/Assets/Prefabs/Tiles/Sprites/flat_to_slope_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 4545211038a1c8549a978e072762895e -timeCreated: 1444677089 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/halfslope.png.meta b/Assets/Prefabs/Tiles/Sprites/halfslope.png.meta deleted file mode 100644 index 7d6c889..0000000 --- a/Assets/Prefabs/Tiles/Sprites/halfslope.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b0f1b009210e70f409cd49488e7a2471 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/halfslope_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/halfslope_thin.png.meta deleted file mode 100644 index 849d1a8..0000000 --- a/Assets/Prefabs/Tiles/Sprites/halfslope_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: de3435483e2b4bb45803a68d984701c9 -timeCreated: 1444677092 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/halfslope_to_flat.png.meta b/Assets/Prefabs/Tiles/Sprites/halfslope_to_flat.png.meta deleted file mode 100644 index 6cdbdac..0000000 --- a/Assets/Prefabs/Tiles/Sprites/halfslope_to_flat.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b09132b2f8c3dc040969e1eb7212f7c6 -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/halfslope_to_flat_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/halfslope_to_flat_thin.png.meta deleted file mode 100644 index 7c1072f..0000000 --- a/Assets/Prefabs/Tiles/Sprites/halfslope_to_flat_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 54d3d736b422d14459754212d14243dd -timeCreated: 1444677089 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/halfslope_to_slope.png.meta b/Assets/Prefabs/Tiles/Sprites/halfslope_to_slope.png.meta deleted file mode 100644 index a397528..0000000 --- a/Assets/Prefabs/Tiles/Sprites/halfslope_to_slope.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c995026b7af46344da3e5f9c098e3ed9 -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/halfslope_to_slope_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/halfslope_to_slope_thin.png.meta deleted file mode 100644 index 5a19de7..0000000 --- a/Assets/Prefabs/Tiles/Sprites/halfslope_to_slope_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d6758f04b23d949488b6bf3a30f124fd -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/slope.png.meta b/Assets/Prefabs/Tiles/Sprites/slope.png.meta deleted file mode 100644 index 97b7bc4..0000000 --- a/Assets/Prefabs/Tiles/Sprites/slope.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2fec4fd99a0519e4ea54dfc179593b7e -timeCreated: 1444677089 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/slope_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/slope_thin.png.meta deleted file mode 100644 index 10a7b6f..0000000 --- a/Assets/Prefabs/Tiles/Sprites/slope_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 5bf6f7599e21cbc49a48d83c49642392 -timeCreated: 1444677089 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/slope_to_flat.png.meta b/Assets/Prefabs/Tiles/Sprites/slope_to_flat.png.meta deleted file mode 100644 index aff7263..0000000 --- a/Assets/Prefabs/Tiles/Sprites/slope_to_flat.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 62339e0a460b7554fa5450a22f251fee -timeCreated: 1444677090 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/slope_to_flat_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/slope_to_flat_thin.png.meta deleted file mode 100644 index be56cef..0000000 --- a/Assets/Prefabs/Tiles/Sprites/slope_to_flat_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d6f8c1be1edcb7b4f924ca6942d84f62 -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/slope_to_halfslope.png.meta b/Assets/Prefabs/Tiles/Sprites/slope_to_halfslope.png.meta deleted file mode 100644 index bbea61d..0000000 --- a/Assets/Prefabs/Tiles/Sprites/slope_to_halfslope.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: cbdda429b867b1a4eaa3100e7c1cd6b3 -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/Sprites/slope_to_halfslope_thin.png.meta b/Assets/Prefabs/Tiles/Sprites/slope_to_halfslope_thin.png.meta deleted file mode 100644 index c53c291..0000000 --- a/Assets/Prefabs/Tiles/Sprites/slope_to_halfslope_thin.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c8d09dc471e80ed4ebb4e7eb44e69258 -timeCreated: 1444677091 -licenseType: Free -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: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 1 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 200 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Plain Tileset - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/circle_in.prefab.meta b/Assets/Prefabs/Tiles/circle_in.prefab.meta deleted file mode 100644 index 390cee3..0000000 --- a/Assets/Prefabs/Tiles/circle_in.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3cf501d1aff16944386dffeaae4765ef -timeCreated: 1444679793 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/circle_in_thin.prefab.meta b/Assets/Prefabs/Tiles/circle_in_thin.prefab.meta deleted file mode 100644 index e65d05f..0000000 --- a/Assets/Prefabs/Tiles/circle_in_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 15319b535248a2a46930a105c40fcf0d -timeCreated: 1444679795 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/circle_out.prefab.meta b/Assets/Prefabs/Tiles/circle_out.prefab.meta deleted file mode 100644 index 4ef62ad..0000000 --- a/Assets/Prefabs/Tiles/circle_out.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7e89f394e86914246a5a1b593019e0e6 -timeCreated: 1444679796 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/circle_out_thin.prefab.meta b/Assets/Prefabs/Tiles/circle_out_thin.prefab.meta deleted file mode 100644 index 059c986..0000000 --- a/Assets/Prefabs/Tiles/circle_out_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 864ce76dffb9ce74d857e9d18ccb047f -timeCreated: 1444679797 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/flat.prefab.meta b/Assets/Prefabs/Tiles/flat.prefab.meta deleted file mode 100644 index 06bc5cd..0000000 --- a/Assets/Prefabs/Tiles/flat.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e15ad050065621b43ac9a28d746376f9 -timeCreated: 1444679799 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/flat_thin.prefab.meta b/Assets/Prefabs/Tiles/flat_thin.prefab.meta deleted file mode 100644 index 0977451..0000000 --- a/Assets/Prefabs/Tiles/flat_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 92f37abe6ce4e874caf5059692ce1b12 -timeCreated: 1444679798 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/flat_to_halfslope.prefab.meta b/Assets/Prefabs/Tiles/flat_to_halfslope.prefab.meta deleted file mode 100644 index e33682e..0000000 --- a/Assets/Prefabs/Tiles/flat_to_halfslope.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c4ebb252141e26e47b525b937d2a4c87 -timeCreated: 1444679801 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/flat_to_halfslope_thin.prefab.meta b/Assets/Prefabs/Tiles/flat_to_halfslope_thin.prefab.meta deleted file mode 100644 index 1c75367..0000000 --- a/Assets/Prefabs/Tiles/flat_to_halfslope_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a3a70c08843518642944267c205a6157 -timeCreated: 1444679802 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/flat_to_slope.prefab.meta b/Assets/Prefabs/Tiles/flat_to_slope.prefab.meta deleted file mode 100644 index 684834a..0000000 --- a/Assets/Prefabs/Tiles/flat_to_slope.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ae89a0c9feb2a7409d434696c7ceb2a -timeCreated: 1444679804 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/flat_to_slope_thin.prefab.meta b/Assets/Prefabs/Tiles/flat_to_slope_thin.prefab.meta deleted file mode 100644 index 0be1db4..0000000 --- a/Assets/Prefabs/Tiles/flat_to_slope_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c20a3d7dc2648134b9b9a758d4e1a70e -timeCreated: 1444679805 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/halfslope.prefab.meta b/Assets/Prefabs/Tiles/halfslope.prefab.meta deleted file mode 100644 index bd5571f..0000000 --- a/Assets/Prefabs/Tiles/halfslope.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4b62333e0d47c8b4e996a80d70a7e4b7 -timeCreated: 1444679807 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/halfslope_thin.prefab.meta b/Assets/Prefabs/Tiles/halfslope_thin.prefab.meta deleted file mode 100644 index 5e49157..0000000 --- a/Assets/Prefabs/Tiles/halfslope_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 067183064f949784486e5f6b4e0dea9b -timeCreated: 1444679808 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/halfslope_to_flat.prefab.meta b/Assets/Prefabs/Tiles/halfslope_to_flat.prefab.meta deleted file mode 100644 index d673bb4..0000000 --- a/Assets/Prefabs/Tiles/halfslope_to_flat.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 52cceaa7d30aab840b7e899296f528f4 -timeCreated: 1444679810 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/halfslope_to_flat_thin.prefab.meta b/Assets/Prefabs/Tiles/halfslope_to_flat_thin.prefab.meta deleted file mode 100644 index 6e13bc4..0000000 --- a/Assets/Prefabs/Tiles/halfslope_to_flat_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 25cb4a0eb1685ba4cbd1f1c8e70314d1 -timeCreated: 1444679812 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/halfslope_to_slope.prefab.meta b/Assets/Prefabs/Tiles/halfslope_to_slope.prefab.meta deleted file mode 100644 index 491e858..0000000 --- a/Assets/Prefabs/Tiles/halfslope_to_slope.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7b97f36ac02c9704a9cea42855c9b03f -timeCreated: 1444679813 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/halfslope_to_slope_thin.prefab.meta b/Assets/Prefabs/Tiles/halfslope_to_slope_thin.prefab.meta deleted file mode 100644 index 2a47e2c..0000000 --- a/Assets/Prefabs/Tiles/halfslope_to_slope_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 104232279c566354b864650d4342ecb3 -timeCreated: 1444679816 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/slope.prefab.meta b/Assets/Prefabs/Tiles/slope.prefab.meta deleted file mode 100644 index 9784322..0000000 --- a/Assets/Prefabs/Tiles/slope.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e681ea93c15fa564990becf10058dc68 -timeCreated: 1444679842 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/slope_thin.prefab.meta b/Assets/Prefabs/Tiles/slope_thin.prefab.meta deleted file mode 100644 index dbae496..0000000 --- a/Assets/Prefabs/Tiles/slope_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9937d989aef8fdb4cb12110491340eb9 -timeCreated: 1444679875 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/slope_to_flat.prefab.meta b/Assets/Prefabs/Tiles/slope_to_flat.prefab.meta deleted file mode 100644 index 383a223..0000000 --- a/Assets/Prefabs/Tiles/slope_to_flat.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 19875ec627e98fd49918f1d105ef31a4 -timeCreated: 1444679877 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/slope_to_flat_thin.prefab.meta b/Assets/Prefabs/Tiles/slope_to_flat_thin.prefab.meta deleted file mode 100644 index 307f84f..0000000 --- a/Assets/Prefabs/Tiles/slope_to_flat_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 41e0051102bb81c4a9b26a79da5e506f -timeCreated: 1444679880 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/slope_to_halfslope.prefab.meta b/Assets/Prefabs/Tiles/slope_to_halfslope.prefab.meta deleted file mode 100644 index 6030c41..0000000 --- a/Assets/Prefabs/Tiles/slope_to_halfslope.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 67517d88ac52e0145ae42a556ae34088 -timeCreated: 1444679882 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Prefabs/Tiles/slope_to_halfslope_thin.prefab.meta b/Assets/Prefabs/Tiles/slope_to_halfslope_thin.prefab.meta deleted file mode 100644 index 7b9c73b..0000000 --- a/Assets/Prefabs/Tiles/slope_to_halfslope_thin.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cd2502d2e3d1beb4eb2bf5cfe59e1213 -timeCreated: 1444679885 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta deleted file mode 100644 index 46bc8af..0000000 --- a/Assets/Scenes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 14fe4b00fb5bf644a86611071dcdf225 -folderAsset: yes -timeCreated: 1456378450 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scenes/Menu.unity.meta b/Assets/Scenes/Menu.unity.meta deleted file mode 100644 index 1056e6b..0000000 --- a/Assets/Scenes/Menu.unity.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4de547e9ef3d2664dac2e0a38f528eb3 -timeCreated: 1453972687 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scenes/Test Zone.unity.meta b/Assets/Scenes/Test Zone.unity.meta deleted file mode 100644 index c38754c..0000000 --- a/Assets/Scenes/Test Zone.unity.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ca432c348a1d0e429e805bac421242e -timeCreated: 1457235386 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta deleted file mode 100644 index 991b49a..0000000 --- a/Assets/Scripts.meta +++ /dev/null @@ -1,5 +0,0 @@ -fileFormatVersion: 2 -guid: fc72f0415291d7a41869a5799892afaa -folderAsset: yes -DefaultImporter: - userData: diff --git a/Assets/Scripts/SonicRealms.meta b/Assets/Scripts/SonicRealms.meta deleted file mode 100644 index e0fe5c6..0000000 --- a/Assets/Scripts/SonicRealms.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d3aacc8d0567e26459d81524e90319ae -folderAsset: yes -timeCreated: 1456506272 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core.meta b/Assets/Scripts/SonicRealms/Core.meta deleted file mode 100644 index a26560e..0000000 --- a/Assets/Scripts/SonicRealms/Core.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c371c8e9f044f3c46b00599d2a77d61f -folderAsset: yes -timeCreated: 1443083024 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors.meta b/Assets/Scripts/SonicRealms/Core/Actors.meta deleted file mode 100644 index ac8bf07..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e23e75e9950106f4ab45641612e5c4e5 -folderAsset: yes -timeCreated: 1443084069 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/BadnikHealth.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/BadnikHealth.cs.meta deleted file mode 100644 index 4aed6c4..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/BadnikHealth.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0b3bbd6fb1b4bf44a9e68dacd7a4b8eb -timeCreated: 1451456674 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/BadnikWeakSpot.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/BadnikWeakSpot.cs.meta deleted file mode 100644 index 373c7e8..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/BadnikWeakSpot.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 185e4aa1781a1eb4e98beddbd12f0cc4 -timeCreated: 1451456791 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/BreathMeter.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/BreathMeter.cs.meta deleted file mode 100644 index 87dc9d3..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/BreathMeter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b21568338335abf4b96276f6e49c2fd1 -timeCreated: 1449440335 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/BubbleMovement.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/BubbleMovement.cs.meta deleted file mode 100644 index 5dbce95..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/BubbleMovement.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 56cf6d74995d88f488dc36f8f53ef0ce -timeCreated: 1456992559 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/BuzzBomberAI.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/BuzzBomberAI.cs.meta deleted file mode 100644 index 1fcacec..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/BuzzBomberAI.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3d3baa4b59c94984781307d45da50ee4 -timeCreated: 1451969142 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/ControllerSide.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/ControllerSide.cs.meta deleted file mode 100644 index 2ec6947..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/ControllerSide.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f87752963147c7c43a0b86965cad851a -timeCreated: 1445461351 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor.meta deleted file mode 100644 index 4bea1c6..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 78fdba55e1a6eb14ab0a2f6cc71d05d2 -folderAsset: yes -timeCreated: 1443084170 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/BreathMeterEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/BreathMeterEditor.cs.meta deleted file mode 100644 index a618b14..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/BreathMeterEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d95cba26ac03fc14b828da8c3767101c -timeCreated: 1456809716 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/BubbleMovementEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/BubbleMovementEditor.cs.meta deleted file mode 100644 index 2a562b2..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/BubbleMovementEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 9c5bc41b80ec2254cbc95c69ec81e6ae -timeCreated: 1456992559 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/BuzzBomberAIEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/BuzzBomberAIEditor.cs.meta deleted file mode 100644 index 0427217..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/BuzzBomberAIEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: dfa983536e1949f459c4c9f7a20530da -timeCreated: 1452025659 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/HealthSystemEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/HealthSystemEditor.cs.meta deleted file mode 100644 index 3ebaa6d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/HealthSystemEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3c717267d9cb1f44ebe32e0a68c5c097 -timeCreated: 1452068313 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/HedgehogControllerEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/HedgehogControllerEditor.cs.meta deleted file mode 100644 index b9d906a..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/HedgehogControllerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 24f17825d6f70b74a93e37c0fa6ed57c -timeCreated: 1441095040 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/HitboxEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/HitboxEditor.cs.meta deleted file mode 100644 index 9bbd936..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/HitboxEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: dfa45474983f18549a6830b03bb8e1dd -timeCreated: 1451783010 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/MotobugAIEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/MotobugAIEditor.cs.meta deleted file mode 100644 index 37b032e..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/MotobugAIEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3acf244456352f2429eb8a283c35ea71 -timeCreated: 1452059740 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Editor/SonicBubbleGeneratorEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Editor/SonicBubbleGeneratorEditor.cs.meta deleted file mode 100644 index d5c9658..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Editor/SonicBubbleGeneratorEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 018054752a10c984599d254be5279064 -timeCreated: 1457059024 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Footing.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Footing.cs.meta deleted file mode 100644 index ca3fd13..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Footing.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f5cfa03ffa3fa5b439b72f7f607e5c4a -timeCreated: 1441094154 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/GroundAnimalAI.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/GroundAnimalAI.cs.meta deleted file mode 100644 index a535331..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/GroundAnimalAI.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5686f57a58a20194588754b6a66da2b1 -timeCreated: 1451693497 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HealthEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HealthEvent.cs.meta deleted file mode 100644 index 85fff3f..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HealthEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: fe775410acae6f64ba454670f61f394f -timeCreated: 1456866179 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HealthEventArgs.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HealthEventArgs.cs.meta deleted file mode 100644 index 25e657e..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HealthEventArgs.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ad401a03f98744648ac2d235f5f9f3f4 -timeCreated: 1456866179 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HealthSystem.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HealthSystem.cs.meta deleted file mode 100644 index 940b26a..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HealthSystem.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 305ae50e84222bb43bdec7aedcb1341d -timeCreated: 1451419510 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogController.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HedgehogController.cs.meta deleted file mode 100644 index 75e4540..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogController.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 273d5567b7e8f0f4892de869d9b03b70 -timeCreated: 1453711628 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: -4000 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogHealth.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HedgehogHealth.cs.meta deleted file mode 100644 index af25e0e..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogHealth.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5fd45fbedbc4d2b4a801466d01d6ae32 -timeCreated: 1449137300 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogRotation.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HedgehogRotation.cs.meta deleted file mode 100644 index cc4c51c..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogRotation.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: af2c9103a0ccc1d40bfb15337f94e3b8 -timeCreated: 1449002443 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogSensors.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/HedgehogSensors.cs.meta deleted file mode 100644 index c3a72df..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/HedgehogSensors.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a7406431d84d33e44b62e26a55c3d66c -timeCreated: 1443532927 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/Hitbox.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/Hitbox.cs.meta deleted file mode 100644 index 09c2a00..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/Hitbox.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4a7a77bd4b2888a4bacac1d0c7825615 -timeCreated: 1449244819 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/ImpactResult.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/ImpactResult.cs.meta deleted file mode 100644 index 8a9ee40..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/ImpactResult.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 13633173c56af3645ada306a14f05fc4 -timeCreated: 1457257350 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/LifeCounter.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/LifeCounter.cs.meta deleted file mode 100644 index a4c66b8..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/LifeCounter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 39d4a75e3087b62419a83af58a3dc5f7 -timeCreated: 1457144381 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/MotobugAI.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/MotobugAI.cs.meta deleted file mode 100644 index 8c0f953..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/MotobugAI.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: cfa9d522965946e44b5e2c81b2cec857 -timeCreated: 1451369200 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/RingCounter.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/RingCounter.cs.meta deleted file mode 100644 index b915658..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/RingCounter.cs.meta +++ /dev/null @@ -1,14 +0,0 @@ -fileFormatVersion: 2 -guid: 31397037b659ac042ae61a3f350afa47 -timeCreated: 1456719497 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: - - Controller: {instanceID: 0} - - SpilledRingBase: {fileID: 11460168, guid: 2e2263e18fc063342b7f046e500c1bf9, type: 2} - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/ScoreCounter.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/ScoreCounter.cs.meta deleted file mode 100644 index 45d7cfe..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/ScoreCounter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d8e49375b42704243a9df0634e0d5096 -timeCreated: 1452111946 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/SonicBreathMeter.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/SonicBreathMeter.cs.meta deleted file mode 100644 index c039f7c..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/SonicBreathMeter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1e4285ec56664be4a8bf9887c28107dd -timeCreated: 1456983113 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/SonicBubbleGenerator.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/SonicBubbleGenerator.cs.meta deleted file mode 100644 index d37204f..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/SonicBubbleGenerator.cs.meta +++ /dev/null @@ -1,15 +0,0 @@ -fileFormatVersion: 2 -guid: 60e8d000f549e374c879e5383b99155e -timeCreated: 1457059112 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: - - BreathMeter: {instanceID: 0} - - Bubble: {fileID: 181746, guid: 4b283249ce406a643b1a6d4e96ec92fa, type: 2} - - MediumBubble: {fileID: 196504, guid: 790a67c7085d2dc429b01809340585b0, type: 2} - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/SonicHitbox.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/SonicHitbox.cs.meta deleted file mode 100644 index c4a1079..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/SonicHitbox.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 932201bd4da916e46a5540881d762c23 -timeCreated: 1451799473 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/SonicWaterSplash.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/SonicWaterSplash.cs.meta deleted file mode 100644 index 2ec38ac..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/SonicWaterSplash.cs.meta +++ /dev/null @@ -1,14 +0,0 @@ -fileFormatVersion: 2 -guid: 7035c3c60d745484fb408d1017419f2e -timeCreated: 1457063298 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: - - Player: {instanceID: 0} - - Splash: {fileID: 173732, guid: 4f0b1e6678ac9e447bb01b985e0ea522, type: 2} - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Actors/WaterRunningTrigger.cs.meta b/Assets/Scripts/SonicRealms/Core/Actors/WaterRunningTrigger.cs.meta deleted file mode 100644 index 93acefa..0000000 --- a/Assets/Scripts/SonicRealms/Core/Actors/WaterRunningTrigger.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6206d763cbbfe91438dee5e94d453497 -timeCreated: 1457096110 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Editor.meta b/Assets/Scripts/SonicRealms/Core/Editor.meta deleted file mode 100644 index 40923ea..0000000 --- a/Assets/Scripts/SonicRealms/Core/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 01ae016b2cbc73541963ca352cac1027 -folderAsset: yes -timeCreated: 1441018142 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Editor/HedgehogCreateMenu.cs.meta b/Assets/Scripts/SonicRealms/Core/Editor/HedgehogCreateMenu.cs.meta deleted file mode 100644 index 43c40fa..0000000 --- a/Assets/Scripts/SonicRealms/Core/Editor/HedgehogCreateMenu.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5cc3ac92c722a0a439e123a5faf0cce1 -timeCreated: 1441095040 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves.meta b/Assets/Scripts/SonicRealms/Core/Moves.meta deleted file mode 100644 index cfb7a63..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c6cf4871e5dfc4d45b9b06227e1f5a7d -folderAsset: yes -timeCreated: 1446000881 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/AirControl.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/AirControl.cs.meta deleted file mode 100644 index de12530..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/AirControl.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 95703b2ef2f45d14283e6492815cf5de -timeCreated: 1446087845 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/AirSource.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/AirSource.cs.meta deleted file mode 100644 index 5ad122b..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/AirSource.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2ac84f41f2918cd4aa2fbe22188631b5 -timeCreated: 1449746519 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/AnimationParameterPowerup.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/AnimationParameterPowerup.cs.meta deleted file mode 100644 index 361845d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/AnimationParameterPowerup.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3f7e79b8e041fe443a71a38643667328 -timeCreated: 1456546331 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/BubbleSpecial.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/BubbleSpecial.cs.meta deleted file mode 100644 index 542e57f..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/BubbleSpecial.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 86efb1023ebd7db409a35e583b91b6da -timeCreated: 1449300603 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Death.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Death.cs.meta deleted file mode 100644 index d84cad5..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Death.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3f3e90912b8931048aa30dd1cad65ab3 -timeCreated: 1449197204 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/DoubleJump.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/DoubleJump.cs.meta deleted file mode 100644 index 0e310e1..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/DoubleJump.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 076d0a78ecc5bd54797abb9d8cde5014 -timeCreated: 1449365610 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Duck.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Duck.cs.meta deleted file mode 100644 index 3cdf1c3..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Duck.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4c1095e8583f53d4c9de57a4156eb719 -timeCreated: 1446179366 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/EdgeBalance.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/EdgeBalance.cs.meta deleted file mode 100644 index 3416288..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/EdgeBalance.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ad90d6e2ef2e4a14faa48173a9c897ff -timeCreated: 1447979001 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Editor.meta b/Assets/Scripts/SonicRealms/Core/Moves/Editor.meta deleted file mode 100644 index 20c980e..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2feb55ffb4e37844ab690f601a348316 -folderAsset: yes -timeCreated: 1446085822 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Editor/MoveEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Editor/MoveEditor.cs.meta deleted file mode 100644 index 48e77cc..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Editor/MoveEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7ee2735283b53b74ba1ea23c653ffec5 -timeCreated: 1446165302 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Editor/MoveManagerEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Editor/MoveManagerEditor.cs.meta deleted file mode 100644 index 3d69518..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Editor/MoveManagerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2a3892249c6d50f4e9dfaa452f9527d4 -timeCreated: 1447787616 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Editor/PowerupEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Editor/PowerupEditor.cs.meta deleted file mode 100644 index eac9af5..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Editor/PowerupEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 363f8a939a194c24dba59db6c4ef0c3e -timeCreated: 1456649038 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Editor/PowerupManagerEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Editor/PowerupManagerEditor.cs.meta deleted file mode 100644 index 32af488..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Editor/PowerupManagerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4b8e76b8ceedf934fba746b7d9360928 -timeCreated: 1456649038 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Editor/PushEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Editor/PushEditor.cs.meta deleted file mode 100644 index fc8c6db..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Editor/PushEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b764ffa004cf77c4589ed080c2cd479c -timeCreated: 1448055650 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/ElectricSpecial.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/ElectricSpecial.cs.meta deleted file mode 100644 index cee35cf..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/ElectricSpecial.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7fcd115d8ac790547b3794a368daea10 -timeCreated: 1449299643 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/ElectrocuteWater.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/ElectrocuteWater.cs.meta deleted file mode 100644 index 3dc827c..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/ElectrocuteWater.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2383a077f83e9d540aa5a6d786b0bdfd -timeCreated: 1449754946 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/FlameSpecial.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/FlameSpecial.cs.meta deleted file mode 100644 index 3670be1..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/FlameSpecial.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e752b70cdb8ad9a488ca916f81a12990 -timeCreated: 1449295520 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/GroundControl.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/GroundControl.cs.meta deleted file mode 100644 index 4961655..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/GroundControl.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: cdb2f0e4529104042a3b39f3ae84b062 -timeCreated: 1446000884 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/HurtRebound.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/HurtRebound.cs.meta deleted file mode 100644 index b00a600..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/HurtRebound.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 59f7d680b60fb6547aaca31135aeae22 -timeCreated: 1449155929 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/InstaShield.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/InstaShield.cs.meta deleted file mode 100644 index 90c3def..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/InstaShield.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b10b9cb1540747945be44ff63f2157fe -timeCreated: 1447048269 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Invincibility.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Invincibility.cs.meta deleted file mode 100644 index f65a35d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Invincibility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7fbf04913657ada419671eff989feb83 -timeCreated: 1456799587 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Jump.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Jump.cs.meta deleted file mode 100644 index 136e9aa..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Jump.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7514d680ed0ac744d87004eb35fc4580 -timeCreated: 1446173464 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/LookUp.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/LookUp.cs.meta deleted file mode 100644 index a758bc6..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/LookUp.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b99b237d3dc3e1d40b435ab74ce992c3 -timeCreated: 1446236099 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MagnetizeRings.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MagnetizeRings.cs.meta deleted file mode 100644 index 877609a..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MagnetizeRings.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e4ec83141375cc249b0461865015e9ab -timeCreated: 1449393701 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Move.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Move.cs.meta deleted file mode 100644 index cffae1f..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Move.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c52d2f446a6b0b441ad6d2e079680bdc -timeCreated: 1446124114 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MoveContainer.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MoveContainer.cs.meta deleted file mode 100644 index f1ae5d7..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MoveContainer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 35a81a3f5e609d644a9720ba166c88bd -timeCreated: 1456647681 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MoveEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MoveEvent.cs.meta deleted file mode 100644 index e592e28..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MoveEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7e6bfa123f132ee46a3036d74cee4ebd -timeCreated: 1456866179 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MoveExtensions.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MoveExtensions.cs.meta deleted file mode 100644 index 3ec00b0..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MoveExtensions.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b6e5609b944bdcc4994fec543f93ae56 -timeCreated: 1456685774 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MoveFoldoutAttributes.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MoveFoldoutAttributes.cs.meta deleted file mode 100644 index 5810f39..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MoveFoldoutAttributes.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b3d319fe8888d244a8e076f95fdb3e1b -timeCreated: 1451765731 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MoveLayer.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MoveLayer.cs.meta deleted file mode 100644 index a904b35..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MoveLayer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8676f3a5ba0c67b419e7354c575a5ded -timeCreated: 1453289092 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/MoveManager.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/MoveManager.cs.meta deleted file mode 100644 index 4f6f3b7..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/MoveManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a0bde06da48532d4d88d7e6dafe028ea -timeCreated: 1457249246 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: -6000 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Powerup.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Powerup.cs.meta deleted file mode 100644 index 648aed1..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Powerup.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 629a3e4e655edbd4b9001178addabbdd -timeCreated: 1456644136 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/PowerupEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/PowerupEvent.cs.meta deleted file mode 100644 index f64b0dd..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/PowerupEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 48923cae22ddb2a44ad37ff59af6673d -timeCreated: 1456644136 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/PowerupExtensions.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/PowerupExtensions.cs.meta deleted file mode 100644 index 370a914..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/PowerupExtensions.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 569e4b0911d484c42b2bd7e721d0b601 -timeCreated: 1456685774 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/PowerupManager.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/PowerupManager.cs.meta deleted file mode 100644 index 2fd0f63..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/PowerupManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f082220a59aec99408152ea6e63aca59 -timeCreated: 1456644137 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Push.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Push.cs.meta deleted file mode 100644 index 83c3e60..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Push.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0f89f3b2bbf00cc4eb11d73303458afc -timeCreated: 1448054899 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Roll.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Roll.cs.meta deleted file mode 100644 index ef71420..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Roll.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 797331bf56043af418fcd734e955b173 -timeCreated: 1446129389 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/S2InvincibilityTrail.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/S2InvincibilityTrail.cs.meta deleted file mode 100644 index 88622ce..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/S2InvincibilityTrail.cs.meta +++ /dev/null @@ -1,13 +0,0 @@ -fileFormatVersion: 2 -guid: d9e4097483974494293e9e00a1b68bde -timeCreated: 1456802457 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: - - Sparkle: {fileID: 188264, guid: 61da00828aefa27458b93b1226edd210, type: 2} - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/SetAirControlPhysics.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/SetAirControlPhysics.cs.meta deleted file mode 100644 index 0a298d3..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/SetAirControlPhysics.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ed848169c026c8048a3c3c3f6eb33360 -timeCreated: 1450442704 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/SetGroundControlPhysics.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/SetGroundControlPhysics.cs.meta deleted file mode 100644 index 682ff2d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/SetGroundControlPhysics.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f9f3758b16e575e428fb4ac6250b6287 -timeCreated: 1450441891 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/SetHedgehogControllerPhysics.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/SetHedgehogControllerPhysics.cs.meta deleted file mode 100644 index c077f15..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/SetHedgehogControllerPhysics.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3226df353e46bda4898dc61391a0ea78 -timeCreated: 1450441050 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/SetJumpPhysics.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/SetJumpPhysics.cs.meta deleted file mode 100644 index 3d1b5cc..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/SetJumpPhysics.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c330ef3321ecec646acef22273e71f9f -timeCreated: 1450442940 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/SetRollPhysics.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/SetRollPhysics.cs.meta deleted file mode 100644 index 78ab66d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/SetRollPhysics.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a64833eeaef0ccf4680664bdce859a7e -timeCreated: 1450442310 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Shield.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Shield.cs.meta deleted file mode 100644 index 486ccf2..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Shield.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 71b0c2e2acce39b4c9ba6ebfac4c9d84 -timeCreated: 1449275643 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Skid.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Skid.cs.meta deleted file mode 100644 index ef5e879..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Skid.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 92c7869685eea0445a7ff948e72462e4 -timeCreated: 1453621849 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/SpeedShoes.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/SpeedShoes.cs.meta deleted file mode 100644 index c10bc25..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/SpeedShoes.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1cf92885f3c3fb2429ba3da20d83b74a -timeCreated: 1456647632 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Moves/Spindash.cs.meta b/Assets/Scripts/SonicRealms/Core/Moves/Spindash.cs.meta deleted file mode 100644 index d21ab03..0000000 --- a/Assets/Scripts/SonicRealms/Core/Moves/Spindash.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3f2eca7c11782a34aaf5564a40ddbf71 -timeCreated: 1446199197 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers.meta b/Assets/Scripts/SonicRealms/Core/Triggers.meta deleted file mode 100644 index d2f6e9a..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 782c90b6c99aed247bab447ed1da2553 -folderAsset: yes -timeCreated: 1443084056 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ActivateArea.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ActivateArea.cs.meta deleted file mode 100644 index d185237..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ActivateArea.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8763661f8a158b747bc15db0c8478b8b -timeCreated: 1449306568 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ActivatePlatform.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ActivatePlatform.cs.meta deleted file mode 100644 index 594030d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ActivatePlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 83d39d78dab2827469a7c7c41069bec2 -timeCreated: 1449306568 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/AreaEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/AreaEvent.cs.meta deleted file mode 100644 index a47266f..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/AreaEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: dc8bf0ada1754c54fbd295117f0b5443 -timeCreated: 1456866179 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/AreaTrigger.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/AreaTrigger.cs.meta deleted file mode 100644 index 396a531..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/AreaTrigger.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b01dbcc34cf2c5d45afd038db0e70191 -timeCreated: 1448614280 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 20 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/AttackTrigger.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/AttackTrigger.cs.meta deleted file mode 100644 index 63343f3..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/AttackTrigger.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 54ee7727d7d26d745b9fc66addb157c7 -timeCreated: 1457069895 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/AttackTriggerEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/AttackTriggerEvent.cs.meta deleted file mode 100644 index 5597ec4..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/AttackTriggerEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 43529a06d7ec33049901cf30663023d6 -timeCreated: 1457069895 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/BaseReactive.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/BaseReactive.cs.meta deleted file mode 100644 index 5e8c06d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/BaseReactive.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6dff3bc6b10c13d4e84dcc9aae73c8d1 -timeCreated: 1445003719 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/BaseTrigger.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/BaseTrigger.cs.meta deleted file mode 100644 index 81c3fbd..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/BaseTrigger.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4f6bbbc390102394c8dc5c8cb68bad22 -timeCreated: 1443095525 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/Editor.meta b/Assets/Scripts/SonicRealms/Core/Triggers/Editor.meta deleted file mode 100644 index 1db39a5..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a35c8a4491dab8946b9d01db30940048 -folderAsset: yes -timeCreated: 1443084147 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/ActivatePlatformEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/Editor/ActivatePlatformEditor.cs.meta deleted file mode 100644 index 92852d6..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/ActivatePlatformEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ab15d0d0d396ef744800a4f4b3833cc8 -timeCreated: 1449375015 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/BaseReactiveEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/Editor/BaseReactiveEditor.cs.meta deleted file mode 100644 index 46f84bb..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/BaseReactiveEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c53b3f8df1244b046b8d7140a3d94daf -timeCreated: 1448684224 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/BaseTriggerEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/Editor/BaseTriggerEditor.cs.meta deleted file mode 100644 index 47c07d6..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/BaseTriggerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 05111ed47815519429ba0b0ebbdd981e -timeCreated: 1442839874 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/ReactiveObjectEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/Editor/ReactiveObjectEditor.cs.meta deleted file mode 100644 index 9de11bf..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/Editor/ReactiveObjectEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 17def18e5253e0a47a603898d3c9fdc2 -timeCreated: 1456865431 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ObjectEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ObjectEvent.cs.meta deleted file mode 100644 index b4e0eb0..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ObjectEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: fa299495dac76554592ab2163430ab81 -timeCreated: 1456866179 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ObjectTrigger.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ObjectTrigger.cs.meta deleted file mode 100644 index 629f848..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ObjectTrigger.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3049f730761aaaf4d962d6508f24b499 -timeCreated: 1444850965 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/PlatformCollisionEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/PlatformCollisionEvent.cs.meta deleted file mode 100644 index 25e3ac5..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/PlatformCollisionEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 81450658edcb7414294a1f26759a71d6 -timeCreated: 1456866179 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/PlatformSurfaceEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/PlatformSurfaceEvent.cs.meta deleted file mode 100644 index 463e676..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/PlatformSurfaceEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a1e3ba5e7d7c0b7459f8bf67c30da971 -timeCreated: 1456865234 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/PlatformTrigger.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/PlatformTrigger.cs.meta deleted file mode 100644 index bc9a972..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/PlatformTrigger.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 90b4c07f75e2a40449585367aa1bb30c -timeCreated: 1445626955 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 50 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveArea.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveArea.cs.meta deleted file mode 100644 index b416940..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveArea.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 769e4a673249b4f4d8ab6099a0c14f29 -timeCreated: 1444093941 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveAreaEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveAreaEvent.cs.meta deleted file mode 100644 index 5ff64a1..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveAreaEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d097ffa0b8d116e4885d13e739aa8aff -timeCreated: 1457065613 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveEvent.cs.meta deleted file mode 100644 index 2368303..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ff7a12a6acbf106468c7b21c2cb80337 -timeCreated: 1457065613 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveObject.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveObject.cs.meta deleted file mode 100644 index ff49150..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveObject.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 52eb97a722d07b64ea08c86ccd33f350 -timeCreated: 1444914770 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveObjectEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveObjectEvent.cs.meta deleted file mode 100644 index 0f9d879..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactiveObjectEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b535ac120f61b6f428fff0c5d947e150 -timeCreated: 1457068870 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactivePlatform.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactivePlatform.cs.meta deleted file mode 100644 index 4bc7769..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactivePlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7af376a77736bdd4281c3de7a664387b -timeCreated: 1444093941 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Triggers/ReactivePlatformEvent.cs.meta b/Assets/Scripts/SonicRealms/Core/Triggers/ReactivePlatformEvent.cs.meta deleted file mode 100644 index 67291c4..0000000 --- a/Assets/Scripts/SonicRealms/Core/Triggers/ReactivePlatformEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 28cb647c920d3ea48a5b732700783a52 -timeCreated: 1457065612 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils.meta b/Assets/Scripts/SonicRealms/Core/Utils.meta deleted file mode 100644 index ad2d578..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 47e87c541dedb3348a667b460485e3bb -folderAsset: yes -timeCreated: 1443084063 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/AnimationDestroy.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/AnimationDestroy.cs.meta deleted file mode 100644 index 05b3b64..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/AnimationDestroy.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f3fe7cee044d0b743b9bf8dc212b409a -timeCreated: 1446960105 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/AnimationEvents.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/AnimationEvents.cs.meta deleted file mode 100644 index 9c76806..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/AnimationEvents.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 607595e8911787345b75f6304c57e1c1 -timeCreated: 1448756363 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/BGMLoopData.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/BGMLoopData.cs.meta deleted file mode 100644 index 55788fb..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/BGMLoopData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c652f3feedb17054c93ccd66567653a8 -timeCreated: 1451108616 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/BitMaskAttribute.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/BitMaskAttribute.cs.meta deleted file mode 100644 index fb628be..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/BitMaskAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f868af6bc7e8eb5428a800cd42a6b93a -timeCreated: 1445527497 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/BlitMaterial.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/BlitMaterial.cs.meta deleted file mode 100644 index 2ed4da8..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/BlitMaterial.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a7c959fff3828f349b953ccf9e1c09ea -timeCreated: 1450271047 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/CollisionLayers.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/CollisionLayers.cs.meta deleted file mode 100644 index 0ffea72..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/CollisionLayers.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f8edde69a040ab84c87dc7f7d0ac0b91 -timeCreated: 1450520648 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/CurveSpriteCycler.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/CurveSpriteCycler.cs.meta deleted file mode 100644 index 980bbf3..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/CurveSpriteCycler.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8544074ba8c3b9a4996d2bce54674c61 -timeCreated: 1457034164 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/CyclePalette.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/CyclePalette.cs.meta deleted file mode 100644 index 2fa68e0..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/CyclePalette.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 29feca3c5969786419cd0184a8a466ec -timeCreated: 1449488261 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/DMath.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/DMath.cs.meta deleted file mode 100644 index 8ca35d4..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/DMath.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 23d6c3fe1bf474340807837dd0a6e7ed -timeCreated: 1441093079 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/DisableInactiveParticles.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/DisableInactiveParticles.cs.meta deleted file mode 100644 index 46215fc..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/DisableInactiveParticles.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2ba753cf9c0b38a479d9431f4496ec82 -timeCreated: 1453669001 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor.meta deleted file mode 100644 index 9261d2b..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1545d7726b4a92747904861ee1220a2e -folderAsset: yes -timeCreated: 1442310891 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/BaseFoldoutEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/BaseFoldoutEditor.cs.meta deleted file mode 100644 index 10370f3..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/BaseFoldoutEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: fcab9d9c3d249fe44a79b1fb25a5cb89 -timeCreated: 1452025659 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/CyclePaletteEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/CyclePaletteEditor.cs.meta deleted file mode 100644 index e92ee12..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/CyclePaletteEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b45c5b4a5ae35fc438dbc16e6f7440b2 -timeCreated: 1449488881 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/EnumBitMaskPropertyDrawer.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/EnumBitMaskPropertyDrawer.cs.meta deleted file mode 100644 index bbaab3d..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/EnumBitMaskPropertyDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: fe552d87f56eae84a912664032cb410a -timeCreated: 1445527497 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/FoldoutDrawer.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/FoldoutDrawer.cs.meta deleted file mode 100644 index 8f709de..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/FoldoutDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f63a0fd89bcac7e4fa8545c9563a6593 -timeCreated: 1451558365 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/FontUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/FontUtility.cs.meta deleted file mode 100644 index 0760847..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/FontUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 91455f08b47223540bd6802423ad467f -timeCreated: 1448883654 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/HedgehogEditorGUIUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/HedgehogEditorGUIUtility.cs.meta deleted file mode 100644 index 228cfdd..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/HedgehogEditorGUIUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 946a82efa0e8e2146adc88fca3fd8e5a -timeCreated: 1441192696 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/MonoFontCreator.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/MonoFontCreator.cs.meta deleted file mode 100644 index 21b6b41..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/MonoFontCreator.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0ab7922f263df5646a1ac041428e4d19 -timeCreated: 1448882428 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/SceneViewGrid.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/SceneViewGrid.cs.meta deleted file mode 100644 index 1e0fbd9..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/SceneViewGrid.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4735cc472579dff4e937b012bdb831de -timeCreated: 1445930553 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/SpriteCyclerEditor.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/SpriteCyclerEditor.cs.meta deleted file mode 100644 index add5452..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/SpriteCyclerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bf7979240b0877148aa7e86f5d683936 -timeCreated: 1457034164 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/SpritesheetFontCreator.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/SpritesheetFontCreator.cs.meta deleted file mode 100644 index c1241ad..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/SpritesheetFontCreator.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 93cb52bcd53c1c7489528a3ca9b7f2c1 -timeCreated: 1448883654 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Editor/TagDrawer.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Editor/TagDrawer.cs.meta deleted file mode 100644 index 6746061..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Editor/TagDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3f5388dd8adc41e4a859b59ad5104805 -timeCreated: 1451888451 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/EnableWhenVisible.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/EnableWhenVisible.cs.meta deleted file mode 100644 index 3c0cd66..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/EnableWhenVisible.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: cb9e370c7c2583c41852a06488f757c5 -timeCreated: 1451379436 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/FlipWithPlayer.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/FlipWithPlayer.cs.meta deleted file mode 100644 index 3271b52..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/FlipWithPlayer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 53249515889933542a0f45d6b5f6bd94 -timeCreated: 1453690294 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/FlipWithPlayerSpeed.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/FlipWithPlayerSpeed.cs.meta deleted file mode 100644 index f1eb1e7..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/FlipWithPlayerSpeed.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0d5982654e401d746823655ac578ab5b -timeCreated: 1457098106 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/FoldoutAttribute.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/FoldoutAttribute.cs.meta deleted file mode 100644 index 6a2c1c4..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/FoldoutAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ef227145be845784cae1cedaa23250b1 -timeCreated: 1451558364 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/GameObjectUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/GameObjectUtility.cs.meta deleted file mode 100644 index bb1daa6..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/GameObjectUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 61da4dfa2589e03479484d66dda10f97 -timeCreated: 1456427987 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/HedgehogUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/HedgehogUtility.cs.meta deleted file mode 100644 index 46308c4..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/HedgehogUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bf71196de8edb07499735ffb88d00d1a -timeCreated: 1441096833 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/LinearSpriteCycler.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/LinearSpriteCycler.cs.meta deleted file mode 100644 index 3955ddc..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/LinearSpriteCycler.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d1fb7edacd629604d9ec939cda56e212 -timeCreated: 1457034165 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/LoopAudioSource.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/LoopAudioSource.cs.meta deleted file mode 100644 index d2a8181..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/LoopAudioSource.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1ad33395d2ec83d439a9fc70baed1fd6 -timeCreated: 1451106662 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/MapParameter.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/MapParameter.cs.meta deleted file mode 100644 index 481729c..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/MapParameter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 89d0182ba89b5be4a9a0ca397900c189 -timeCreated: 1448686587 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/OnBecameVisibleCallback.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/OnBecameVisibleCallback.cs.meta deleted file mode 100644 index 1e908d8..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/OnBecameVisibleCallback.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c9031e0bd909f9a43b06dd2b57f62ae8 -timeCreated: 1451378451 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Parallax.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Parallax.cs.meta deleted file mode 100644 index e9e3731..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Parallax.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f14b595e7a9195d47983ec580752d95c -timeCreated: 1449627105 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 9000 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/ParameterToTime.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/ParameterToTime.cs.meta deleted file mode 100644 index 14e0e41..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/ParameterToTime.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1d040b63190867c4aa7ad4703aae4723 -timeCreated: 1449065016 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/Physics2DUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/Physics2DUtility.cs.meta deleted file mode 100644 index 9f794ab..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/Physics2DUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3560fea794c689e4b960be7b1e2fe19c -timeCreated: 1441205302 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/RotateAroundParent.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/RotateAroundParent.cs.meta deleted file mode 100644 index 2ee6c48..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/RotateAroundParent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7d3471ff4676a384c974af19419adff3 -timeCreated: 1456799019 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/SceneMessages.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/SceneMessages.cs.meta deleted file mode 100644 index f15aa7c..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/SceneMessages.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 19d1ccdd9269e434fb66e1c197782a70 -timeCreated: 1456893552 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/SnapPosition.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/SnapPosition.cs.meta deleted file mode 100644 index 6c72b97..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/SnapPosition.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1ee8668007a40f046b060504b26039e2 -timeCreated: 1457039780 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/SoundMessages.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/SoundMessages.cs.meta deleted file mode 100644 index 5280cb5..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/SoundMessages.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ced533b0f3b383345976ac9e5f7e6eb8 -timeCreated: 1456552991 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/SpriteCycler.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/SpriteCycler.cs.meta deleted file mode 100644 index a7f5dda..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/SpriteCycler.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6c6f8052d05116b4e9709569daf37016 -timeCreated: 1457034164 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/TagAttribute.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/TagAttribute.cs.meta deleted file mode 100644 index 67b8ceb..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/TagAttribute.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 79fb5cc5079994b49be57c2b8a1a3722 -timeCreated: 1451888451 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/TerrainCastHit.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/TerrainCastHit.cs.meta deleted file mode 100644 index 65e1011..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/TerrainCastHit.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6718802c9147e3c469b42261529f4556 -timeCreated: 1441535624 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/TerrainUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/TerrainUtility.cs.meta deleted file mode 100644 index 9db9663..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/TerrainUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8b76bfb9c54ff5e4a816e829a39cfae8 -timeCreated: 1441503464 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/TileSprite.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/TileSprite.cs.meta deleted file mode 100644 index 64ab07a..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/TileSprite.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3c442bcebc2a4244db92c5d16751412e -timeCreated: 1449628572 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/TriggerCallback2D.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/TriggerCallback2D.cs.meta deleted file mode 100644 index bf28614..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/TriggerCallback2D.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 92b4d2bbb3a74c840a10db3bd3c2e3ed -timeCreated: 1450954658 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Core/Utils/TriggerUtility.cs.meta b/Assets/Scripts/SonicRealms/Core/Utils/TriggerUtility.cs.meta deleted file mode 100644 index 9ab5d59..0000000 --- a/Assets/Scripts/SonicRealms/Core/Utils/TriggerUtility.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2a3e49348eb29fd4297f544e5322f6cd -timeCreated: 1445916613 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level.meta b/Assets/Scripts/SonicRealms/Level.meta deleted file mode 100644 index 47ab8e8..0000000 --- a/Assets/Scripts/SonicRealms/Level.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2a20d20a62a1a15439c9911cf713cb8c -folderAsset: yes -timeCreated: 1443084283 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Areas.meta b/Assets/Scripts/SonicRealms/Level/Areas.meta deleted file mode 100644 index c0b01c4..0000000 --- a/Assets/Scripts/SonicRealms/Level/Areas.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ed7a6111c0f98d845afa62072557eb1c -folderAsset: yes -timeCreated: 1443084333 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Areas/Current.cs.meta b/Assets/Scripts/SonicRealms/Level/Areas/Current.cs.meta deleted file mode 100644 index c65b6a8..0000000 --- a/Assets/Scripts/SonicRealms/Level/Areas/Current.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bae0667ace6f357418712b1dbfd576cc -timeCreated: 1443440537 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Areas/Editor.meta b/Assets/Scripts/SonicRealms/Level/Areas/Editor.meta deleted file mode 100644 index c0b2883..0000000 --- a/Assets/Scripts/SonicRealms/Level/Areas/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 492e34aa92304064db10ad41cc9313e9 -folderAsset: yes -timeCreated: 1441212887 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Areas/InvisibleWall.cs.meta b/Assets/Scripts/SonicRealms/Level/Areas/InvisibleWall.cs.meta deleted file mode 100644 index 34c29bc..0000000 --- a/Assets/Scripts/SonicRealms/Level/Areas/InvisibleWall.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 97bbb7c6a27586f49a20b3fcb1d221cd -timeCreated: 1453658510 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Areas/Water.cs.meta b/Assets/Scripts/SonicRealms/Level/Areas/Water.cs.meta deleted file mode 100644 index d5d3d52..0000000 --- a/Assets/Scripts/SonicRealms/Level/Areas/Water.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: eaa029ea2c2df8e4c9aaeec7d30b406d -timeCreated: 1443095416 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/CameraController.cs.meta b/Assets/Scripts/SonicRealms/Level/CameraController.cs.meta deleted file mode 100644 index 96ca498..0000000 --- a/Assets/Scripts/SonicRealms/Level/CameraController.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: fd9a0509fecfcbe46a363ac9a6034a74 -timeCreated: 1449157450 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 400 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/CameraControllerState.cs.meta b/Assets/Scripts/SonicRealms/Level/CameraControllerState.cs.meta deleted file mode 100644 index 586f9ee..0000000 --- a/Assets/Scripts/SonicRealms/Level/CameraControllerState.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 52b4ecfc03aa01548b003818a34eb9c0 -timeCreated: 1457211527 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/CharacterData.cs.meta b/Assets/Scripts/SonicRealms/Level/CharacterData.cs.meta deleted file mode 100644 index 826d639..0000000 --- a/Assets/Scripts/SonicRealms/Level/CharacterData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e6939f41cf741304db6119a32dcfbe45 -timeCreated: 1454444457 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/CharacterSpawn.cs.meta b/Assets/Scripts/SonicRealms/Level/CharacterSpawn.cs.meta deleted file mode 100644 index e6da6c0..0000000 --- a/Assets/Scripts/SonicRealms/Level/CharacterSpawn.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 26f70e2d11addbd4f9f1aa68bc747fe8 -timeCreated: 1456347126 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/CharacterTargetCamera.cs.meta b/Assets/Scripts/SonicRealms/Level/CharacterTargetCamera.cs.meta deleted file mode 100644 index c74b652..0000000 --- a/Assets/Scripts/SonicRealms/Level/CharacterTargetCamera.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 12764834ad9a20f4ea28eacafa1f2a0f -timeCreated: 1456324517 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Editor.meta b/Assets/Scripts/SonicRealms/Level/Editor.meta deleted file mode 100644 index 83f2ad9..0000000 --- a/Assets/Scripts/SonicRealms/Level/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2e3e37e80f055d4419d2b32f8c0861c6 -folderAsset: yes -timeCreated: 1452584755 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Editor/HedgehogCameraControllerEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Editor/HedgehogCameraControllerEditor.cs.meta deleted file mode 100644 index 715f96b..0000000 --- a/Assets/Scripts/SonicRealms/Level/Editor/HedgehogCameraControllerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7852393a3cf6d244599cf346186fbc46 -timeCreated: 1452584755 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Editor/LevelManagerEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Editor/LevelManagerEditor.cs.meta deleted file mode 100644 index 1a17a76..0000000 --- a/Assets/Scripts/SonicRealms/Level/Editor/LevelManagerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a9954123b8ce8c84297865b93e2c54f1 -timeCreated: 1456871722 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Editor/SonicCameraControllerEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Editor/SonicCameraControllerEditor.cs.meta deleted file mode 100644 index 5047aea..0000000 --- a/Assets/Scripts/SonicRealms/Level/Editor/SonicCameraControllerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ef51583a1ed54ac45b7233c50973b316 -timeCreated: 1456721119 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects.meta b/Assets/Scripts/SonicRealms/Level/Effects.meta deleted file mode 100644 index bc2d1da..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 112a64a2939e30140b45c68e0cb8b838 -folderAsset: yes -timeCreated: 1447038124 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/CreateDebris.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/CreateDebris.cs.meta deleted file mode 100644 index db5788b..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/CreateDebris.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d2df60a885f433b43b3f8189d102dca6 -timeCreated: 1446722795 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/DebrisData.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/DebrisData.cs.meta deleted file mode 100644 index cd427ad..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/DebrisData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6a45a365bc80c8e4a8e21d4df51e3286 -timeCreated: 1446760865 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/DebrisExplode.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/DebrisExplode.cs.meta deleted file mode 100644 index 792dc3a..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/DebrisExplode.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 96ca19f2e04a7f048bae9fadde9355b4 -timeCreated: 1446760865 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/Editor.meta b/Assets/Scripts/SonicRealms/Level/Effects/Editor.meta deleted file mode 100644 index fc821c8..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4510aa1c4fa557f4fb0a31444b56495a -folderAsset: yes -timeCreated: 1447038178 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/Editor/CreateDebrisEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/Editor/CreateDebrisEditor.cs.meta deleted file mode 100644 index 9df7ae8..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/Editor/CreateDebrisEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: dfa62b06f5f63e64d926d0949ee77d0d -timeCreated: 1446764708 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/Editor/SwitchGravityEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/Editor/SwitchGravityEditor.cs.meta deleted file mode 100644 index 1f6d09c..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/Editor/SwitchGravityEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: aa11adb41b117b945b4a4ff0cb318f43 -timeCreated: 1445536384 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/GivePowerup.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/GivePowerup.cs.meta deleted file mode 100644 index c32a4a9..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/GivePowerup.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2ad8d7970a600774e95a9cb7c66f7494 -timeCreated: 1449278443 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/GiveRings.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/GiveRings.cs.meta deleted file mode 100644 index fa5858b..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/GiveRings.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6476a3aa8a87e3448860639cf29a49cd -timeCreated: 1448755933 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/HurtPlayer.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/HurtPlayer.cs.meta deleted file mode 100644 index 0270cb7..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/HurtPlayer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b264cd6a9d5035349b0258d1319a2bb9 -timeCreated: 1449161819 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/KillPlayer.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/KillPlayer.cs.meta deleted file mode 100644 index a7b53d3..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/KillPlayer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 38d15c77fb15ac14d80922d10c1c0a37 -timeCreated: 1449394624 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/PerformMove.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/PerformMove.cs.meta deleted file mode 100644 index 96be1e5..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/PerformMove.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 955cdc5093668324c8c2b59276fc814a -timeCreated: 1446802694 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/SetCameraBounds.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/SetCameraBounds.cs.meta deleted file mode 100644 index 77fdc14..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/SetCameraBounds.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 868e042a165cb234ea0ec7a174665922 -timeCreated: 1452844400 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/SwitchGravity.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/SwitchGravity.cs.meta deleted file mode 100644 index 6ef372d..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/SwitchGravity.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: cef3c84fbacb39742829e7caad28d1ea -timeCreated: 1445533349 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/SwitchLayer.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/SwitchLayer.cs.meta deleted file mode 100644 index 608b453..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/SwitchLayer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 51575c9e6b525b64d91cea3f0134404c -timeCreated: 1450587467 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Effects/SwitchLayerTwoWay.cs.meta b/Assets/Scripts/SonicRealms/Level/Effects/SwitchLayerTwoWay.cs.meta deleted file mode 100644 index 82fa898..0000000 --- a/Assets/Scripts/SonicRealms/Level/Effects/SwitchLayerTwoWay.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 4884964dfdea6ea4b880c01b3a245325 -timeCreated: 1450595289 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/GameManager.cs.meta b/Assets/Scripts/SonicRealms/Level/GameManager.cs.meta deleted file mode 100644 index c423250..0000000 --- a/Assets/Scripts/SonicRealms/Level/GameManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 675281bd8b2ec5042af0688bf529789a -timeCreated: 1457038176 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: -9200 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/GoalLevelManager.cs.meta b/Assets/Scripts/SonicRealms/Level/GoalLevelManager.cs.meta deleted file mode 100644 index 433159c..0000000 --- a/Assets/Scripts/SonicRealms/Level/GoalLevelManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bec7c984f227de148bea935dbb7ceed5 -timeCreated: 1448968196 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/LevelData.cs.meta b/Assets/Scripts/SonicRealms/Level/LevelData.cs.meta deleted file mode 100644 index 73d5ea5..0000000 --- a/Assets/Scripts/SonicRealms/Level/LevelData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1a51faac230af2b4b9d694e4fe05e4f7 -timeCreated: 1454444457 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/LevelManager.cs.meta b/Assets/Scripts/SonicRealms/Level/LevelManager.cs.meta deleted file mode 100644 index 86ab06b..0000000 --- a/Assets/Scripts/SonicRealms/Level/LevelManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 84f4c6c295eb98747b08b1c3d3daf14e -timeCreated: 1456347127 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/LevelTester.cs.meta b/Assets/Scripts/SonicRealms/Level/LevelTester.cs.meta deleted file mode 100644 index 4d82493..0000000 --- a/Assets/Scripts/SonicRealms/Level/LevelTester.cs.meta +++ /dev/null @@ -1,16 +0,0 @@ -fileFormatVersion: 2 -guid: 87f2a33067ec7c7479ebb05fe29c1d24 -timeCreated: 1456632163 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: - - Level: {instanceID: 0} - - Character: {instanceID: 0} - - BaseGameManager: {fileID: 11407338, guid: 2408b886ba162e84eb4eafdc49295c5e, type: 2} - - BaseSoundManager: {fileID: 11413506, guid: 80b94990b2cf5a0499eeadc4a0031409, type: 2} - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/LevelTimer.cs.meta b/Assets/Scripts/SonicRealms/Level/LevelTimer.cs.meta deleted file mode 100644 index 454db4e..0000000 --- a/Assets/Scripts/SonicRealms/Level/LevelTimer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a674b2d62b659404cb1303b6f6986e0c -timeCreated: 1452530273 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/NextLevelCharacterOverride.cs.meta b/Assets/Scripts/SonicRealms/Level/NextLevelCharacterOverride.cs.meta deleted file mode 100644 index 27d6ef5..0000000 --- a/Assets/Scripts/SonicRealms/Level/NextLevelCharacterOverride.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: dd39a10dadbecc14fb5e042ff97214f7 -timeCreated: 1457214988 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/NextLevelData.cs.meta b/Assets/Scripts/SonicRealms/Level/NextLevelData.cs.meta deleted file mode 100644 index 13948db..0000000 --- a/Assets/Scripts/SonicRealms/Level/NextLevelData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a7a1ec344aa52084483fb1f7d37e45ca -timeCreated: 1457214406 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects.meta b/Assets/Scripts/SonicRealms/Level/Objects.meta deleted file mode 100644 index d112dbf..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e1c49291e4e30d64cb3eb1b9f04c520a -folderAsset: yes -timeCreated: 1444914766 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Balloon.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Balloon.cs.meta deleted file mode 100644 index db10da9..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Balloon.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6a721724f5ff5b640871f169d9c86d1f -timeCreated: 1446961213 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/BoostPad.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/BoostPad.cs.meta deleted file mode 100644 index db6dea3..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/BoostPad.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5346506b0f0ed674197f36d56e79d473 -timeCreated: 1445615906 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/BreakableObject.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/BreakableObject.cs.meta deleted file mode 100644 index a8cd9b3..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/BreakableObject.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 26561961b3a685341867dcba8b569b80 -timeCreated: 1446771445 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/BreakableWall.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/BreakableWall.cs.meta deleted file mode 100644 index 8265056..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/BreakableWall.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 24fae9883e9d56546bd56ca3470a7817 -timeCreated: 1446713268 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Bumper.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Bumper.cs.meta deleted file mode 100644 index 8d3ef5b..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Bumper.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0a470d017d06d934ab49e496373143d5 -timeCreated: 1445041139 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Checkpoint.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Checkpoint.cs.meta deleted file mode 100644 index 1ed9a5f..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Checkpoint.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f797a7ae233d68f44862adf488c72b8a -timeCreated: 1456868466 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Editor.meta b/Assets/Scripts/SonicRealms/Level/Objects/Editor.meta deleted file mode 100644 index 3601b33..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a77eb5d0f69c30b419da4989f5905cca -folderAsset: yes -timeCreated: 1445027154 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Editor/PipeEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Editor/PipeEditor.cs.meta deleted file mode 100644 index dad4566..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Editor/PipeEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 31fcab27f39a4d946ae3d3bd9d8c7baa -timeCreated: 1446872197 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Editor/SpringEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Editor/SpringEditor.cs.meta deleted file mode 100644 index 00997c9..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Editor/SpringEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3bde5996035ff424ebe305fb713e0766 -timeCreated: 1445527106 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/ItemBox.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/ItemBox.cs.meta deleted file mode 100644 index f3b72b9..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/ItemBox.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 03a559950131d2045bf2c80c2cf6408a -timeCreated: 1446658074 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/LevelGoal.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/LevelGoal.cs.meta deleted file mode 100644 index 0f67b46..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/LevelGoal.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 27be597861e02bd45a36f8f417cb11f1 -timeCreated: 1456881870 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/MagnetizedRing.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/MagnetizedRing.cs.meta deleted file mode 100644 index b308dbc..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/MagnetizedRing.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: aa57cceb41245f446878ec736984667e -timeCreated: 1449368932 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Pipe.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Pipe.cs.meta deleted file mode 100644 index e03646d..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Pipe.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5bde526db041bd644a3e2355200b2ebe -timeCreated: 1446849456 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Ring.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Ring.cs.meta deleted file mode 100644 index 46e731f..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Ring.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: da937e89372bce94c84c4756782e86b9 -timeCreated: 1449152278 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/SpilledRing.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/SpilledRing.cs.meta deleted file mode 100644 index 560a6cc..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/SpilledRing.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c369568ddbb4fa14c806b5ed9b6cca1f -timeCreated: 1449017879 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Objects/Spring.cs.meta b/Assets/Scripts/SonicRealms/Level/Objects/Spring.cs.meta deleted file mode 100644 index 28c8dab..0000000 --- a/Assets/Scripts/SonicRealms/Level/Objects/Spring.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0ed7e6807cb9696418d3f22ec696eb4f -timeCreated: 1445530034 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms.meta b/Assets/Scripts/SonicRealms/Level/Platforms.meta deleted file mode 100644 index 8c4fa9c..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ac778e7cdf59272468c2b4cb76830998 -folderAsset: yes -timeCreated: 1443084320 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Accelerator.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Accelerator.cs.meta deleted file mode 100644 index 422519d..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Accelerator.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bab88ce0edc914c4594c99d9b96bdda4 -timeCreated: 1443221646 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/ConveyorBelt.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/ConveyorBelt.cs.meta deleted file mode 100644 index 476b964..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/ConveyorBelt.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 9fb9473f1c9121545863bdf9a39e48fe -timeCreated: 1443125855 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Corkscrew.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Corkscrew.cs.meta deleted file mode 100644 index aa332a6..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Corkscrew.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f3851a408748915419861e43362ab11f -timeCreated: 1449060014 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Crusher.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Crusher.cs.meta deleted file mode 100644 index 643c013..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Crusher.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 876002e17ada518448f5eabb688526bd -timeCreated: 1449429196 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/GravityMagnet.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/GravityMagnet.cs.meta deleted file mode 100644 index 6fb41f8..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/GravityMagnet.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2a0ea54cdcfeefd479145f563bf8fa81 -timeCreated: 1443562506 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Ice.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Ice.cs.meta deleted file mode 100644 index 58b9bc2..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Ice.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0fed4168bd176b941ab971b7ad394754 -timeCreated: 1443025550 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Ledge.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Ledge.cs.meta deleted file mode 100644 index 90bab7d..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Ledge.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b650201e3a9dc4e429e1f545b27ea3e8 -timeCreated: 1443018515 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers.meta deleted file mode 100644 index edb0574..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 42f9381d509f51d4083264df7b260e45 -folderAsset: yes -timeCreated: 1443084508 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/BasePlatformMover.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/BasePlatformMover.cs.meta deleted file mode 100644 index 6514bfd..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/BasePlatformMover.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 460d649e9a92b9d45a7fad14e1ac4dc7 -timeCreated: 1444105789 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor.meta deleted file mode 100644 index df5f447..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d963f7c38cd58954195cd4bbea793b10 -folderAsset: yes -timeCreated: 1444580861 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor/SwingPlatformEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor/SwingPlatformEditor.cs.meta deleted file mode 100644 index c11943d..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor/SwingPlatformEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 1907ed7931da6d140823395aef1829bd -timeCreated: 1444580869 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor/WeightedPlatformEditor.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor/WeightedPlatformEditor.cs.meta deleted file mode 100644 index ff4841b..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/Editor/WeightedPlatformEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6d9f39a99ef57df47b522d5280b1ffb2 -timeCreated: 1444581709 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/OscillatingPlatform.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/OscillatingPlatform.cs.meta deleted file mode 100644 index f5a4aeb..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/OscillatingPlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 31c757080dcbd544d82e59bab787a14d -timeCreated: 1442919204 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/PathPlatform.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/PathPlatform.cs.meta deleted file mode 100644 index d04ef12..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/PathPlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 2c733415cab54bf458c9c8cf00b80b1b -timeCreated: 1442564973 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/SwingPlatform.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/SwingPlatform.cs.meta deleted file mode 100644 index ed0bcba..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/SwingPlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d0437b65f4e70394dafa7e4890a37590 -timeCreated: 1445627135 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/WeightedPlatform.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Movers/WeightedPlatform.cs.meta deleted file mode 100644 index 2263950..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Movers/WeightedPlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 78b1655eaa092e14d853bcd7a7e5ac0c -timeCreated: 1443091587 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/MovingPlatform.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/MovingPlatform.cs.meta deleted file mode 100644 index 67f6000..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/MovingPlatform.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: c936c50fb8cfd4a4cbdd41302f7f5883 -timeCreated: 1444100791 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 100 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/MovingPlatformAnchor.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/MovingPlatformAnchor.cs.meta deleted file mode 100644 index bf105b0..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/MovingPlatformAnchor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 00e0799df0dfb6b4cb85a3726d13b1a6 -timeCreated: 1443250492 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/PlatformProgressAnimator.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/PlatformProgressAnimator.cs.meta deleted file mode 100644 index a427e51..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/PlatformProgressAnimator.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: e923f39865e83644e8ca5b34260e22ea -timeCreated: 1449061316 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/Slide.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/Slide.cs.meta deleted file mode 100644 index ca14ada..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/Slide.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: fe0ba739a891c784694802e08add578b -timeCreated: 1443443103 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/Platforms/WaterSurface.cs.meta b/Assets/Scripts/SonicRealms/Level/Platforms/WaterSurface.cs.meta deleted file mode 100644 index 81a4676..0000000 --- a/Assets/Scripts/SonicRealms/Level/Platforms/WaterSurface.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d871683d0a6702046b03038fe59ee3ae -timeCreated: 1457066318 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/SaveData.cs.meta b/Assets/Scripts/SonicRealms/Level/SaveData.cs.meta deleted file mode 100644 index 62fa9cd..0000000 --- a/Assets/Scripts/SonicRealms/Level/SaveData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 783a0cd65318e9e4eb50a5d81ced7d65 -timeCreated: 1453857629 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/SaveManager.cs.meta b/Assets/Scripts/SonicRealms/Level/SaveManager.cs.meta deleted file mode 100644 index bdf8386..0000000 --- a/Assets/Scripts/SonicRealms/Level/SaveManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 264ea83ac8bbbbb48ac79c0ce086c161 -timeCreated: 1454367871 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/SonicCameraController.cs.meta b/Assets/Scripts/SonicRealms/Level/SonicCameraController.cs.meta deleted file mode 100644 index 2adb690..0000000 --- a/Assets/Scripts/SonicRealms/Level/SonicCameraController.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5027378a4b7cd5c44a7f239b80fba3a9 -timeCreated: 1457251489 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 200 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/SoundManager.cs.meta b/Assets/Scripts/SonicRealms/Level/SoundManager.cs.meta deleted file mode 100644 index 2bc4c4b..0000000 --- a/Assets/Scripts/SonicRealms/Level/SoundManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 24ad1f71eca1ee44b836deb01454d694 -timeCreated: 1453658518 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: -9000 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/TimeScoreBonusData.cs.meta b/Assets/Scripts/SonicRealms/Level/TimeScoreBonusData.cs.meta deleted file mode 100644 index 4698337..0000000 --- a/Assets/Scripts/SonicRealms/Level/TimeScoreBonusData.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3e9bf942f01e0754f8053817fe182fb7 -timeCreated: 1457137641 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/Level/TimeScoreBonusRange.cs.meta b/Assets/Scripts/SonicRealms/Level/TimeScoreBonusRange.cs.meta deleted file mode 100644 index 1789eac..0000000 --- a/Assets/Scripts/SonicRealms/Level/TimeScoreBonusRange.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 208375a59921d964ca0e5dfa224de806 -timeCreated: 1457137641 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI.meta b/Assets/Scripts/SonicRealms/UI.meta deleted file mode 100644 index 4396ba5..0000000 --- a/Assets/Scripts/SonicRealms/UI.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1e71e30b778a6144e893bb0126a23724 -folderAsset: yes -timeCreated: 1448996679 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/ActClearScreen.cs.meta b/Assets/Scripts/SonicRealms/UI/ActClearScreen.cs.meta deleted file mode 100644 index ac563ed..0000000 --- a/Assets/Scripts/SonicRealms/UI/ActClearScreen.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 469a7b564b01e974eb28f6630cdf6cc4 -timeCreated: 1457196956 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/BaseDialog.cs.meta b/Assets/Scripts/SonicRealms/UI/BaseDialog.cs.meta deleted file mode 100644 index 7da3e51..0000000 --- a/Assets/Scripts/SonicRealms/UI/BaseDialog.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: d7f1272aced0fdf4591d972aa0933fac -timeCreated: 1454536665 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/BaseLifeCounter.cs.meta b/Assets/Scripts/SonicRealms/UI/BaseLifeCounter.cs.meta deleted file mode 100644 index 3717d70..0000000 --- a/Assets/Scripts/SonicRealms/UI/BaseLifeCounter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3cad2c20872e92e4992ded571a32634d -timeCreated: 1456528222 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/BaseSaveDataPreview.cs.meta b/Assets/Scripts/SonicRealms/UI/BaseSaveDataPreview.cs.meta deleted file mode 100644 index 380fd57..0000000 --- a/Assets/Scripts/SonicRealms/UI/BaseSaveDataPreview.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3658919fb9f08904da8a9a13adacc2df -timeCreated: 1454367871 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/BaseTransition.cs.meta b/Assets/Scripts/SonicRealms/UI/BaseTransition.cs.meta deleted file mode 100644 index d0ab3f7..0000000 --- a/Assets/Scripts/SonicRealms/UI/BaseTransition.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8e163e0a81711334b9bd335469fe42aa -timeCreated: 1456884376 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/BaseYesNoDialog.cs.meta b/Assets/Scripts/SonicRealms/UI/BaseYesNoDialog.cs.meta deleted file mode 100644 index 8573027..0000000 --- a/Assets/Scripts/SonicRealms/UI/BaseYesNoDialog.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b74915c6edde15c4690dda0135fb229e -timeCreated: 1454536664 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/DialogChoice.cs.meta b/Assets/Scripts/SonicRealms/UI/DialogChoice.cs.meta deleted file mode 100644 index b88807b..0000000 --- a/Assets/Scripts/SonicRealms/UI/DialogChoice.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 7a4d0ee5c215cf64cb7f270a095e817f -timeCreated: 1454536664 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/DialogChoiceEvent.cs.meta b/Assets/Scripts/SonicRealms/UI/DialogChoiceEvent.cs.meta deleted file mode 100644 index e8da099..0000000 --- a/Assets/Scripts/SonicRealms/UI/DialogChoiceEvent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: bdbe45b190fea78469c204298c38204c -timeCreated: 1454536664 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/DialogChoiceObject.cs.meta b/Assets/Scripts/SonicRealms/UI/DialogChoiceObject.cs.meta deleted file mode 100644 index 1d14122..0000000 --- a/Assets/Scripts/SonicRealms/UI/DialogChoiceObject.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3bb83ec7750f8d045a582b18e67068fb -timeCreated: 1454614623 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/Editor.meta b/Assets/Scripts/SonicRealms/UI/Editor.meta deleted file mode 100644 index ba694be..0000000 --- a/Assets/Scripts/SonicRealms/UI/Editor.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fcec627ea10b6614999dcf10777f9f91 -folderAsset: yes -timeCreated: 1456878996 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/Editor/BaseTransitionEditor.cs.meta b/Assets/Scripts/SonicRealms/UI/Editor/BaseTransitionEditor.cs.meta deleted file mode 100644 index 86ce0dd..0000000 --- a/Assets/Scripts/SonicRealms/UI/Editor/BaseTransitionEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 8d6eebe17be989546bbde721fc09da8f -timeCreated: 1456884376 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/Editor/LinearItemPickerEditor.cs.meta b/Assets/Scripts/SonicRealms/UI/Editor/LinearItemPickerEditor.cs.meta deleted file mode 100644 index 727e4ac..0000000 --- a/Assets/Scripts/SonicRealms/UI/Editor/LinearItemPickerEditor.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 616a95b54eda8b443b8739f25cace444 -timeCreated: 1456878996 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/FadeToBlackTransition.cs.meta b/Assets/Scripts/SonicRealms/UI/FadeToBlackTransition.cs.meta deleted file mode 100644 index 846fb7a..0000000 --- a/Assets/Scripts/SonicRealms/UI/FadeToBlackTransition.cs.meta +++ /dev/null @@ -1,13 +0,0 @@ -fileFormatVersion: 2 -guid: 4d84ed568b371f544a76d430951b5dd1 -timeCreated: 1455651083 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: - - Material: {fileID: 2100000, guid: 025d66904b7ec654984fad06e38536f5, type: 2} - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/FloatingScoreView.cs.meta b/Assets/Scripts/SonicRealms/UI/FloatingScoreView.cs.meta deleted file mode 100644 index 095a884..0000000 --- a/Assets/Scripts/SonicRealms/UI/FloatingScoreView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 6b5eefee354222d4b8a45e8c267fba18 -timeCreated: 1452466853 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/LinearItemPicker.cs.meta b/Assets/Scripts/SonicRealms/UI/LinearItemPicker.cs.meta deleted file mode 100644 index dc39355..0000000 --- a/Assets/Scripts/SonicRealms/UI/LinearItemPicker.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f64a1c6f321455149a27f0a651bffd12 -timeCreated: 1454346478 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/MenuScreen.cs.meta b/Assets/Scripts/SonicRealms/UI/MenuScreen.cs.meta deleted file mode 100644 index 2cba743..0000000 --- a/Assets/Scripts/SonicRealms/UI/MenuScreen.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 84e175e47789b2c458210a977e1505c1 -timeCreated: 1453986686 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/MenuScreenManager.cs.meta b/Assets/Scripts/SonicRealms/UI/MenuScreenManager.cs.meta deleted file mode 100644 index 7ddfa14..0000000 --- a/Assets/Scripts/SonicRealms/UI/MenuScreenManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 86b25531fbd785e4aa407022cd5cb7b7 -timeCreated: 1454067235 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: -9100 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/MenuScreenState.cs.meta b/Assets/Scripts/SonicRealms/UI/MenuScreenState.cs.meta deleted file mode 100644 index d851cb2..0000000 --- a/Assets/Scripts/SonicRealms/UI/MenuScreenState.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 9d508dd13e10d8a44b342e0188b174ca -timeCreated: 1454057159 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/MultiChoiceDialog.cs.meta b/Assets/Scripts/SonicRealms/UI/MultiChoiceDialog.cs.meta deleted file mode 100644 index 666a831..0000000 --- a/Assets/Scripts/SonicRealms/UI/MultiChoiceDialog.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 452747ac3796f3b4986aca3d411b6682 -timeCreated: 1454536664 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/RingsView.cs.meta b/Assets/Scripts/SonicRealms/UI/RingsView.cs.meta deleted file mode 100644 index 3f16c21..0000000 --- a/Assets/Scripts/SonicRealms/UI/RingsView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 35eb724d94abb97488a275651f0efba5 -timeCreated: 1452528653 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/SaveDataIconPreview.cs.meta b/Assets/Scripts/SonicRealms/UI/SaveDataIconPreview.cs.meta deleted file mode 100644 index ca41903..0000000 --- a/Assets/Scripts/SonicRealms/UI/SaveDataIconPreview.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: f4e020af133937547bf767800759199a -timeCreated: 1454367871 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/SaveDataInfoPreview.cs.meta b/Assets/Scripts/SonicRealms/UI/SaveDataInfoPreview.cs.meta deleted file mode 100644 index fb2e101..0000000 --- a/Assets/Scripts/SonicRealms/UI/SaveDataInfoPreview.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 33174af118d137240839e8b6d16ad241 -timeCreated: 1454367871 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/SaveDataPicker.cs.meta b/Assets/Scripts/SonicRealms/UI/SaveDataPicker.cs.meta deleted file mode 100644 index cf12971..0000000 --- a/Assets/Scripts/SonicRealms/UI/SaveDataPicker.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a1bc87c783b1101418b27de36ece50fb -timeCreated: 1454367871 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/SceneTransition.cs.meta b/Assets/Scripts/SonicRealms/UI/SceneTransition.cs.meta deleted file mode 100644 index 0df39d3..0000000 --- a/Assets/Scripts/SonicRealms/UI/SceneTransition.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a9c3d0a32a0bfad42a31c22f149defe7 -timeCreated: 1456893552 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/ScoreView.cs.meta b/Assets/Scripts/SonicRealms/UI/ScoreView.cs.meta deleted file mode 100644 index b09ee24..0000000 --- a/Assets/Scripts/SonicRealms/UI/ScoreView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a75ccb96ba3cade4595844865d29b158 -timeCreated: 1452528653 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/SonicHUD.cs.meta b/Assets/Scripts/SonicRealms/UI/SonicHUD.cs.meta deleted file mode 100644 index b28dfed..0000000 --- a/Assets/Scripts/SonicRealms/UI/SonicHUD.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 27bb5c60810691b478cd936bb8687ea0 -timeCreated: 1452529838 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/SonicHUDManager.cs.meta b/Assets/Scripts/SonicRealms/UI/SonicHUDManager.cs.meta deleted file mode 100644 index a5cea15..0000000 --- a/Assets/Scripts/SonicRealms/UI/SonicHUDManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: aa40278a2ba7db1498e5588e112d1689 -timeCreated: 1452529839 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TextLifeCounter.cs.meta b/Assets/Scripts/SonicRealms/UI/TextLifeCounter.cs.meta deleted file mode 100644 index 4d27de1..0000000 --- a/Assets/Scripts/SonicRealms/UI/TextLifeCounter.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: b3d294dba70f9bd47a3abf80d04f6a91 -timeCreated: 1456529435 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TextRingsView.cs.meta b/Assets/Scripts/SonicRealms/UI/TextRingsView.cs.meta deleted file mode 100644 index ee0110e..0000000 --- a/Assets/Scripts/SonicRealms/UI/TextRingsView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3f9a7a2bed7d3114a80fa7ee0e001dc8 -timeCreated: 1448999985 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TextScoreView.cs.meta b/Assets/Scripts/SonicRealms/UI/TextScoreView.cs.meta deleted file mode 100644 index be03042..0000000 --- a/Assets/Scripts/SonicRealms/UI/TextScoreView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0d3336aea482329429b08af59b36bccc -timeCreated: 1452487010 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TextTimerView.cs.meta b/Assets/Scripts/SonicRealms/UI/TextTimerView.cs.meta deleted file mode 100644 index 84bdae6..0000000 --- a/Assets/Scripts/SonicRealms/UI/TextTimerView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 47002e71756f9954a9d1c1009b9ebf41 -timeCreated: 1448996679 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TimerView.cs.meta b/Assets/Scripts/SonicRealms/UI/TimerView.cs.meta deleted file mode 100644 index 1245de3..0000000 --- a/Assets/Scripts/SonicRealms/UI/TimerView.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 75045ec1580bfa547b9946f433ede630 -timeCreated: 1452528653 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/Transition.cs.meta b/Assets/Scripts/SonicRealms/UI/Transition.cs.meta deleted file mode 100644 index 961ceb4..0000000 --- a/Assets/Scripts/SonicRealms/UI/Transition.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 03fe72b6800ba554493433a20068310b -timeCreated: 1456886097 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TransitionState.cs.meta b/Assets/Scripts/SonicRealms/UI/TransitionState.cs.meta deleted file mode 100644 index 60bfd74..0000000 --- a/Assets/Scripts/SonicRealms/UI/TransitionState.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 5e323300e54ee2e4b874a8d6f0e14556 -timeCreated: 1456888097 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/SonicRealms/UI/TransitionWaitModule.cs.meta b/Assets/Scripts/SonicRealms/UI/TransitionWaitModule.cs.meta deleted file mode 100644 index 62ec1bb..0000000 --- a/Assets/Scripts/SonicRealms/UI/TransitionWaitModule.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ebf769d2f17508447843a743550a34c9 -timeCreated: 1457088680 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Shaders.meta b/Assets/Shaders.meta deleted file mode 100644 index 6f6d645..0000000 --- a/Assets/Shaders.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 9cfba9ec18337424fac02c789ef592c7 -folderAsset: yes -timeCreated: 1456378488 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Shaders/Color Curve Overlay.shader b/Assets/Shaders/Color Curve Overlay.shader index 37ac41a..f9d5e23 100644 --- a/Assets/Shaders/Color Curve Overlay.shader +++ b/Assets/Shaders/Color Curve Overlay.shader @@ -1,4 +1,6 @@ -Shader "Unlit/Color Curve Overlay" +// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' + +Shader "Unlit/Color Curve Overlay" { Properties { @@ -38,7 +40,7 @@ v2f vert (appdata v) { v2f o; - o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); + o.vertex = UnityObjectToClipPos(v.vertex); o.uv = ComputeGrabScreenPos(o.vertex); return o; } diff --git a/Assets/Shaders/Color Curve Overlay.shader.meta b/Assets/Shaders/Color Curve Overlay.shader.meta deleted file mode 100644 index f82057b..0000000 --- a/Assets/Shaders/Color Curve Overlay.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 60892315abd5c6c458d998707dbf96d9 -timeCreated: 1456969790 -licenseType: Free -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Shaders/ColorCurveDistortOverlay.shader b/Assets/Shaders/ColorCurveDistortOverlay.shader index f9f1445..3f5b2d3 100644 --- a/Assets/Shaders/ColorCurveDistortOverlay.shader +++ b/Assets/Shaders/ColorCurveDistortOverlay.shader @@ -1,3 +1,5 @@ +// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' + Shader "Unlit/Color Curve + Distort Overlay" { Properties @@ -46,7 +48,7 @@ Shader "Unlit/Color Curve + Distort Overlay" v2f vert (appdata v) { v2f o; - o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); + o.vertex = UnityObjectToClipPos(v.vertex); o.uv = ComputeGrabScreenPos(o.vertex); return o; } diff --git a/Assets/Shaders/ColorCurveDistortOverlay.shader.meta b/Assets/Shaders/ColorCurveDistortOverlay.shader.meta deleted file mode 100644 index e7f84a9..0000000 --- a/Assets/Shaders/ColorCurveDistortOverlay.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 9977e690ca6a5e14985235cdcadcc590 -timeCreated: 1457129285 -licenseType: Free -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Shaders/Heat.shader b/Assets/Shaders/Heat.shader index aa3534b..afc156a 100644 --- a/Assets/Shaders/Heat.shader +++ b/Assets/Shaders/Heat.shader @@ -1,4 +1,6 @@ -Shader "Unlit/Heat" +// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' + +Shader "Unlit/Heat" { Properties { @@ -37,7 +39,7 @@ v2f vert (appdata v) { v2f o; - o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); + o.vertex = UnityObjectToClipPos(v.vertex); o.uv = v.uv; return o; } diff --git a/Assets/Shaders/Heat.shader.meta b/Assets/Shaders/Heat.shader.meta deleted file mode 100644 index b5c10c5..0000000 --- a/Assets/Shaders/Heat.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5b4891b69bfcbad408cc29cf09aafbab -timeCreated: 1450271067 -licenseType: Free -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Shaders/PaletteController.shader b/Assets/Shaders/PaletteController.shader index a9a615d..7bd5829 100644 --- a/Assets/Shaders/PaletteController.shader +++ b/Assets/Shaders/PaletteController.shader @@ -1,4 +1,6 @@ -Shader "Unlit/Palette Controller" +// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' + +Shader "Unlit/Palette Controller" { Properties { @@ -122,7 +124,7 @@ v2f vert (appdata v) { v2f o; - o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); + o.vertex = UnityObjectToClipPos(v.vertex); //o.uv = TRANSFORM_TEX(v.uv, _MainTex); o.uv = v.uv; return o; diff --git a/Assets/Shaders/PaletteController.shader.meta b/Assets/Shaders/PaletteController.shader.meta deleted file mode 100644 index 4d60d85..0000000 --- a/Assets/Shaders/PaletteController.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0be29964c15b76543897644dc5e0daf5 -timeCreated: 1449492833 -licenseType: Free -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Shaders/SonicFadeTransition.shader b/Assets/Shaders/SonicFadeTransition.shader index ae65589..51eeab8 100644 --- a/Assets/Shaders/SonicFadeTransition.shader +++ b/Assets/Shaders/SonicFadeTransition.shader @@ -1,4 +1,6 @@ -Shader "Unlit/Add Color" +// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' + +Shader "Unlit/Add Color" { Properties { @@ -35,7 +37,7 @@ v2f vert (appdata v) { v2f o; - o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); + o.vertex = UnityObjectToClipPos(v.vertex); o.uv = v.uv; return o; } diff --git a/Assets/Shaders/SonicFadeTransition.shader.meta b/Assets/Shaders/SonicFadeTransition.shader.meta deleted file mode 100644 index 5f78adf..0000000 --- a/Assets/Shaders/SonicFadeTransition.shader.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fb08b0934ed40be4c841c4ab01821f3b -timeCreated: 1449880798 -licenseType: Free -ShaderImporter: - defaultTextures: [] - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit.meta b/Assets/Sonic 16-bit.meta deleted file mode 100644 index f03ad69..0000000 --- a/Assets/Sonic 16-bit.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6b4c82fbae805a546b5c31919efcaa23 -folderAsset: yes -timeCreated: 1446842348 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals.meta b/Assets/Sonic 16-bit/Animals.meta deleted file mode 100644 index 2d2bf7a..0000000 --- a/Assets/Sonic 16-bit/Animals.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1e33a83236f438f45b5d95c7ea83596d -folderAsset: yes -timeCreated: 1451692520 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations.meta b/Assets/Sonic 16-bit/Animals/Animations.meta deleted file mode 100644 index 93ced75..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 087d17c27b0db694e872c26c3c6cfe53 -folderAsset: yes -timeCreated: 1451724850 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations/Base Animal.controller.meta b/Assets/Sonic 16-bit/Animals/Animations/Base Animal.controller.meta deleted file mode 100644 index 374b720..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations/Base Animal.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 473a90c10e2607e40837e6141375744d -timeCreated: 1451724859 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations/Base Hit Ground.anim.meta b/Assets/Sonic 16-bit/Animals/Animations/Base Hit Ground.anim.meta deleted file mode 100644 index 9acef66..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations/Base Hit Ground.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7998d51fd48ecb0468ded0ad0582f00c -timeCreated: 1451724944 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations/Base Start.anim.meta b/Assets/Sonic 16-bit/Animals/Animations/Base Start.anim.meta deleted file mode 100644 index 0b655f9..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations/Base Start.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: aa9e353259a19e945acde4dd53741242 -timeCreated: 1451724937 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations/Flicky Hit Ground.anim.meta b/Assets/Sonic 16-bit/Animals/Animations/Flicky Hit Ground.anim.meta deleted file mode 100644 index 472e62e..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations/Flicky Hit Ground.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bcc5a6c0da0688b47b4769b20a967173 -timeCreated: 1451724980 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations/Flicky Start.anim.meta b/Assets/Sonic 16-bit/Animals/Animations/Flicky Start.anim.meta deleted file mode 100644 index 90cda68..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations/Flicky Start.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 502ddf3e29e5c854d986ee3fa5824122 -timeCreated: 1451724987 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Animations/Flicky.overrideController.meta b/Assets/Sonic 16-bit/Animals/Animations/Flicky.overrideController.meta deleted file mode 100644 index a960a31..0000000 --- a/Assets/Sonic 16-bit/Animals/Animations/Flicky.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6cabb3a7f595be647813c775763ef6b8 -timeCreated: 1451724915 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Flicky.prefab.meta b/Assets/Sonic 16-bit/Animals/Flicky.prefab.meta deleted file mode 100644 index e863654..0000000 --- a/Assets/Sonic 16-bit/Animals/Flicky.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ad128619e0a519444bd0d65858581ee4 -timeCreated: 1451692959 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites.meta b/Assets/Sonic 16-bit/Animals/Sprites.meta deleted file mode 100644 index e34204d..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 13d5aacc8f7398f47bde9247a0fc087e -folderAsset: yes -timeCreated: 1451692667 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/cucky_01.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/cucky_01.png.meta deleted file mode 100644 index 6ab3d8b..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/cucky_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 19723a63cf591064882ec168eda85dbe -timeCreated: 1451692667 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/cucky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/cucky_02.png.meta deleted file mode 100644 index 57f2744..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/cucky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 99b01ea064f735147870dcd33f3fed56 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/cucky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/cucky_03.png.meta deleted file mode 100644 index 224a0af..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/cucky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 31a2c0d1f353b0140b4ddf5493243b35 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/flicky_01.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/flicky_01.png.meta deleted file mode 100644 index 1c10ccc..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/flicky_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 2204c96f7d3cc4146a65f1e41d90355d -timeCreated: 1451692667 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/flicky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/flicky_02.png.meta deleted file mode 100644 index a02aa01..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/flicky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: dd9ff8bc1425a8e469ebe63ee7d779e6 -timeCreated: 1451692669 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/flicky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/flicky_03.png.meta deleted file mode 100644 index 728e2dc..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/flicky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: aecf8b65cac7ea143ab4efd30b554ae9 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/pecky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/pecky_02.png.meta deleted file mode 100644 index 5d84f16..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/pecky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 3207bc7db1dcd034da82b31fc3b13f3d -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/pecky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/pecky_03.png.meta deleted file mode 100644 index 70bacfa..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/pecky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 0a032089779a97a45a64c5aa42181f37 -timeCreated: 1451692667 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/picky_01.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/picky_01.png.meta deleted file mode 100644 index 605e1af..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/picky_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 1f388b294abe7204dbd62646bfba8c1c -timeCreated: 1451692667 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/picky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/picky_02.png.meta deleted file mode 100644 index 7cf1b23..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/picky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: d3a2c4776c0c05a49be79626ad6b4473 -timeCreated: 1451692669 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/picky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/picky_03.png.meta deleted file mode 100644 index 07f411f..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/picky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: a6e70d2736e4fc14b99f5112ae5cbd2a -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/pocky_01.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/pocky_01.png.meta deleted file mode 100644 index 06059d0..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/pocky_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: ad0ca385c59dff345a20ce2f8f88fe74 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/pocky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/pocky_02.png.meta deleted file mode 100644 index d1295ec..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/pocky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 4f5c087fe9fd23c41bd37d52ce144886 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/pocky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/pocky_03.png.meta deleted file mode 100644 index 49166ac..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/pocky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 8b127a0505f5f5742a166ca5a7d8878b -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/ricky_01.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/ricky_01.png.meta deleted file mode 100644 index be1bad8..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/ricky_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: b338ccc40c321214da67fdf4799b4ba7 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/ricky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/ricky_02.png.meta deleted file mode 100644 index ceb1134..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/ricky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: b4abf80ca65bb3548bd9f17f3bb0dc4f -timeCreated: 1451692669 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/ricky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/ricky_03.png.meta deleted file mode 100644 index 9851805..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/ricky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 3eeb320e5876e8e42828383c96b6438c -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/rocky_01.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/rocky_01.png.meta deleted file mode 100644 index a7976df..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/rocky_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 3e12ad892f7803d4ebc808ad2a07e417 -timeCreated: 1451692668 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/rocky_02.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/rocky_02.png.meta deleted file mode 100644 index dbefee3..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/rocky_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 02c786ee134727e47b0911b2fe27a3e3 -timeCreated: 1451692667 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Animals/Sprites/rocky_03.png.meta b/Assets/Sonic 16-bit/Animals/Sprites/rocky_03.png.meta deleted file mode 100644 index 5605c8a..0000000 --- a/Assets/Sonic 16-bit/Animals/Sprites/rocky_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: f9203e1fdaea2ff41b27d0ec8af8d2c4 -timeCreated: 1451692669 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks.meta b/Assets/Sonic 16-bit/Badniks.meta deleted file mode 100644 index 79020cd..0000000 --- a/Assets/Sonic 16-bit/Badniks.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b963087234ea4b544bb4ca25f70c714c -folderAsset: yes -timeCreated: 1451346855 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Base Ground Badnik.prefab.meta b/Assets/Sonic 16-bit/Badniks/Base Ground Badnik.prefab.meta deleted file mode 100644 index a9b9b82..0000000 --- a/Assets/Sonic 16-bit/Badniks/Base Ground Badnik.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 553c6e13d63da7f4f999ef6fc4f7760c -timeCreated: 1451692320 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber.meta deleted file mode 100644 index cf028ff..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 451bdcbe2ccaa5643bc18d0f268248d4 -folderAsset: yes -timeCreated: 1451891632 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber.prefab.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber.prefab.meta deleted file mode 100644 index d64bb90..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 48f762b21caf51f428aeb337d188bba2 -timeCreated: 1452052995 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations.meta deleted file mode 100644 index 72870c5..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 562991b715f373845828b98ccf7684ba -folderAsset: yes -timeCreated: 1451900513 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Buzz Bomber.controller.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Buzz Bomber.controller.meta deleted file mode 100644 index 0734d96..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Buzz Bomber.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fb689421681a36d4687eb42877cd951a -timeCreated: 1451900521 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Fly.anim.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Fly.anim.meta deleted file mode 100644 index 5b1773e..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Fly.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0132944b96791cd40852a8b82894f0a6 -timeCreated: 1451900535 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Shoot.anim.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Shoot.anim.meta deleted file mode 100644 index b1b83bb..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Shoot.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 476e5aea04167324fbfea4ff0c31810b -timeCreated: 1451900884 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Stop.anim.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Stop.anim.meta deleted file mode 100644 index 4023071..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Animations/Stop.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cd37e731f30e6174e812bba2e98d98e3 -timeCreated: 1451901752 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Left.prefab.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Left.prefab.meta deleted file mode 100644 index 63e67df..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Left.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7c2bdfacb1a0766459e7a78f8f8aa16b -timeCreated: 1452055603 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Right.prefab.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Right.prefab.meta deleted file mode 100644 index 5723690..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Right.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fc5c7d97e3c7c1d46ba27fb679e8a245 -timeCreated: 1452055605 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Shoot.prefab.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Shoot.prefab.meta deleted file mode 100644 index 4b8b84e..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Buzz Bomber Signal Shoot.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d0aad01c8211a184cb291498911fcaa2 -timeCreated: 1452055607 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Example Buzz Bomber.prefab.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Example Buzz Bomber.prefab.meta deleted file mode 100644 index f4dd9c1..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Example Buzz Bomber.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 646d38822ae2f5048a5ef44a7202f8ca -timeCreated: 1452060780 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites.meta deleted file mode 100644 index 27d7bb1..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c6d64b13ebcb6c5439cb16a71961dbc3 -folderAsset: yes -timeCreated: 1451891633 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_01.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_01.png.meta deleted file mode 100644 index 6c93910..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 14be5868ed3365b4d87cd07b775fab41 -timeCreated: 1451891633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_02.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_02.png.meta deleted file mode 100644 index 92ce0eb..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 43c2f0c9becd25c4aaa8297d6abead81 -timeCreated: 1451900053 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_03.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_03.png.meta deleted file mode 100644 index 9fe496e..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 7b012795b4b7cde4285996ce6b8d04c0 -timeCreated: 1451891634 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_04.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_04.png.meta deleted file mode 100644 index 2fa40bd..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_04.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 271704e80ccf05a43b83ef2c2e0ca893 -timeCreated: 1451891633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_jet_01.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_jet_01.png.meta deleted file mode 100644 index b0ecba5..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_jet_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: d4780a5d1a8249a43a0a48de787cf5e8 -timeCreated: 1451901657 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_jet_02.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_jet_02.png.meta deleted file mode 100644 index 90b82a1..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_jet_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: ece135bc93611e54fb7b0213b6ac9969 -timeCreated: 1451901657 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_shoot_01.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_shoot_01.png.meta deleted file mode 100644 index df5617f..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_shoot_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 60f65d1c02978c24eb68b28eb1c6045b -timeCreated: 1451891634 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_shoot_02.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_shoot_02.png.meta deleted file mode 100644 index d63aec4..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_shoot_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 38cd74a79c2585442ac24d2a497bffe1 -timeCreated: 1451891633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_fire.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_fire.png.meta deleted file mode 100644 index 9809fdd..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_fire.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: da6750abd5807d44994052d75c38d2ab -timeCreated: 1452055496 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_left.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_left.png.meta deleted file mode 100644 index 72a07c4..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_left.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 24309e649e711a846950a1ea0e378aae -timeCreated: 1452055496 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_right.png.meta b/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_right.png.meta deleted file mode 100644 index cb41e35..0000000 --- a/Assets/Sonic 16-bit/Badniks/Buzz Bomber/Sprites/buzzbomber_signal_right.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 7aeeae6faa3c95d48b100e9485a8a869 -timeCreated: 1452055496 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug.meta b/Assets/Sonic 16-bit/Badniks/Motobug.meta deleted file mode 100644 index 7f6addc..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: cd3a744179767e74780ae95c0aae9c4c -folderAsset: yes -timeCreated: 1451346989 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug.prefab.meta b/Assets/Sonic 16-bit/Badniks/Motobug.prefab.meta deleted file mode 100644 index 1bb6503..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fa9ccf5f84a61054493462ec897f6743 -timeCreated: 1451369027 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations.meta deleted file mode 100644 index a3e402b..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 80b23831118e813498e5eb6daced93a5 -folderAsset: yes -timeCreated: 1451347631 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Death.anim.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Death.anim.meta deleted file mode 100644 index ff771c2..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Death.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6857bdf6ce2f0dc4098eea7a394d28e6 -timeCreated: 1451685041 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Motobug Smoke.controller.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Motobug Smoke.controller.meta deleted file mode 100644 index 52cd942..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Motobug Smoke.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6694c07bd4be18140b685007d76f6b0a -timeCreated: 1451548775 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Motobug.controller.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Motobug.controller.meta deleted file mode 100644 index 7b25d77..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Motobug.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ec94d1ebe42260c4c9eea2ff28cf587c -timeCreated: 1451347695 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Move.anim.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Move.anim.meta deleted file mode 100644 index 4909ac9..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Move.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 39f7a0c922cff314e8bc82bb84cba0f1 -timeCreated: 1451347898 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Smoke.anim.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Smoke.anim.meta deleted file mode 100644 index 060f39e..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Smoke.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 58207dfb40f40da4ea6d7e34cbc5b42b -timeCreated: 1451548788 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Spawn Smoke.anim.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Spawn Smoke.anim.meta deleted file mode 100644 index 8e2887e..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Spawn Smoke.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e8a42908501481f4c86647527360f534 -timeCreated: 1451549003 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Spawn Smoke.controller.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Spawn Smoke.controller.meta deleted file mode 100644 index 3b356c4..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Animations/Spawn Smoke.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: df9b8bb9202d8eb4daababb6702de0c1 -timeCreated: 1451549053 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Example Motobug.prefab.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Example Motobug.prefab.meta deleted file mode 100644 index 13d1dcf..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Example Motobug.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 38ab290c845dc1440b82267ea983cd1e -timeCreated: 1452061071 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Signal Left.prefab.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Signal Left.prefab.meta deleted file mode 100644 index 9f0cf6f..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Signal Left.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a97fc82ae2c20264b86b3400bb1ec78a -timeCreated: 1451377709 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Signal Right.prefab.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Signal Right.prefab.meta deleted file mode 100644 index b8c8b17..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Signal Right.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fb138c154489fbd4ea113d3a6a307f99 -timeCreated: 1451378161 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Smoke.prefab.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Smoke.prefab.meta deleted file mode 100644 index 8952be3..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Motobug Smoke.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1c88e4d0d6a11da48a693db0e08a2e08 -timeCreated: 1451549095 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites.meta deleted file mode 100644 index 38405bc..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 7745eebe41379cb4bb75900b2f63279c -folderAsset: yes -timeCreated: 1451347538 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_01.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_01.png.meta deleted file mode 100644 index b6696e1..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 493ed27ab2535e248af2ed563704ef94 -timeCreated: 1451346856 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_02.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_02.png.meta deleted file mode 100644 index f2f6976..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 03f665935e3b28143a947cf17abbb2e5 -timeCreated: 1451346856 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_03.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_03.png.meta deleted file mode 100644 index df8c901..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 3f4e754755abac642b1708108b7acef1 -timeCreated: 1451346856 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_04.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_04.png.meta deleted file mode 100644 index 2638965..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_04.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: c0614c01e956a064f91d9065726af216 -timeCreated: 1451346857 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_signal_left.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_signal_left.png.meta deleted file mode 100644 index cb06a8d..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_signal_left.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: dfeea0fdee618f0468b36cae915d472a -timeCreated: 1451377588 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 1 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_signal_right.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_signal_right.png.meta deleted file mode 100644 index 210f568..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_signal_right.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: e2ba65c57934a8447ac4c55b8374f7fc -timeCreated: 1451377589 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 1 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_01.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_01.png.meta deleted file mode 100644 index 81de82e..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 57d3d5280818d7d45af4dcde4e1cf22e -timeCreated: 1451346857 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_02.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_02.png.meta deleted file mode 100644 index 84e31b7..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 012575b27149a124cbb801bacefe6991 -timeCreated: 1451346856 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_03.png.meta b/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_03.png.meta deleted file mode 100644 index 548cac4..0000000 --- a/Assets/Sonic 16-bit/Badniks/Motobug/Sprites/motobug_smoke_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: d74f48f22a04b6f428c64171323e68a0 -timeCreated: 1451346857 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: Badniks - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras.meta b/Assets/Sonic 16-bit/Cameras.meta deleted file mode 100644 index e38d9aa..0000000 --- a/Assets/Sonic 16-bit/Cameras.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5fd7027b1c1f3504d8f6750b720332db -folderAsset: yes -timeCreated: 1448780190 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Camera Trigger.prefab.meta b/Assets/Sonic 16-bit/Cameras/Camera Trigger.prefab.meta deleted file mode 100644 index 0218d30..0000000 --- a/Assets/Sonic 16-bit/Cameras/Camera Trigger.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cf1d9b1ce92121f4fbbb64f640d835eb -timeCreated: 1452852317 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sonic 1 Camera.prefab.meta b/Assets/Sonic 16-bit/Cameras/Sonic 1 Camera.prefab.meta deleted file mode 100644 index 8735f1f..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sonic 1 Camera.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 87490f7085017f04fa0845db5717ae57 -timeCreated: 1448782616 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sonic 2 3K Camera.prefab.meta b/Assets/Sonic 16-bit/Cameras/Sonic 2 3K Camera.prefab.meta deleted file mode 100644 index e837f06..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sonic 2 3K Camera.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 10af6551a4463a146a85d2657d45cf4d -timeCreated: 1448782603 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sonic CD Camera.prefab.meta b/Assets/Sonic 16-bit/Cameras/Sonic CD Camera.prefab.meta deleted file mode 100644 index 268caad..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sonic CD Camera.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e92d905c6df3d9241905d032a490a555 -timeCreated: 1448782639 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sprites.meta b/Assets/Sonic 16-bit/Cameras/Sprites.meta deleted file mode 100644 index 39b1f86..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 96c21d1aa9fa68d4d91ff3bf001dd978 -folderAsset: yes -timeCreated: 1452847263 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sprites/camera_max.png.meta b/Assets/Sonic 16-bit/Cameras/Sprites/camera_max.png.meta deleted file mode 100644 index e7cc5f6..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sprites/camera_max.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 76e0255b2ec54bf47ac4802173e96301 -timeCreated: 1452847263 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sprites/camera_min.png.meta b/Assets/Sonic 16-bit/Cameras/Sprites/camera_min.png.meta deleted file mode 100644 index 7618020..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sprites/camera_min.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: a28c5661635fe9a42b3ce12e96064f28 -timeCreated: 1452847263 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Cameras/Sprites/camera_trigger.png.meta b/Assets/Sonic 16-bit/Cameras/Sprites/camera_trigger.png.meta deleted file mode 100644 index ed3582f..0000000 --- a/Assets/Sonic 16-bit/Cameras/Sprites/camera_trigger.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: a9f6b760f06065d4ab7ef250c75dc5a6 -timeCreated: 1452851444 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters.meta b/Assets/Sonic 16-bit/Characters.meta deleted file mode 100644 index 074ede3..0000000 --- a/Assets/Sonic 16-bit/Characters.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 435310a7bae4ba949b1a2778b14c00fe -folderAsset: yes -timeCreated: 1446842370 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic.meta deleted file mode 100644 index ec65be1..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 722f87a26af5b774caec394886d726f1 -folderAsset: yes -timeCreated: 1445940270 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic.prefab.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic.prefab.meta deleted file mode 100644 index f0bc35c..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: dbca39c759708bb4dbdc512f0b2a13b2 -timeCreated: 1445941632 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations.meta deleted file mode 100644 index 9c47794..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0fd64c5d689243444b5e2990e52a919a -folderAsset: yes -timeCreated: 1445940671 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Corkscrew.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Corkscrew.anim.meta deleted file mode 100644 index 6fbc258..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Corkscrew.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5c646b67639838f408bc1475bbad2c2b -timeCreated: 1449064933 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Death.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Death.anim.meta deleted file mode 100644 index b8a3b84..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Death.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c9166cecd905a6a4ea1fee848de4259d -timeCreated: 1449198576 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Drown.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Drown.anim.meta deleted file mode 100644 index 5c0aaa0..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Drown.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 782435e3fa181724b851f704e2ea16e8 -timeCreated: 1456818589 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Duck.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Duck.anim.meta deleted file mode 100644 index 13c9045..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Duck.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0b947e451738dad4dbaac8166e05dac7 -timeCreated: 1448053104 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Edge Balance 1.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Edge Balance 1.anim.meta deleted file mode 100644 index f3ddf8c..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Edge Balance 1.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c486e783171bf984fa5aafdead6989fb -timeCreated: 1448051086 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Edge Balance 2.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Edge Balance 2.anim.meta deleted file mode 100644 index 2dda222..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Edge Balance 2.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4c68769d8d2a8c849a03d39d726b2e3d -timeCreated: 1448051467 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Face Backward.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Face Backward.anim.meta deleted file mode 100644 index 1c4ec18..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Face Backward.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 24c315809a2b4704092f7eb9d0e415f0 -timeCreated: 1453608041 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Face Forward.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Face Forward.anim.meta deleted file mode 100644 index d83ad04..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Face Forward.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 88d8e4aa1a73b764c86dcd2380680780 -timeCreated: 1453608032 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Flashing.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Flashing.anim.meta deleted file mode 100644 index 549e710..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Flashing.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 62c8aebb6eba08c4891fef30723aa847 -timeCreated: 1449161047 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Hurt.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Hurt.anim.meta deleted file mode 100644 index 082a34f..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Hurt.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2b7693a334c6c9a47ad4f952f801e0c8 -timeCreated: 1449157730 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Idle.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Idle.anim.meta deleted file mode 100644 index a043860..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bf8653ce2755a074a939e010a812cba9 -timeCreated: 1448049373 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Look Up.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Look Up.anim.meta deleted file mode 100644 index 21a5de3..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Look Up.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1addd68012d945743b6f84f58599a730 -timeCreated: 1448056262 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Push.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Push.anim.meta deleted file mode 100644 index ac01465..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Push.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bb544139d79432f4f8e0fb78fb75dc29 -timeCreated: 1448055826 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Roll.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Roll.anim.meta deleted file mode 100644 index 5276611..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Roll.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 65138a730dee70d4da1610c091332d18 -timeCreated: 1448052832 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Rotate X Run.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Rotate X Run.anim.meta deleted file mode 100644 index 6c2a9b3..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Rotate X Run.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1db0c179f9f3e9841ab601f5eb294972 -timeCreated: 1448682802 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Run.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Run.anim.meta deleted file mode 100644 index 971ef06..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Run.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f607180b49d1ae24aab8d5be3012bfd1 -timeCreated: 1448052284 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/S3K Sonic-OLD.controller.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/S3K Sonic-OLD.controller.meta deleted file mode 100644 index a8fbbb4..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/S3K Sonic-OLD.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 466e7da88c20b9e4494c5a2a89e84d5c -timeCreated: 1453508176 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/S3K Sonic.controller.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/S3K Sonic.controller.meta deleted file mode 100644 index 39116af..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/S3K Sonic.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a1adccd8e6ab9aa49ac792cf50d35656 -timeCreated: 1448692498 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Skid.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Skid.anim.meta deleted file mode 100644 index c29bcde..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Skid.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 90c332eca1a32a540a3bf99b5f05b218 -timeCreated: 1448053785 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Spindash.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Spindash.anim.meta deleted file mode 100644 index 84e5961..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Spindash.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 878811d299332cd43b7dc1f2702fda37 -timeCreated: 1448053390 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Stand.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Stand.anim.meta deleted file mode 100644 index 4d8c82d..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Stand.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 98c57bbc045b48041833c448e4e45db7 -timeCreated: 1448048819 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Walk.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Walk.anim.meta deleted file mode 100644 index 1f7363d..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Animations/Walk.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a288301139875244d9a6b1eca506cfce -timeCreated: 1448051767 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield.meta deleted file mode 100644 index e08540f..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 846a5759b1124d64cac51219cf9868dd -folderAsset: yes -timeCreated: 1449450275 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/Active.anim.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/Active.anim.meta deleted file mode 100644 index fd1eff8..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/Active.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: deba51f1287ed2149ab5dd62c49973f5 -timeCreated: 1449455443 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/Insta-Shield.controller.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/Insta-Shield.controller.meta deleted file mode 100644 index 00af500..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/Insta-Shield.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 02ea6acc1f575c64e8afebbd691bcf26 -timeCreated: 1449455272 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/instashield.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/instashield.png.meta deleted file mode 100644 index bdef05b..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Insta-Shield/instashield.png.meta +++ /dev/null @@ -1,122 +0,0 @@ -fileFormatVersion: 2 -guid: a12f63436e1beb74985ac40206be75b9 -timeCreated: 1449450440 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: instashield_01 - 21300002: instashield_02 - 21300004: instashield_03 - 21300006: instashield_04 - 21300008: instashield_05 - 21300010: instashield_06 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: instashield_01 - rect: - serializedVersion: 2 - x: 0 - y: 92 - width: 24 - height: 36 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: instashield_02 - rect: - serializedVersion: 2 - x: 28 - y: 100 - width: 34 - height: 28 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: instashield_03 - rect: - serializedVersion: 2 - x: 65 - y: 80 - width: 46 - height: 46 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: instashield_04 - rect: - serializedVersion: 2 - x: 112 - y: 60 - width: 60 - height: 68 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: instashield_05 - rect: - serializedVersion: 2 - x: 0 - y: 33 - width: 62 - height: 46 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: instashield_06 - rect: - serializedVersion: 2 - x: 67 - y: 13 - width: 62 - height: 46 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites.meta deleted file mode 100644 index 0288dee..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 940387002a1605246ba145fe87f35e91 -folderAsset: yes -timeCreated: 1445940651 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_01.png.meta deleted file mode 100644 index 4dc9b54..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 124d74c31920df247b04894f46720b51 -timeCreated: 1448049022 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_02.png.meta deleted file mode 100644 index 3071dcd..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e4738822ca923b049895cacd439af721 -timeCreated: 1448049028 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_03.png.meta deleted file mode 100644 index f2024f3..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 92c7a97dae2117f47b8082d1bf0f7c7d -timeCreated: 1448049026 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_04.png.meta deleted file mode 100644 index 019e74d..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/brake_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6ec91aac5ccb3904989ef1d5a4e0888e -timeCreated: 1448049024 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/death_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/death_01.png.meta deleted file mode 100644 index 903a1e6..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/death_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 159c9f3a067674d478ba069768fcdb31 -timeCreated: 1449198880 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/drown_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/drown_01.png.meta deleted file mode 100644 index c526094..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/drown_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 5e8291ce2b59fea4cae562841527f7b0 -timeCreated: 1456818280 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/duck_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/duck_01.png.meta deleted file mode 100644 index 5dc818d..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/duck_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 16466129e3226104580b77ab39a2920e -timeCreated: 1448049023 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/duck_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/duck_02.png.meta deleted file mode 100644 index 102ebdb..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/duck_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 119443e65af7ef944bedc4aef56ae247 -timeCreated: 1448049022 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_01.png.meta deleted file mode 100644 index df31a37..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d7e2d3133df32f04fb4d681650bd4ec0 -timeCreated: 1448049028 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_02.png.meta deleted file mode 100644 index ec5279b..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8a3c3a354ddea2740a4cfb920637ea70 -timeCreated: 1448049025 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_03.png.meta deleted file mode 100644 index 0d5af84..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_1_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 973a23ee6572e1e4c904a7e9b85e55b1 -timeCreated: 1448049026 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_01.png.meta deleted file mode 100644 index 7a07451..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c39a2222533cfba41b741205b1c6c516 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_02.png.meta deleted file mode 100644 index 1d52073..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8df939353252acf4aa2a6400cd3a104b -timeCreated: 1448049025 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_03.png.meta deleted file mode 100644 index 5f07a16..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/edge_2_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c80c48f43d2ee4a409eabe8a20aa194d -timeCreated: 1448049028 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/hurt_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/hurt_01.png.meta deleted file mode 100644 index aac5dc5..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/hurt_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 37541828cebb6924db83551aa9786241 -timeCreated: 1449157635 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_01.png.meta deleted file mode 100644 index 0dfb9ef..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 89dfd31200e8c0645bd9afef74b09ef2 -timeCreated: 1448049025 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_02.png.meta deleted file mode 100644 index bdbc076..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2e8defcbfc5bd7f41935c5cccf90fdc7 -timeCreated: 1448049023 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_03.png.meta deleted file mode 100644 index 1806335..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6e72a7a0e703f3c4e9578b67d09c9c4c -timeCreated: 1448049024 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_04.png.meta deleted file mode 100644 index c92001c..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c9e949bd9167b594c94bdc3d42905def -timeCreated: 1448049028 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_05.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_05.png.meta deleted file mode 100644 index ed511de..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ad60524f95350584f95b847ab8766265 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_06.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_06.png.meta deleted file mode 100644 index 323822a..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9d241935a6af7954e9d60c4feac50d07 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_07.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_07.png.meta deleted file mode 100644 index eedc312..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_07.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8390fb047b5e87d40b4b780356847e50 -timeCreated: 1448049025 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_08.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_08.png.meta deleted file mode 100644 index 165254d..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/idle_08.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 4295478e88796ab43a01acb08d6fa1eb -timeCreated: 1448049024 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/look_up_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/look_up_01.png.meta deleted file mode 100644 index 1e03eb6..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/look_up_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 92e64de6e43fee1499723a2ddde7cd96 -timeCreated: 1448049026 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/look_up_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/look_up_02.png.meta deleted file mode 100644 index 5aad6cf..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/look_up_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2f0bcfbcfe24a984ba5f740bd2cc14cd -timeCreated: 1448049023 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_01.png.meta deleted file mode 100644 index f5978ff..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: a384cdc2ca9c64f4bbaa65c7ab4c30d3 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_02.png.meta deleted file mode 100644 index 7088bc1..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3bdd4f17bcb165b4faa654b1e31cc2d5 -timeCreated: 1448049023 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_03.png.meta deleted file mode 100644 index 6f0b1a1..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 54d3e3a3b7308d2489d60b04edf9ec5d -timeCreated: 1448049024 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_04.png.meta deleted file mode 100644 index 0c90e49..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/push_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ac5277970a906c5499a1701e117ac744 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_01.png.meta deleted file mode 100644 index 6a2d0dc..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f49bbfa1fdd3cef4f8f09d4c2789ab34 -timeCreated: 1448049029 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_02.png.meta deleted file mode 100644 index 3582bc8..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 12b2ea6113a1a104a860830709e6edcc -timeCreated: 1448049022 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_03.png.meta deleted file mode 100644 index 265076b..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 70f858e6b0f5f9a49b08ca53cf93132a -timeCreated: 1448049025 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_04.png.meta deleted file mode 100644 index 92e3b79..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9e10d49077f638844b8a127c6505a775 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_05.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_05.png.meta deleted file mode 100644 index c2191e0..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/roll_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: be846f5970a964540b3bac6be9569134 -timeCreated: 1448049027 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_01.png.meta deleted file mode 100644 index 7692a5e..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1b2ba0432b4023e47a8bf000dd3199bc -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_02.png.meta deleted file mode 100644 index 30309cb..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7d28ccc7224c0e442aaee0542fd2818f -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_03.png.meta deleted file mode 100644 index 32edd4f..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c54a8c86986bea245bdc01228895e6e3 -timeCreated: 1448682768 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_04.png.meta deleted file mode 100644 index 4df152f..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ac5040490f0508f4fb2ca26134f828e2 -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_05.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_05.png.meta deleted file mode 100644 index 5365723..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 4db2be8ce4469b447be452e9a1f605cf -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_06.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_06.png.meta deleted file mode 100644 index 9d298f4..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7156a7f7ad7695e4a94109e5c81e871b -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_07.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_07.png.meta deleted file mode 100644 index b767a2d..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_07.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ebea454f6d8ec174a9e740e04782011f -timeCreated: 1448682768 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_08.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_08.png.meta deleted file mode 100644 index 14042b0..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_08.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8767cea6cf411884bbdd1154b4afdd3e -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_09.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_09.png.meta deleted file mode 100644 index cb18e60..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_09.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 5e5f46aa5b714db428ac53aa53e1339a -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_10.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_10.png.meta deleted file mode 100644 index c4af060..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_10.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 82a5f06fb06a310469febce13ae313ab -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_11.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_11.png.meta deleted file mode 100644 index bbfe670..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_11.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3512a5df91ed9bd498e3bf7d2daa24f8 -timeCreated: 1448682767 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_12.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_12.png.meta deleted file mode 100644 index b0d6590..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/rotate_x_run_12.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b0e365349c8e0ab4fae21a286a6add13 -timeCreated: 1448682768 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_01.png.meta deleted file mode 100644 index 91d2f73..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3849eba92f7125846a5ea95caf25fb69 -timeCreated: 1448049023 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_02.png.meta deleted file mode 100644 index 56117aa..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1bb5f198ddde54c4bbeadb30f75959d7 -timeCreated: 1448049023 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_03.png.meta deleted file mode 100644 index aa63906..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f4ea4c662c46112498cb45a265f88a8b -timeCreated: 1448049029 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_04.png.meta deleted file mode 100644 index 6607e9f..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/run_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 72b0482bc5218a543ab577c49ec92744 -timeCreated: 1448049025 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_01.png.meta deleted file mode 100644 index 80448f4..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 680e5620124e0474ebac8a48f4a51b65 -timeCreated: 1448049081 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_02.png.meta deleted file mode 100644 index d5c0f8f..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 925019d8f34751a45bf7c2e0a46f29f9 -timeCreated: 1448049082 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_03.png.meta deleted file mode 100644 index 458445a..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 305a1724267769c4f955b23d3e06ec31 -timeCreated: 1448049081 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_04.png.meta deleted file mode 100644 index 18f3d13..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 06c5f60cc1ed0f64c8c562dc4816507f -timeCreated: 1448049079 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_05.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_05.png.meta deleted file mode 100644 index 2ce0dad..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 420edd9fca63ae74a8cdcac2821a5700 -timeCreated: 1448049081 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_06.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_06.png.meta deleted file mode 100644 index 1bac4aa..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spindash_06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c7725dc231333c142bb1e62cddbc509a -timeCreated: 1448049082 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spring_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spring_01.png.meta deleted file mode 100644 index a8875a1..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/spring_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2fda3ed01ca7a9f4ea4cf0f8c9ac8dd3 -timeCreated: 1448049080 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/stand_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/stand_01.png.meta deleted file mode 100644 index d63b750..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/stand_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 61f87ae41c879084e9d3883dcc9cbb8f -timeCreated: 1448049081 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_01.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_01.png.meta deleted file mode 100644 index ef3cef9..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 975c6cbf72e438d44ba8d666be86f132 -timeCreated: 1448049082 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_02.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_02.png.meta deleted file mode 100644 index 3f0d440..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b1cda139dc4553e4784624c76f8c9414 -timeCreated: 1448049082 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_03.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_03.png.meta deleted file mode 100644 index 6bab3f1..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9dbc6661088df3549a2f5ffd50e32419 -timeCreated: 1448049082 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_04.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_04.png.meta deleted file mode 100644 index 17f9f13..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 130cf3e46024d524882421d7fd1f0528 -timeCreated: 1448049080 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_05.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_05.png.meta deleted file mode 100644 index 08529a0..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 010d5822f1602f64f94a7cec8b6d2d33 -timeCreated: 1448049079 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_06.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_06.png.meta deleted file mode 100644 index 28ff768..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: de10c6f7d480a454b84ba70d5d88be5e -timeCreated: 1448049082 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_07.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_07.png.meta deleted file mode 100644 index c6e867e..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_07.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 08c34dd8ee63ded4abe9b202f3b3b076 -timeCreated: 1448049079 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_08.png.meta b/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_08.png.meta deleted file mode 100644 index 5a5175c..0000000 --- a/Assets/Sonic 16-bit/Characters/S3K Sonic/Sprites/walk_08.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8824cb6977aa55c4a9ff2922b63b904e -timeCreated: 1448049081 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: S3K Sonic - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects.meta b/Assets/Sonic 16-bit/Common Objects.meta deleted file mode 100644 index 0185213..0000000 --- a/Assets/Sonic 16-bit/Common Objects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fe33c899d7e948b418213e9e210971f0 -folderAsset: yes -timeCreated: 1447661275 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints.meta deleted file mode 100644 index 5b6bdd8..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c2bc2bebf3f36dd4bba4a2b2969c86b7 -folderAsset: yes -timeCreated: 1449759520 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint.meta deleted file mode 100644 index d606149..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 839b492d2a2fc9441803b0192e5608cc -folderAsset: yes -timeCreated: 1449759520 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint.prefab.meta deleted file mode 100644 index eaac8bb..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0ff4e4402e4cf5a4e80729485cad5d0e -timeCreated: 1456872097 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/Flashing.anim.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/Flashing.anim.meta deleted file mode 100644 index f353343..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/Flashing.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 94789f64daa8fdb4ca77edeb412d8ad0 -timeCreated: 1449760000 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/S3K Checkpoint.controller.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/S3K Checkpoint.controller.meta deleted file mode 100644 index a70d02c..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/S3K Checkpoint.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 93c33d2ab26368f4099ad716f9bb017f -timeCreated: 1449760019 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/S3K Checkpoint.png.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/S3K Checkpoint.png.meta deleted file mode 100644 index f57f4ff..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/S3K Checkpoint.png.meta +++ /dev/null @@ -1,93 +0,0 @@ -fileFormatVersion: 2 -guid: ce2e0e49e2caf1548b1d6d26841e738e -timeCreated: 1451177336 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: S3K Checkpoint Base - 21300002: S3K Checkpoint Head_48 - 21300004: S3K Checkpoint Head_49 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: S3K Checkpoint Base - rect: - serializedVersion: 2 - x: 0 - y: 3 - width: 16 - height: 44 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: S3K Checkpoint Head_48 - rect: - serializedVersion: 2 - x: 0 - y: 48 - width: 16 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: S3K Checkpoint Head_49 - rect: - serializedVersion: 2 - x: 17 - y: 48 - width: 16 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/Triggered.anim.meta b/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/Triggered.anim.meta deleted file mode 100644 index 5ee834d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Checkpoints/S3K Checkpoint/Triggered.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b66bf4e0db802d940bbb563cf5410f1c -timeCreated: 1449759990 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes.meta deleted file mode 100644 index 75b70c8..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 94b90a0233463a54d86c73385d8561d5 -folderAsset: yes -timeCreated: 1446842459 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations.meta deleted file mode 100644 index b836c66..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 33aa4bb9bd132094dabc0489683ef22c -folderAsset: yes -timeCreated: 1446661951 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1.meta deleted file mode 100644 index 1a6f114..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 078768d6637393245a4c2711731407e9 -folderAsset: yes -timeCreated: 1449287935 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Break.anim.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Break.anim.meta deleted file mode 100644 index acac0bd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Break.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1c1a2fb7255c4654a8084be55d10102a -timeCreated: 1449287952 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Flicker.anim.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Flicker.anim.meta deleted file mode 100644 index 6955499..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Flicker.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: efff9d47a802bb84f8e6b4aa62e4bda6 -timeCreated: 1449287952 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Item Box.controller.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Item Box.controller.meta deleted file mode 100644 index 5512fae..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S1/S1 Item Box.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3a3d14d136421af4e96f96c1ff485c0d -timeCreated: 1446669293 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2.meta deleted file mode 100644 index 75e9aef..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6263c7f174a96ae40837a2df72c17a2b -folderAsset: yes -timeCreated: 1449284209 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Break.anim.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Break.anim.meta deleted file mode 100644 index 0644f0a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Break.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 636a5aa3b952c5841879f41db1fe84fc -timeCreated: 1446669329 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Flicker.anim.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Flicker.anim.meta deleted file mode 100644 index dcb60da..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Flicker.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c0f343f12d59cfe4f8121e5259c54f03 -timeCreated: 1446662865 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Item Box.overrideController.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Item Box.overrideController.meta deleted file mode 100644 index b59d0b0..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S2/S2 Item Box.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 04f9d893540e56c49a65bb77a8279b0e -timeCreated: 1449288753 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K.meta deleted file mode 100644 index 3521fff..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3ce9a8c3399bd064191f8032a255f064 -folderAsset: yes -timeCreated: 1449287153 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Break.anim.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Break.anim.meta deleted file mode 100644 index 634d70d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Break.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2189a715c3ecd5d4bbcc8bbf5107b505 -timeCreated: 1449287153 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Flicker.anim.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Flicker.anim.meta deleted file mode 100644 index b407625..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Flicker.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ca15eef0c58726e4eb088d4664d8d29b -timeCreated: 1449287153 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Item Box.overrideController.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Item Box.overrideController.meta deleted file mode 100644 index b575473..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Animations/S3K/S3K Item Box.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 867b7df0663ba934ca5695be208e4533 -timeCreated: 1449287199 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Empty.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Empty.prefab.meta deleted file mode 100644 index 95796c0..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Empty.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 13102e1fbbe1f604db9149c86cb94e27 -timeCreated: 1449288400 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Shield.prefab.meta deleted file mode 100644 index e1307f3..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ec843b2fa7b1ec546abdbb127843fe8a -timeCreated: 1449311587 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Super Ring.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Super Ring.prefab.meta deleted file mode 100644 index 8e7891c..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S1 Super Ring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ecd4f0927cd08f409d76acb2892b933 -timeCreated: 1449288601 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Empty.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Empty.prefab.meta deleted file mode 100644 index 05e6f0d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Empty.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 47d2000d24dfa054fa411433b6eb0580 -timeCreated: 1446673452 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Invincibility.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Invincibility.prefab.meta deleted file mode 100644 index 43e8ff1..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Invincibility.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ab8d7a2cc1d5a7647b65e93462bc935f -timeCreated: 1456804755 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Robotnik.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Robotnik.prefab.meta deleted file mode 100644 index 169f33b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Robotnik.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c548d13d365c3b541a01d83c77f5388a -timeCreated: 1449386712 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Shield.prefab.meta deleted file mode 100644 index 4b044a4..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e68109ec7eb80704bb4cb7d52ba8087c -timeCreated: 1449310403 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Super Ring.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Super Ring.prefab.meta deleted file mode 100644 index 73a666c..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S2 Super Ring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c3dd0de472efcaa4fbea91771140d709 -timeCreated: 1449288603 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Bubble Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Bubble Shield.prefab.meta deleted file mode 100644 index b4bdc76..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Bubble Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5a2e007689fd99d4b99e0afa1d9d1634 -timeCreated: 1449289572 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Electric Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Electric Shield.prefab.meta deleted file mode 100644 index cb5cb9b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Electric Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0d8fadfc3ac11384f824e51c7e1229d1 -timeCreated: 1449290953 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Empty.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Empty.prefab.meta deleted file mode 100644 index b8cde51..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Empty.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: be96cc4a56fedcb4f93a5b2201509f30 -timeCreated: 1449287177 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Flame Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Flame Shield.prefab.meta deleted file mode 100644 index 8544476..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Flame Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 309fb8f392b57504bb11a248d6079b1f -timeCreated: 1449292650 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Robotnik.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Robotnik.prefab.meta deleted file mode 100644 index 3067825..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Robotnik.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 06e0e6db02a60144bb3b1e57911958c1 -timeCreated: 1449386746 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Speed Shoes.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Speed Shoes.prefab.meta deleted file mode 100644 index ea2fcfc..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Speed Shoes.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5648999cb9be59146a27d124198ea02f -timeCreated: 1456545982 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Super Ring.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Super Ring.prefab.meta deleted file mode 100644 index 5e38950..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/S3K Super Ring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fbec7fe75ca4955439baa685b4413b42 -timeCreated: 1449288567 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites.meta deleted file mode 100644 index f3cd808..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ae500fbc252d28a4c8abcdc3206c0e29 -folderAsset: yes -timeCreated: 1449284174 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_01.png.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_01.png.meta deleted file mode 100644 index ce849a7..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6971e23038d1a5d47b2ef6b4371659f1 -timeCreated: 1446672978 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Item Boxes - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_02.png.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_02.png.meta deleted file mode 100644 index 7a2db39..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8c7a74ba9ec50294ea45fc78b2bed469 -timeCreated: 1446672978 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Item Boxes - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_03.png.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_03.png.meta deleted file mode 100644 index 53c98d8..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 18b336bdcafc6f54a8c81db9cefe8d89 -timeCreated: 1446672978 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Item Boxes - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_04.png.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_04.png.meta deleted file mode 100644 index 1559186..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6e8a250ff4a587c41ac318b5e50498e3 -timeCreated: 1446672978 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Item Boxes - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_05.png.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_05.png.meta deleted file mode 100644 index 8715ef0..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/explosion_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7add93c9141eb3849b1a3b7926e81201 -timeCreated: 1446672978 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Item Boxes - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/item_boxes.png.meta b/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/item_boxes.png.meta deleted file mode 100644 index ac8d2f7..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Item Boxes/Sprites/item_boxes.png.meta +++ /dev/null @@ -1,441 +0,0 @@ -fileFormatVersion: 2 -guid: 5b189e98aff2ed04facbb5276cda553e -timeCreated: 1449386664 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: s1_itembox_01 - 21300002: s1_itembox_02 - 21300004: s1_static_01 - 21300006: s1_static_02 - 21300008: s1_static_03 - 21300010: s1_itembox_ring - 21300012: s1_itembox_invincible - 21300014: s1_itembox_shield - 21300016: s1_itembox_speed - 21300018: s2_itembox_01 - 21300020: s2_itembox_02 - 21300022: s2_static_01 - 21300024: s2_static_02 - 21300026: s2_itembox_sonic - 21300028: s2_itembox_swap - 21300030: s2_itembox_robotnik - 21300032: s2_itembox_speed - 21300034: s2_itembox_ring - 21300036: s2_itembox_invincible - 21300038: s2_itembox_shield - 21300040: s3k_itembox_01 - 21300042: s3k_itembox_02 - 21300044: s3k_static_01 - 21300046: s3k_static_02 - 21300048: s3k_itembox_speed - 21300050: s3k_itembox_ring - 21300052: s3k_itembox_bubble - 21300054: s3k_itembox_invincible - 21300056: s3k_itembox_sonic - 21300058: s3k_itembox_tails - 21300060: s3k_itembox_knuckles - 21300062: s3k_itembox_super - 21300064: s3k_itembox_electric - 21300066: s3k_itembox_fire - 21300068: s3k_itembox_robotnik - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: s1_itembox_01 - rect: - serializedVersion: 2 - x: 0 - y: 224 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_itembox_02 - rect: - serializedVersion: 2 - x: 33 - y: 224 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_static_01 - rect: - serializedVersion: 2 - x: 66 - y: 240 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_static_02 - rect: - serializedVersion: 2 - x: 83 - y: 240 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_static_03 - rect: - serializedVersion: 2 - x: 100 - y: 240 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_itembox_ring - rect: - serializedVersion: 2 - x: 0 - y: 207 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_itembox_invincible - rect: - serializedVersion: 2 - x: 17 - y: 207 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_itembox_shield - rect: - serializedVersion: 2 - x: 34 - y: 207 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s1_itembox_speed - rect: - serializedVersion: 2 - x: 51 - y: 207 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_01 - rect: - serializedVersion: 2 - x: 0 - y: 174 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_02 - rect: - serializedVersion: 2 - x: 33 - y: 174 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_static_01 - rect: - serializedVersion: 2 - x: 66 - y: 190 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_static_02 - rect: - serializedVersion: 2 - x: 83 - y: 190 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_sonic - rect: - serializedVersion: 2 - x: 0 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_swap - rect: - serializedVersion: 2 - x: 17 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_robotnik - rect: - serializedVersion: 2 - x: 34 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_speed - rect: - serializedVersion: 2 - x: 51 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_ring - rect: - serializedVersion: 2 - x: 68 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_invincible - rect: - serializedVersion: 2 - x: 85 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s2_itembox_shield - rect: - serializedVersion: 2 - x: 102 - y: 157 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_01 - rect: - serializedVersion: 2 - x: 0 - y: 124 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_02 - rect: - serializedVersion: 2 - x: 33 - y: 124 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_static_01 - rect: - serializedVersion: 2 - x: 66 - y: 140 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_static_02 - rect: - serializedVersion: 2 - x: 83 - y: 140 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_speed - rect: - serializedVersion: 2 - x: 0 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_ring - rect: - serializedVersion: 2 - x: 17 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_bubble - rect: - serializedVersion: 2 - x: 34 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_invincible - rect: - serializedVersion: 2 - x: 51 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_sonic - rect: - serializedVersion: 2 - x: 68 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_tails - rect: - serializedVersion: 2 - x: 85 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_knuckles - rect: - serializedVersion: 2 - x: 102 - y: 107 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_super - rect: - serializedVersion: 2 - x: 0 - y: 90 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_electric - rect: - serializedVersion: 2 - x: 17 - y: 90 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_fire - rect: - serializedVersion: 2 - x: 34 - y: 90 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: s3k_itembox_robotnik - rect: - serializedVersion: 2 - x: 51 - y: 90 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Item Boxes - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups.meta b/Assets/Sonic 16-bit/Common Objects/Powerups.meta deleted file mode 100644 index eefbddb..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f6b1b498b8296764f99177215aa4c220 -folderAsset: yes -timeCreated: 1456546032 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield.meta deleted file mode 100644 index 6a294f2..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 59088b87e9c845b419c22a6bc9e3ab8a -folderAsset: yes -timeCreated: 1449311344 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield.prefab.meta deleted file mode 100644 index 1260702..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fe6f7d79d5dc65144982da1f0095baa6 -timeCreated: 1449311428 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.anim.meta deleted file mode 100644 index ec4212a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0958086d96c359048b31dae77f30507f -timeCreated: 1449311450 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.controller.meta deleted file mode 100644 index 86bf90d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: dd347780cc5fee5479bb76444f2f9094 -timeCreated: 1449311450 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.png.meta deleted file mode 100644 index dffcfb8..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S1 Shield/S1 Shield.png.meta +++ /dev/null @@ -1,115 +0,0 @@ -fileFormatVersion: 2 -guid: 2a9b2b5a1a8b4644ca3efdbec6501ca8 -timeCreated: 1449311399 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: s1_shield_01 - 21300002: s1_shield_02 - 21300004: s1_shield_03 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: s1_shield_01 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 46 - height: 42 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -21, y: 21} - - {x: -23, y: 15} - - {x: -23, y: -16} - - {x: -16, y: -21} - - {x: 18, y: -21} - - {x: 23, y: -19} - - {x: 23, y: 21} - - name: s1_shield_02 - rect: - serializedVersion: 2 - x: 52 - y: 0 - width: 46 - height: 42 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -15, y: 21} - - {x: -23, y: 13} - - {x: -23, y: -11} - - {x: -18, y: -21} - - {x: 20, y: -21} - - {x: 23, y: -15} - - {x: 23, y: 18} - - {x: 19, y: 21} - - name: s1_shield_03 - rect: - serializedVersion: 2 - x: 105 - y: 0 - width: 46 - height: 42 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -21, y: 21} - - {x: -23, y: 14} - - {x: -23, y: -20} - - {x: -22, y: -21} - - {x: 17, y: -21} - - {x: 23, y: -19} - - {x: 23, y: 21} - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility.meta deleted file mode 100644 index 8123d3e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4a2c8058a49df144fa223a64bde6a7de -folderAsset: yes -timeCreated: 1456797769 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility.prefab.meta deleted file mode 100644 index f947124..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d430de69b75b4074d88a990f049ff01d -timeCreated: 1456800675 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Invincibility Sparkle 2.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Invincibility Sparkle 2.prefab.meta deleted file mode 100644 index e837f51..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Invincibility Sparkle 2.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3259b68b87ad8d54b9bc3179fc49af45 -timeCreated: 1456803758 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Invincibility Sparkle.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Invincibility Sparkle.prefab.meta deleted file mode 100644 index a1d91e8..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Invincibility Sparkle.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 61da00828aefa27458b93b1226edd210 -timeCreated: 1456799315 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/S2 Invincibility Sparkle.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/S2 Invincibility Sparkle.controller.meta deleted file mode 100644 index e09f7c0..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/S2 Invincibility Sparkle.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ee3d6b23e1c2c884385f82ae0ebe18cc -timeCreated: 1456798068 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Sparkle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Sparkle.anim.meta deleted file mode 100644 index beb1828..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/Sparkle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 42cb3178f27d58849ae3be31819282ed -timeCreated: 1456798077 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/s2_invincibility.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/s2_invincibility.png.meta deleted file mode 100644 index 40208b7..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Invincibility/s2_invincibility.png.meta +++ /dev/null @@ -1,689 +0,0 @@ -fileFormatVersion: 2 -guid: e5f7fe27633648c4096aab57c4ac2ce5 -timeCreated: 1456797983 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: s2_invincibility_0 - 21300002: s2_invincibility_1 - 21300004: s2_invincibility_2 - 21300006: s2_invincibility_3 - 21300008: s2_invincibility_4 - 21300010: s2_invincibility_5 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: s2_invincibility_0 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 32 - height: 32 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - name: s2_invincibility_1 - rect: - serializedVersion: 2 - x: 33 - y: 16 - width: 16 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - name: s2_invincibility_2 - rect: - serializedVersion: 2 - x: 50 - y: 22 - width: 10 - height: 10 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - name: s2_invincibility_3 - rect: - serializedVersion: 2 - x: 61 - y: 24 - width: 8 - height: 8 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - name: s2_invincibility_4 - rect: - serializedVersion: 2 - x: 70 - y: 26 - width: 6 - height: 6 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - name: s2_invincibility_5 - rect: - serializedVersion: 2 - x: 77 - y: 28 - width: 4 - height: 4 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - - - {x: -16, y: -2} - - {x: -9, y: -6} - - {x: -6, y: -15} - - {x: 9, y: -15} - - {x: 16, y: -10} - - {x: 16, y: 9} - - {x: 11, y: 14} - - {x: 4, y: 16} - - {x: -6, y: 16} - - {x: -16, y: 4} - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield.meta deleted file mode 100644 index 011c8cd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 936fe9d8aa1ab13448655e13f208f831 -folderAsset: yes -timeCreated: 1449309942 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield.prefab.meta deleted file mode 100644 index 4153e23..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8b5a31eacc526624a8c304361d879aff -timeCreated: 1449310362 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/Idle.anim.meta deleted file mode 100644 index dbfb190..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8dc88d93b14958a43b71a6b2f52b60c2 -timeCreated: 1449310261 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/S2 Shield.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/S2 Shield.controller.meta deleted file mode 100644 index af03260..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/S2 Shield.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8591888457ea48047a1a1051cf1c76fe -timeCreated: 1449310204 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/S2 Shield.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/S2 Shield.png.meta deleted file mode 100644 index 07d12dd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/S2 Shield.png.meta +++ /dev/null @@ -1,122 +0,0 @@ -fileFormatVersion: 2 -guid: 4723ccf65865cc041a58784133308a7f -timeCreated: 1449310139 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: shield_01 - 21300002: shield_02 - 21300004: shield_03 - 21300006: shield_04 - 21300008: shield_05 - 21300010: shield_06 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: shield_01 - rect: - serializedVersion: 2 - x: 0 - y: 24 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: shield_02 - rect: - serializedVersion: 2 - x: 35 - y: 24 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: shield_03 - rect: - serializedVersion: 2 - x: 70 - y: 24 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: shield_04 - rect: - serializedVersion: 2 - x: 105 - y: 24 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: shield_05 - rect: - serializedVersion: 2 - x: 140 - y: 24 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: shield_06 - rect: - serializedVersion: 2 - x: 176 - y: 16 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/shield_01.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/shield_01.controller.meta deleted file mode 100644 index 4c9f4ca..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S2 Shield/shield_01.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 37dd36e850937c8428b554bb30993ab2 -timeCreated: 1449311415 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield.meta deleted file mode 100644 index 4bf8413..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b4a8fb2d23985cf45a07c1b084c91b2b -folderAsset: yes -timeCreated: 1449279496 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield.prefab.meta deleted file mode 100644 index 668e89d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 065b1aa7f8001364ca9c2e90f2a7cb2e -timeCreated: 1449281671 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Bounce.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Bounce.anim.meta deleted file mode 100644 index fed2f22..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Bounce.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 59d293023cc40d34abe752c1d34191bf -timeCreated: 1449367164 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Bubble Shield.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Bubble Shield.controller.meta deleted file mode 100644 index 7bd6402..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Bubble Shield.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e1da97620e785bf4fa52e2a27ca2e4ec -timeCreated: 1449279832 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Dive.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Dive.anim.meta deleted file mode 100644 index 1ed8ad2..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Dive.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bb609c46951378d4d8e6694a804a1fe4 -timeCreated: 1449280251 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Idle.anim.meta deleted file mode 100644 index d6aaf3d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e011166072a0d14459bd5c95957905b1 -timeCreated: 1449280251 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/bubble.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/bubble.png.meta deleted file mode 100644 index 98fb736..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Bubble Shield/bubble.png.meta +++ /dev/null @@ -1,199 +0,0 @@ -fileFormatVersion: 2 -guid: fa5118e6beeb47f429ef01cac7b886aa -timeCreated: 1449280740 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: bubble_01 - 21300002: bubble_02 - 21300004: bubble_03 - 21300006: bubble_04 - 21300008: bubble_05 - 21300010: bubble_06 - 21300012: bubble_07 - 21300014: bubble_08 - 21300016: bubble_09 - 21300018: bubble_10 - 21300020: bubble_11 - 21300022: bubble_12 - 21300024: bubble_13 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: bubble_01 - rect: - serializedVersion: 2 - x: 109 - y: 52 - width: 48 - height: 46 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_02 - rect: - serializedVersion: 2 - x: 161 - y: 51 - width: 46 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_03 - rect: - serializedVersion: 2 - x: 211 - y: 55 - width: 56 - height: 39 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_04 - rect: - serializedVersion: 2 - x: 270 - y: 58 - width: 72 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_05 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_06 - rect: - serializedVersion: 2 - x: 51 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_07 - rect: - serializedVersion: 2 - x: 102 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_08 - rect: - serializedVersion: 2 - x: 153 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_09 - rect: - serializedVersion: 2 - x: 204 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_10 - rect: - serializedVersion: 2 - x: 255 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_11 - rect: - serializedVersion: 2 - x: 306 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_12 - rect: - serializedVersion: 2 - x: 357 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: bubble_13 - rect: - serializedVersion: 2 - x: 408 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: S3K Shields - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield.meta deleted file mode 100644 index 19a1363..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f7bbdd37f6a8e634ab69ca1826961735 -folderAsset: yes -timeCreated: 1449290147 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield.prefab.meta deleted file mode 100644 index 098a473..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ddbcc8090d033c846a7e7b0d251407dc -timeCreated: 1449290520 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Disperse.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Disperse.anim.meta deleted file mode 100644 index a3f2492..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Disperse.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 13bf4832eb843db4db308e5ff253f3cf -timeCreated: 1456814103 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Spark.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Spark.controller.meta deleted file mode 100644 index 5fc3b7e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Spark.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 75f3fba90f07e874d9e8e35494fced3c -timeCreated: 1456813859 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Spark.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Spark.prefab.meta deleted file mode 100644 index fbe531c..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Spark.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 78ccfbe23a81584489fb8a81013494f5 -timeCreated: 1456813935 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Sparks.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Sparks.controller.meta deleted file mode 100644 index 163ab0e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Sparks.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a2741f4d6a75d35479f2c4d7d5c365b7 -timeCreated: 1456814098 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Sparks.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Sparks.prefab.meta deleted file mode 100644 index 46d7291..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield Sparks.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 68c70b2f4c6b5ad4abed5f45e443fd64 -timeCreated: 1456814389 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield.controller.meta deleted file mode 100644 index 73d0cd4..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Electric Shield.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c6e2898b0d605a24e9b5f09a9dfd51ae -timeCreated: 1449290469 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Emit Sparks.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Emit Sparks.anim.meta deleted file mode 100644 index 83e0ccd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Emit Sparks.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cb5208a90d3c8eb4ba30d9ced0e07ad9 -timeCreated: 1456814581 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Idle.anim.meta deleted file mode 100644 index 95ece0b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: df934acb1c54eb64da70cf52932204c6 -timeCreated: 1449290566 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/S3K Electric Shield.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/S3K Electric Shield.png.meta deleted file mode 100644 index f16641b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/S3K Electric Shield.png.meta +++ /dev/null @@ -1,210 +0,0 @@ -fileFormatVersion: 2 -guid: 5907a441494e16148ab48e7980c7a575 -timeCreated: 1449290357 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: electric_01 - 21300002: electric_02 - 21300004: electric_03 - 21300006: electric_04 - 21300008: electric_05 - 21300010: electric_06 - 21300012: electric_07 - 21300014: electric_08 - 21300016: electric_09 - 21300018: electric_10 - 21300020: electric_11 - 21300022: electric_12 - 21300024: electric_spark_02 - 21300026: electric_spark_01 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: electric_01 - rect: - serializedVersion: 2 - x: 153 - y: 71 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_02 - rect: - serializedVersion: 2 - x: 204 - y: 71 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_03 - rect: - serializedVersion: 2 - x: 255 - y: 71 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_04 - rect: - serializedVersion: 2 - x: 0 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_05 - rect: - serializedVersion: 2 - x: 51 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_06 - rect: - serializedVersion: 2 - x: 102 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_07 - rect: - serializedVersion: 2 - x: 153 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_08 - rect: - serializedVersion: 2 - x: 204 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_09 - rect: - serializedVersion: 2 - x: 255 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_10 - rect: - serializedVersion: 2 - x: 306 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_11 - rect: - serializedVersion: 2 - x: 357 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_12 - rect: - serializedVersion: 2 - x: 408 - y: 20 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_spark_02 - rect: - serializedVersion: 2 - x: 228 - y: 0 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: electric_spark_01 - rect: - serializedVersion: 2 - x: 217 - y: 4 - width: 8 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: S3K Shields - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Sparkle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Sparkle.anim.meta deleted file mode 100644 index 7d2b6a5..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/Sparkle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 991c9ad0fdfcac94a990856d221d9d68 -timeCreated: 1456813864 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/electric_shield_spark.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/electric_shield_spark.png.meta deleted file mode 100644 index fbf758c..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Electric Shield/electric_shield_spark.png.meta +++ /dev/null @@ -1,81 +0,0 @@ -fileFormatVersion: 2 -guid: 5a35ad3582ad1524aaecc8dc0708ef73 -timeCreated: 1456813373 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: electric_shield_spark_0 - 21300002: electric_shield_spark_1 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: electric_shield_spark_0 - rect: - serializedVersion: 2 - x: 0 - y: 10 - width: 6 - height: 6 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: electric_shield_spark_1 - rect: - serializedVersion: 2 - x: 7 - y: 0 - width: 16 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield.meta deleted file mode 100644 index 64406cc..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 52b8bf2b88cdea34f80f744758fe4160 -folderAsset: yes -timeCreated: 1449291952 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield.prefab.meta deleted file mode 100644 index 8149e6a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f3f409b52bec69f4db6dc255b12d22dc -timeCreated: 1449292293 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Activate.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Activate.anim.meta deleted file mode 100644 index ba3618e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Activate.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7e10e4812a3f18344a71be191c7be2de -timeCreated: 1449296634 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Flame Shield.controller.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Flame Shield.controller.meta deleted file mode 100644 index e310e16..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Flame Shield.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1321fbdc337510d46b8140a5c87983ce -timeCreated: 1449292274 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Idle.anim.meta deleted file mode 100644 index 858b6bd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6a55dfa84fb9e1546b9d72ead17d1f3a -timeCreated: 1449292321 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/S3K Flame Shield.png.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/S3K Flame Shield.png.meta deleted file mode 100644 index 4efc6ac..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/S3K Flame Shield/S3K Flame Shield.png.meta +++ /dev/null @@ -1,298 +0,0 @@ -fileFormatVersion: 2 -guid: 5582af61ee3147e4b91ea92f88f46226 -timeCreated: 1449292223 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: flame_01 - 21300002: flame_02 - 21300004: flame_03 - 21300006: flame_04 - 21300008: flame_05 - 21300010: flame_06 - 21300012: flame_07 - 21300014: flame_08 - 21300016: flame_09 - 21300018: flame_10 - 21300020: flame_11 - 21300022: flame_12 - 21300024: flame_13 - 21300026: flame_14 - 21300028: flame_15 - 21300030: flame_16 - 21300032: flame_17 - 21300034: flame_18 - 21300036: flame_19 - 21300038: flame_20 - 21300040: flame_21 - 21300042: flame_22 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: flame_01 - rect: - serializedVersion: 2 - x: 0 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_02 - rect: - serializedVersion: 2 - x: 51 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_03 - rect: - serializedVersion: 2 - x: 102 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_04 - rect: - serializedVersion: 2 - x: 153 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_05 - rect: - serializedVersion: 2 - x: 204 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_06 - rect: - serializedVersion: 2 - x: 255 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_07 - rect: - serializedVersion: 2 - x: 306 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_08 - rect: - serializedVersion: 2 - x: 357 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_09 - rect: - serializedVersion: 2 - x: 408 - y: 51 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_10 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_11 - rect: - serializedVersion: 2 - x: 51 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_12 - rect: - serializedVersion: 2 - x: 102 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_13 - rect: - serializedVersion: 2 - x: 153 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_14 - rect: - serializedVersion: 2 - x: 204 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_15 - rect: - serializedVersion: 2 - x: 255 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_16 - rect: - serializedVersion: 2 - x: 306 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_17 - rect: - serializedVersion: 2 - x: 357 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_18 - rect: - serializedVersion: 2 - x: 408 - y: 0 - width: 48 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_19 - rect: - serializedVersion: 2 - x: 103 - y: 118 - width: 44 - height: 44 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_20 - rect: - serializedVersion: 2 - x: 150 - y: 117 - width: 48 - height: 46 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_21 - rect: - serializedVersion: 2 - x: 201 - y: 121 - width: 56 - height: 38 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: flame_22 - rect: - serializedVersion: 2 - x: 260 - y: 116 - width: 64 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Powerups/Speed Shoes.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Powerups/Speed Shoes.prefab.meta deleted file mode 100644 index a70d067..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Powerups/Speed Shoes.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 119a334513a9b9e46a4f20c70161a0fc -timeCreated: 1456547419 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings.meta b/Assets/Sonic 16-bit/Common Objects/Rings.meta deleted file mode 100644 index f30308f..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 780f1dbe4e5393a4997919e8c5880cc3 -folderAsset: yes -timeCreated: 1447661275 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Animations.meta deleted file mode 100644 index c6f7d10..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 03b1c56f51eb427418e1bdea687b69ac -folderAsset: yes -timeCreated: 1448753758 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Get.anim.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Get.anim.meta deleted file mode 100644 index 5cc77b6..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Get.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: de7026138ab5be44cbd20befaf79aa86 -timeCreated: 1448753846 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Idle.anim.meta deleted file mode 100644 index 14e3939..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a401def016061ff4987c872e8e248fb4 -timeCreated: 1448753763 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Ring Get.controller.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Ring Get.controller.meta deleted file mode 100644 index ad4a42e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Ring Get.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ba05aa07d45f0b49a82ae96e4452568 -timeCreated: 1449609717 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Ring.controller.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Ring.controller.meta deleted file mode 100644 index d28c079..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Ring.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9f61dda6e2d2aae48b2b6b1a12f29c8d -timeCreated: 1448753768 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Sparkle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Sparkle.anim.meta deleted file mode 100644 index a2617f5..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Animations/Sparkle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0c506fe53ec5fba45a4e829bc345d47f -timeCreated: 1449609781 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Magnetized Ring.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Magnetized Ring.prefab.meta deleted file mode 100644 index 09b957a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Magnetized Ring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a725f20bf2cf33b47900d27680f85941 -timeCreated: 1449609973 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Ring Get.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Ring Get.prefab.meta deleted file mode 100644 index b801792..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Ring Get.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9788688daef37574987042af43d5cf75 -timeCreated: 1449609946 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Ring.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Ring.prefab.meta deleted file mode 100644 index 7fc86e3..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Ring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8bdd4e2785f00eb459aed4f82fb5b0d4 -timeCreated: 1448756669 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Spilled Ring.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Spilled Ring.prefab.meta deleted file mode 100644 index 758a3ab..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Spilled Ring.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2e2263e18fc063342b7f046e500c1bf9 -timeCreated: 1449027816 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites.meta deleted file mode 100644 index f0494e1..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 36f289b3843d2f243aba59d7116fecf9 -folderAsset: yes -timeCreated: 1447935631 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_01.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_01.png.meta deleted file mode 100644 index 75e39c8..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7d5b28db05aafe74883519accb692293 -timeCreated: 1447935632 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_02.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_02.png.meta deleted file mode 100644 index 228d1fd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 66f9dd0ff12b01f43bc744f958db0865 -timeCreated: 1447935632 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_03.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_03.png.meta deleted file mode 100644 index 178a6fd..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: cfce1c9997590c24c893b484ed872c04 -timeCreated: 1447935633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_04.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_04.png.meta deleted file mode 100644 index b8cabe2..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: aba02070023a625448bf6cd7e4c19d88 -timeCreated: 1447935633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_01.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_01.png.meta deleted file mode 100644 index 0b2ebc1..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3dae0f5f6f8f7144ba27c3079bca7aff -timeCreated: 1447935632 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_02.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_02.png.meta deleted file mode 100644 index c6e8e31..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d7dbb6c7faccf124d8fef767b63167e8 -timeCreated: 1447935633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_03.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_03.png.meta deleted file mode 100644 index 5f877b3..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: fc81982ad60695c4490180b81c551f1d -timeCreated: 1447935634 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_04.png.meta b/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_04.png.meta deleted file mode 100644 index 259b813..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Rings/Sprites/ring_get_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 57b4c3c6b7049124aa1719a344ef2b66 -timeCreated: 1447935632 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts.meta b/Assets/Sonic 16-bit/Common Objects/Signposts.meta deleted file mode 100644 index aa50917..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: be2c63b97e97ecc4dbdd92c2d48ed2ce -folderAsset: yes -timeCreated: 1452938438 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Animations.meta deleted file mode 100644 index 7f710b3..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 12cfc49a17e34a74595a180a24035d38 -folderAsset: yes -timeCreated: 1452939013 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Idle.anim.meta deleted file mode 100644 index 2b24a53..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 090ccb2c43ad30346821cd42458e5251 -timeCreated: 1452939079 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Signpost.controller.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Signpost.controller.meta deleted file mode 100644 index 5179224..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Signpost.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: af02559dfd7f633418a2edda82b5a0ca -timeCreated: 1452939019 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Spin.anim.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Spin.anim.meta deleted file mode 100644 index ca16510..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Animations/Spin.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b6b4659826a43e6418b40a5445ff0c0d -timeCreated: 1452939215 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Signpost.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Signpost.prefab.meta deleted file mode 100644 index 9a15346..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Signpost.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6f6c0da5756ea93449f950343268cae2 -timeCreated: 1452941260 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Sprites.meta deleted file mode 100644 index a67202f..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4a06b759b23db4e45b0f5eb49cf3c3cb -folderAsset: yes -timeCreated: 1452938439 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Signposts/Sprites/signposts.png.meta b/Assets/Sonic 16-bit/Common Objects/Signposts/Sprites/signposts.png.meta deleted file mode 100644 index feab094..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Signposts/Sprites/signposts.png.meta +++ /dev/null @@ -1,176 +0,0 @@ -fileFormatVersion: 2 -guid: dc0c0bbd0761bbd4285a58b1d19f1271 -timeCreated: 1452938584 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: signpost_eggman - 21300002: signpost_spin_01 - 21300004: signpost_spin_02 - 21300006: signpost_spin_03 - 21300008: signpost_tails - 21300010: signpost_sonic - 21300012: signpost_knuckles - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: signpost_eggman - rect: - serializedVersion: 2 - x: 3 - y: 115 - width: 48 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -24, y: 24} - - {x: -24, y: -15} - - {x: -17, y: -24} - - {x: 18, y: -24} - - {x: 24, y: -21} - - {x: 24, y: 24} - - name: signpost_spin_01 - rect: - serializedVersion: 2 - x: 55 - y: 115 - width: 32 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: 24} - - {x: -16, y: -18} - - {x: -6, y: -24} - - {x: 12, y: -24} - - {x: 16, y: -16} - - {x: 16, y: 24} - - name: signpost_spin_02 - rect: - serializedVersion: 2 - x: 94 - y: 115 - width: 8 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: signpost_spin_03 - rect: - serializedVersion: 2 - x: 112 - y: 115 - width: 32 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -16, y: 24} - - {x: -16, y: -18} - - {x: -6, y: -24} - - {x: 12, y: -24} - - {x: 16, y: -16} - - {x: 16, y: 24} - - name: signpost_tails - rect: - serializedVersion: 2 - x: 149 - y: 115 - width: 48 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -24, y: 24} - - {x: -24, y: -15} - - {x: -17, y: -24} - - {x: 18, y: -24} - - {x: 24, y: -21} - - {x: 24, y: 24} - - name: signpost_sonic - rect: - serializedVersion: 2 - x: 295 - y: 115 - width: 48 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -24, y: 24} - - {x: -24, y: -15} - - {x: -17, y: -24} - - {x: 18, y: -24} - - {x: 24, y: -21} - - {x: 24, y: 24} - - name: signpost_knuckles - rect: - serializedVersion: 2 - x: 295 - y: 60 - width: 48 - height: 48 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -24, y: 24} - - {x: -24, y: -19} - - {x: -19, y: -24} - - {x: 24, y: -24} - - {x: 24, y: 24} - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Spikes.meta b/Assets/Sonic 16-bit/Common Objects/Spikes.meta deleted file mode 100644 index 34a6d1f..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Spikes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b81ce2306bc66c34993d45df60511c60 -folderAsset: yes -timeCreated: 1449371000 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Spikes/S1 Spikes.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Spikes/S1 Spikes.prefab.meta deleted file mode 100644 index ffd2c08..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Spikes/S1 Spikes.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 247aeae6325919b40ae7024b5a4f1c79 -timeCreated: 1449376883 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Spikes/S2 Spikes.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Spikes/S2 Spikes.prefab.meta deleted file mode 100644 index d628149..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Spikes/S2 Spikes.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f5ac11cc6e804e649b2673a0cff549ed -timeCreated: 1449376884 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Spikes/S3K Spikes.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Spikes/S3K Spikes.prefab.meta deleted file mode 100644 index a76827e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Spikes/S3K Spikes.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 75482f7b53610014d9e6662d2f7eecbd -timeCreated: 1449376880 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Spikes/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Spikes/Sprites.meta deleted file mode 100644 index 2b91f8a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Spikes/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b977e2a2f3476d043b79a65095785c7e -folderAsset: yes -timeCreated: 1449376889 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Spikes/Sprites/spikes.png.meta b/Assets/Sonic 16-bit/Common Objects/Spikes/Sprites/spikes.png.meta deleted file mode 100644 index a2d7ccb..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Spikes/Sprites/spikes.png.meta +++ /dev/null @@ -1,89 +0,0 @@ -fileFormatVersion: 2 -guid: 5728483a6f5b2b84eb83f10670b11159 -timeCreated: 1449371083 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: spikes_s3k - 21300002: spikes_s1 - 21300004: spikes_s2 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: spikes_s3k - rect: - serializedVersion: 2 - x: 0 - y: 96 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: spikes_s1 - rect: - serializedVersion: 2 - x: 33 - y: 96 - width: 40 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: spikes_s2 - rect: - serializedVersion: 2 - x: 74 - y: 96 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springboard.meta b/Assets/Sonic 16-bit/Common Objects/Springboard.meta deleted file mode 100644 index 1a7452a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springboard.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: fe71594f071bc344f9445738b193f3ee -folderAsset: yes -timeCreated: 1447959878 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites.meta deleted file mode 100644 index 64c7862..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c9c4995573dc4ce418e24059bddfd3c5 -folderAsset: yes -timeCreated: 1447959885 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites/springboard_01.png.meta b/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites/springboard_01.png.meta deleted file mode 100644 index bb88c35..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites/springboard_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: cfd3478975f50d641917eb07e1c071f7 -timeCreated: 1447959720 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites/springboard_02.png.meta b/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites/springboard_02.png.meta deleted file mode 100644 index 259304b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springboard/Sprites/springboard_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: adae5e73da2f73a4a9777b1ae367752d -timeCreated: 1447959720 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs.meta b/Assets/Sonic 16-bit/Common Objects/Springs.meta deleted file mode 100644 index a17c13d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 98bc9d453cf63e44ca3b11c09edcc77a -folderAsset: yes -timeCreated: 1446842395 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap.meta deleted file mode 100644 index 4a904e4..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 044edced0e75b2847a298e23767d1556 -folderAsset: yes -timeCreated: 1446864197 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap.prefab.meta deleted file mode 100644 index b2358ad..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9691536508124f943858fae67f6e0626 -timeCreated: 1446870028 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations.meta deleted file mode 100644 index 0bee4d0..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 386714d7081dfc741bcbf1f68f796aa2 -folderAsset: yes -timeCreated: 1446864276 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Idle.anim.meta deleted file mode 100644 index fa9dd97..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0e15b3856f72d974081d5081ca69e8d7 -timeCreated: 1446864398 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Pipe Exit.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Pipe Exit.anim.meta deleted file mode 100644 index 261f518..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Pipe Exit.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2087153702c661645ab805701ff4eb71 -timeCreated: 1446864725 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Spring Cap.controller.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Spring Cap.controller.meta deleted file mode 100644 index 477c5f1..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Spring Cap.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bb67b883b20f74045ab8a78f0cbd515f -timeCreated: 1446864663 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Triggered.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Triggered.anim.meta deleted file mode 100644 index 8e13f8b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Animations/Triggered.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5d87f4f4c41b5a04ba97a82cdec27ab7 -timeCreated: 1446864739 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites.meta deleted file mode 100644 index 5381f05..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 392b327b883bf454089b923eb477e190 -folderAsset: yes -timeCreated: 1446864201 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_01.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_01.png.meta deleted file mode 100644 index 6611fb5..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1d1f796cb0367474798cc4b9a31ba4bb -timeCreated: 1446864252 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_02.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_02.png.meta deleted file mode 100644 index a012dd6..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f738f7706b19d1c4f9d1c00ae14c75ca -timeCreated: 1446864253 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_03.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_03.png.meta deleted file mode 100644 index b6614b7..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 947ffc5e864eadc498803f3fce549d0f -timeCreated: 1446864253 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_04.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_04.png.meta deleted file mode 100644 index de0d5f5..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/CNZ Spring Cap/Sprites/spring_cap_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1e198be30a48fb74fa730b5888ccd833 -timeCreated: 1446865957 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red Side.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red Side.prefab.meta deleted file mode 100644 index 22d951b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red Side.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3629e9a09a8c3054fa0e89746ad3769d -timeCreated: 1446536062 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red Top.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red Top.prefab.meta deleted file mode 100644 index c89024d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red Top.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b69f8d8319b06394f896b442493422b3 -timeCreated: 1446535933 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red.meta deleted file mode 100644 index 72b36cb..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 51399560a97978b4dbea68afd5cc65d3 -folderAsset: yes -timeCreated: 1446518236 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations.meta deleted file mode 100644 index 7e092ad..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 81a66e1351127234c9b1bdca6ea6b4bc -folderAsset: yes -timeCreated: 1446533262 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Idle.anim.meta deleted file mode 100644 index 438be8b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9a75b8eb20f694d47859c0789bf398a3 -timeCreated: 1446533279 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Red Spring.controller.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Red Spring.controller.meta deleted file mode 100644 index 10febe4..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Red Spring.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9da17e735bd46dc478b1436ba4f99e68 -timeCreated: 1446533269 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Triggered.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Triggered.anim.meta deleted file mode 100644 index abece7b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Animations/Triggered.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c5aafb58b093bc143a9405c2fb613fa6 -timeCreated: 1446533286 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites.meta deleted file mode 100644 index 9f46060..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 802634df0fa0a5142afbc2cb2009b0a5 -folderAsset: yes -timeCreated: 1446518244 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites/spring_red_closed.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites/spring_red_closed.png.meta deleted file mode 100644 index d78a91c..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites/spring_red_closed.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 22c71e08e22c2fa4aae8a3ac56f644f8 -timeCreated: 1446516744 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites/spring_red_open.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites/spring_red_open.png.meta deleted file mode 100644 index 6168b5e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Red/Sprites/spring_red_open.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 74f34a68bb0944a4aa34764f8599b965 -timeCreated: 1446516744 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow Side.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow Side.prefab.meta deleted file mode 100644 index 4159b77..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow Side.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 62467b234356730449bfac708941980a -timeCreated: 1446519463 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow Top.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow Top.prefab.meta deleted file mode 100644 index 0ed09cc..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow Top.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bfc729fad5e17234292ca9c41268782d -timeCreated: 1446519238 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow.meta deleted file mode 100644 index 490609b..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 101ef1f1864dc474d9ea4830d3b9e4d6 -folderAsset: yes -timeCreated: 1446517904 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations.meta deleted file mode 100644 index d1fe02e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6eeccd853921550449f93a0c2ff13789 -folderAsset: yes -timeCreated: 1446518258 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Idle.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Idle.anim.meta deleted file mode 100644 index 553bf24..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7bc338642f47c5848a50675e1a901a32 -timeCreated: 1446518282 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Triggered.anim.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Triggered.anim.meta deleted file mode 100644 index a8e3b4a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Triggered.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1f583912f7de4fe4ca10af8ec68050a0 -timeCreated: 1446518288 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Yellow Spring.controller.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Yellow Spring.controller.meta deleted file mode 100644 index 1f55207..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Animations/Yellow Spring.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 158f28cdf4de5b345a6ec241d20fc145 -timeCreated: 1446518269 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites.meta deleted file mode 100644 index 9742a89..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 74728369ff7254540b9f3afd56211ad1 -folderAsset: yes -timeCreated: 1446516299 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites/spring_yellow_closed.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites/spring_yellow_closed.png.meta deleted file mode 100644 index 9ab1eb0..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites/spring_yellow_closed.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e1931af8dabe5034ea3b3459c10cb63c -timeCreated: 1446516744 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites/spring_yellow_open.png.meta b/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites/spring_yellow_open.png.meta deleted file mode 100644 index a5c125e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Springs/S2 Yellow/Sprites/spring_yellow_open.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6873ce7dde856ca438177c32b81b2498 -timeCreated: 1446519046 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 9 - spritePivot: {x: .5, y: .25} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water.meta b/Assets/Sonic 16-bit/Common Objects/Water.meta deleted file mode 100644 index f93a0ea..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 11468c8033aae75459b14f456ed9f6e1 -folderAsset: yes -timeCreated: 1449755329 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Animations.meta b/Assets/Sonic 16-bit/Common Objects/Water/Animations.meta deleted file mode 100644 index 10c331d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 80d563d5831aaa148bf9aacaa5cb6321 -folderAsset: yes -timeCreated: 1449755347 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Animations/Electrocute.anim.meta b/Assets/Sonic 16-bit/Common Objects/Water/Animations/Electrocute.anim.meta deleted file mode 100644 index 2b5d5f4..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Animations/Electrocute.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 17a9b229f3eed144fbf95f526ea003c2 -timeCreated: 1449755373 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Animations/Water.controller.meta b/Assets/Sonic 16-bit/Common Objects/Water/Animations/Water.controller.meta deleted file mode 100644 index 7257a78..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Animations/Water.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 40d91c52410c8bc4386c9eb3ef14844f -timeCreated: 1449755367 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Effects.meta b/Assets/Sonic 16-bit/Common Objects/Water/Effects.meta deleted file mode 100644 index eb9f7db..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Effects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 52f389a7efc6dab48bc4e264932220f2 -folderAsset: yes -timeCreated: 1457094823 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Foam.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Water/Effects/Foam.prefab.meta deleted file mode 100644 index f77d89a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Foam.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 268f0e46ec7660e4c8b3348b07de6800 -timeCreated: 1457091643 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Medium Bubble.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Water/Effects/Medium Bubble.prefab.meta deleted file mode 100644 index 2165320..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Medium Bubble.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 790a67c7085d2dc429b01809340585b0 -timeCreated: 1457059089 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Small Bubble.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Water/Effects/Small Bubble.prefab.meta deleted file mode 100644 index 28ed46a..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Small Bubble.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4b283249ce406a643b1a6d4e96ec92fa -timeCreated: 1457041677 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Water Run Trail.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Water/Effects/Water Run Trail.prefab.meta deleted file mode 100644 index 9c66334..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Water Run Trail.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 096c8eed5e67d4840a84637a7351172b -timeCreated: 1457096195 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Water Splash.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Water/Effects/Water Splash.prefab.meta deleted file mode 100644 index d381971..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Effects/Water Splash.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4f0b1e6678ac9e447bb01b985e0ea522 -timeCreated: 1457062236 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Sprites.meta b/Assets/Sonic 16-bit/Common Objects/Water/Sprites.meta deleted file mode 100644 index 73b447e..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2c04befadc89a4f428e3d0e605162884 -folderAsset: yes -timeCreated: 1457094794 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Sprites/foam.png.meta b/Assets/Sonic 16-bit/Common Objects/Water/Sprites/foam.png.meta deleted file mode 100644 index 7d36973..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Sprites/foam.png.meta +++ /dev/null @@ -1,93 +0,0 @@ -fileFormatVersion: 2 -guid: 21e8c6b55b2dcc8469dc69fad7ab06e5 -timeCreated: 1456989955 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: foam_0 - 21300002: foam_1 - 21300004: foam_2 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: foam_0 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 32 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: foam_1 - rect: - serializedVersion: 2 - x: 33 - y: 0 - width: 32 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: foam_2 - rect: - serializedVersion: 2 - x: 66 - y: 0 - width: 32 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Sprites/s3k_water_run.png.meta b/Assets/Sonic 16-bit/Common Objects/Water/Sprites/s3k_water_run.png.meta deleted file mode 100644 index 5117e2d..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Sprites/s3k_water_run.png.meta +++ /dev/null @@ -1,117 +0,0 @@ -fileFormatVersion: 2 -guid: 87415d517e1fb95499b20f6f64aebed1 -timeCreated: 1457094774 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: s3k_water_run_0 - 21300002: s3k_water_run_1 - 21300004: s3k_water_run_2 - 21300006: s3k_water_run_3 - 21300008: s3k_water_run_4 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: s3k_water_run_0 - rect: - serializedVersion: 2 - x: 0 - y: 112 - width: 48 - height: 16 - alignment: 8 - pivot: {x: 1, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_water_run_1 - rect: - serializedVersion: 2 - x: 0 - y: 95 - width: 48 - height: 16 - alignment: 8 - pivot: {x: 1, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_water_run_2 - rect: - serializedVersion: 2 - x: 0 - y: 78 - width: 48 - height: 16 - alignment: 8 - pivot: {x: 1, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_water_run_3 - rect: - serializedVersion: 2 - x: 0 - y: 61 - width: 48 - height: 16 - alignment: 8 - pivot: {x: 1, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_water_run_4 - rect: - serializedVersion: 2 - x: 0 - y: 44 - width: 48 - height: 16 - alignment: 8 - pivot: {x: 1, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Sprites/water_splash.png.meta b/Assets/Sonic 16-bit/Common Objects/Water/Sprites/water_splash.png.meta deleted file mode 100644 index 6661099..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Sprites/water_splash.png.meta +++ /dev/null @@ -1,271 +0,0 @@ -fileFormatVersion: 2 -guid: 6f37f495dadac9244b25906e167d7d35 -timeCreated: 1457061506 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: water_splash_0 - 21300002: water_splash_1 - 21300004: water_splash_2 - 21300006: water_splash_3 - 21300008: water_splash_4 - 21300010: water_splash_5 - 21300012: water_splash_6 - 21300014: water_splash_7 - 21300016: water_splash_8 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: water_splash_0 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -7, y: 14} - - {x: -11, y: 6} - - {x: -11, y: 0} - - {x: 13, y: 0} - - {x: 13, y: 14} - - name: water_splash_1 - rect: - serializedVersion: 2 - x: 33 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -13, y: 32} - - {x: -16, y: 29} - - {x: -16, y: 0} - - {x: 14, y: 0} - - {x: 16, y: 1} - - {x: 16, y: 32} - - name: water_splash_2 - rect: - serializedVersion: 2 - x: 66 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: 11, y: 27} - - {x: 12, y: 28} - - {x: 12, y: 32} - - {x: -16, y: 32} - - {x: -16, y: 0} - - {x: 14, y: 0} - - {x: 16, y: 8} - - {x: 16, y: 29} - - {x: 14, y: 29} - - name: water_splash_3 - rect: - serializedVersion: 2 - x: 99 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: 10, y: 32} - - {x: -13, y: 32} - - {x: -16, y: 26} - - {x: -16, y: 4} - - {x: -15, y: 0} - - {x: 16, y: 0} - - {x: 15, y: 3} - - {x: 16, y: 9} - - {x: 16, y: 25} - - - {x: 12, y: 28} - - {x: 15, y: 29} - - {x: 15, y: 32} - - {x: 11, y: 32} - - {x: 10, y: 31} - - name: water_splash_4 - rect: - serializedVersion: 2 - x: 132 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -11, y: 30} - - {x: -16, y: 27} - - {x: -16, y: 0} - - {x: 16, y: 0} - - {x: 16, y: 23} - - {x: 5, y: 30} - - - {x: 11, y: 21} - - {x: 14, y: 22} - - {x: 14, y: 25} - - {x: 11, y: 26} - - {x: 9, y: 24} - - - {x: 4, y: 27} - - {x: 7, y: 28} - - {x: 7, y: 31} - - {x: 4, y: 32} - - {x: 2, y: 30} - - name: water_splash_5 - rect: - serializedVersion: 2 - x: 165 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -15, y: 21} - - {x: -16, y: 18} - - {x: -16, y: 0} - - {x: 16, y: 0} - - {x: 16, y: 10} - - {x: 6, y: 21} - - - {x: 11, y: 12} - - {x: 14, y: 13} - - {x: 14, y: 16} - - {x: 11, y: 17} - - {x: 9, y: 15} - - - {x: 2, y: 21} - - {x: 3, y: 19} - - {x: 7, y: 18} - - {x: 10, y: 19} - - {x: 10, y: 22} - - {x: 9, y: 24} - - {x: 5, y: 24} - - {x: 2, y: 23} - - name: water_splash_6 - rect: - serializedVersion: 2 - x: 198 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: 2, y: 17} - - {x: -7, y: 16} - - {x: -16, y: 4} - - {x: -16, y: 0} - - {x: 16, y: 0} - - {x: 16, y: 6} - - {x: 8, y: 17} - - - {x: -11, y: 9} - - {x: -8, y: 10} - - {x: -8, y: 13} - - {x: -11, y: 14} - - {x: -13, y: 12} - - - {x: 10, y: 9} - - {x: 13, y: 10} - - {x: 13, y: 13} - - {x: 10, y: 14} - - {x: 8, y: 12} - - name: water_splash_7 - rect: - serializedVersion: 2 - x: 231 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: 1, y: 9} - - {x: -6, y: 9} - - {x: -7, y: 7} - - {x: -6, y: 4} - - {x: -7, y: 5} - - {x: -14, y: 5} - - {x: -16, y: 3} - - {x: -16, y: 0} - - {x: 16, y: 0} - - {x: 16, y: 5} - - {x: 15, y: 7} - - name: water_splash_8 - rect: - serializedVersion: 2 - x: 264 - y: 0 - width: 32 - height: 32 - alignment: 7 - pivot: {x: 0.5, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -12, y: 4} - - {x: -13, y: 1} - - {x: -13, y: 0} - - {x: 6, y: 0} - - {x: 6, y: 4} - - - {x: 13, y: 0} - - {x: 12, y: 3} - - {x: 7, y: 3} - - {x: 6, y: 0} - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Common Objects/Water/Water.prefab.meta b/Assets/Sonic 16-bit/Common Objects/Water/Water.prefab.meta deleted file mode 100644 index d8c3694..0000000 --- a/Assets/Sonic 16-bit/Common Objects/Water/Water.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8dd6e2be69e161741bba5a8577be12fd -timeCreated: 1449755337 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects.meta b/Assets/Sonic 16-bit/Effects.meta deleted file mode 100644 index 1e6e79e..0000000 --- a/Assets/Sonic 16-bit/Effects.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6854be34eaa47d8469edc2a5bb777e76 -folderAsset: yes -timeCreated: 1449577633 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions.meta b/Assets/Sonic 16-bit/Effects/Explosions.meta deleted file mode 100644 index d266721..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8ee5dd1363a83fb4186c75a0cc9364cf -folderAsset: yes -timeCreated: 1451629976 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik Explosion.prefab.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik Explosion.prefab.meta deleted file mode 100644 index 206630c..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik Explosion.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0075a20e5e3ca3a4ba1d10d8a9d82d85 -timeCreated: 1451630662 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik.meta deleted file mode 100644 index eb0c9e6..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b493af89ee3e27d468dfbd8cad16abb9 -folderAsset: yes -timeCreated: 1451630387 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/Explode.anim.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/Explode.anim.meta deleted file mode 100644 index c98dcac..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/Explode.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1a91c54b1108a1a44bb057ccd0301d87 -timeCreated: 1451630462 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/S1 Badnik Explosion.controller.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/S1 Badnik Explosion.controller.meta deleted file mode 100644 index ed581ab..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/S1 Badnik Explosion.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: aa8d5512b02d46b4eb5b4eda16595cf2 -timeCreated: 1451630454 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_01.png.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_01.png.meta deleted file mode 100644 index bab6a25..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 23e5aeed9f1fb864abf7d20ed247e4f6 -timeCreated: 1451630387 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_02.png.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_02.png.meta deleted file mode 100644 index 09167ee..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: b57ba0061b28460419d97e9e144ac478 -timeCreated: 1451630387 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_03.png.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_03.png.meta deleted file mode 100644 index e603841..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 6c36ed03dc5d88b41a0f26755a653182 -timeCreated: 1451630387 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_04.png.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_04.png.meta deleted file mode 100644 index 4a98d25..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_04.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: e72a5959a1236b749b9eeec692d20e8c -timeCreated: 1451630388 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_05.png.meta b/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_05.png.meta deleted file mode 100644 index 44e08ae..0000000 --- a/Assets/Sonic 16-bit/Effects/Explosions/S1 Badnik/badnik_explosion_05.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: f6e9fdd8f0f40944aa8787ec2680d15d -timeCreated: 1451630388 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles.meta b/Assets/Sonic 16-bit/Effects/Particles.meta deleted file mode 100644 index 3d4c642..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 466724be1f5fbd14dae3e1e89dd80f34 -folderAsset: yes -timeCreated: 1449444240 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles.meta deleted file mode 100644 index 21b1e45..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8c9e8e2d72db5dd468089c79f94ff5f9 -folderAsset: yes -timeCreated: 1449444240 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning.meta deleted file mode 100644 index d8911a9..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 939415fcba99be04db4306bfc6fdec6e -folderAsset: yes -timeCreated: 1449445477 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.controller.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.controller.meta deleted file mode 100644 index 5938ba7..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cc4d81e07b1f9124e8832fff1b403ba2 -timeCreated: 1449445489 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.meta deleted file mode 100644 index b88c500..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 28416af0236a68d45a3554e088406d8d -folderAsset: yes -timeCreated: 1449445502 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.prefab.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.prefab.meta deleted file mode 100644 index aaca9f5..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 92607694d1dc6fb40b910150a96bc9fe -timeCreated: 1449446292 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/0.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/0.anim.meta deleted file mode 100644 index 438b8c3..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/0.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f9efc53e4da54cc479f7f12ab4511e47 -timeCreated: 1449445803 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/1.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/1.anim.meta deleted file mode 100644 index abd1ea4..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/1.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a08e812539818274ea9ad3b0b353afd3 -timeCreated: 1449445777 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/2.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/2.anim.meta deleted file mode 100644 index fc87aee..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/2.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 598decf2bab6de4499aba3eb05644292 -timeCreated: 1449445757 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/3.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/3.anim.meta deleted file mode 100644 index 6ac8e4d..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/3.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8777a889d506f9e4383a074d69a40a1d -timeCreated: 1449445740 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/4.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/4.anim.meta deleted file mode 100644 index 465c232..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/4.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f4ab13f06f9cbaa4282565ed735f155b -timeCreated: 1449445677 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/5.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/5.anim.meta deleted file mode 100644 index c7ab94e..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/Drowning/S3K Drowning/5.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 03710c6941d0cc84ab3f1ad7468ab7ce -timeCreated: 1449445600 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/bubbles.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Bubbles/bubbles.png.meta deleted file mode 100644 index 5041805..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Bubbles/bubbles.png.meta +++ /dev/null @@ -1,225 +0,0 @@ -fileFormatVersion: 2 -guid: 7fece0e51e3a1d4499bb50b0dade1daf -timeCreated: 1457034661 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: s3k_drowning_5 - 21300002: s3k_drowning_4 - 21300004: s3k_drowning_3 - 21300006: s3k_drowning_2 - 21300008: s3k_drowning_1 - 21300010: s3k_drown_0 - 21300012: s3k_drowning_form_0 - 21300014: s3k_drowning_form_4321 - 21300016: s3k_drowning_form_5 - 21300018: s3k_bubble_1 - 21300020: s3k_bubble_2 - 21300022: s3k_bubble_3 - 21300024: s3k_bubble_4 - 21300026: s3k_bubble_5 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: s3k_drowning_5 - rect: - serializedVersion: 2 - x: 0 - y: 108 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_4 - rect: - serializedVersion: 2 - x: 17 - y: 108 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_3 - rect: - serializedVersion: 2 - x: 34 - y: 108 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_2 - rect: - serializedVersion: 2 - x: 51 - y: 108 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_1 - rect: - serializedVersion: 2 - x: 68 - y: 108 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drown_0 - rect: - serializedVersion: 2 - x: 85 - y: 108 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_form_0 - rect: - serializedVersion: 2 - x: 85 - y: 87 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_form_4321 - rect: - serializedVersion: 2 - x: 17 - y: 87 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_drowning_form_5 - rect: - serializedVersion: 2 - x: 0 - y: 87 - width: 16 - height: 20 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_bubble_1 - rect: - serializedVersion: 2 - x: 0 - y: 82 - width: 4 - height: 4 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_bubble_2 - rect: - serializedVersion: 2 - x: 5 - y: 80 - width: 6 - height: 6 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_bubble_3 - rect: - serializedVersion: 2 - x: 12 - y: 78 - width: 8 - height: 8 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_bubble_4 - rect: - serializedVersion: 2 - x: 21 - y: 74 - width: 12 - height: 12 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_bubble_5 - rect: - serializedVersion: 2 - x: 34 - y: 70 - width: 16 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke.meta b/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke.meta deleted file mode 100644 index 41278cb..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: edc444a7e1cb12b4eaedb0678e381d76 -folderAsset: yes -timeCreated: 1453666720 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke/Skid Smoke.mat.meta b/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke/Skid Smoke.mat.meta deleted file mode 100644 index 030679a..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke/Skid Smoke.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 522e858704ca5954daf69ab3e1fb5cf4 -timeCreated: 1453666969 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke/skid_smoke.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke/skid_smoke.png.meta deleted file mode 100644 index a5d6e4e..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Skid Smoke/skid_smoke.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 9b3046c4baf15b74294a18d27e44f0ce -timeCreated: 1453666788 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - 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: 0 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke.meta deleted file mode 100644 index fc404f3..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8b357731980f4b340971da4f05732868 -folderAsset: yes -timeCreated: 1453688890 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Idle.anim.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Idle.anim.meta deleted file mode 100644 index edff319..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d39ddbe97ddf8da4aa8e018a28a9f9bf -timeCreated: 1453688992 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Spindash Effect.controller.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Spindash Effect.controller.meta deleted file mode 100644 index b301422..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Spindash Effect.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 35cebb2498185c047b05e9fcc90f9818 -timeCreated: 1453688942 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Spindash Effect.prefab.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Spindash Effect.prefab.meta deleted file mode 100644 index e6b4ebf..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/Spindash Effect.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1bfe5497ca3f6044abe1be8ce9887b71 -timeCreated: 1453689036 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_01.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_01.png.meta deleted file mode 100644 index c659d56..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: d9a0ab150f56b77458d1d3ff7ff82226 -timeCreated: 1453688905 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_02.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_02.png.meta deleted file mode 100644 index b007203..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: e308f9caa29fa8a4685a0ee1a8a637ec -timeCreated: 1453688905 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_03.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_03.png.meta deleted file mode 100644 index e1021e7..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 6e897a5397d6d394b9b595fd972c358c -timeCreated: 1453688904 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_04.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_04.png.meta deleted file mode 100644 index 9b8b41b..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_04.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 52dd15d1b4aa6d645a147a0da24584b1 -timeCreated: 1453688904 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_05.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_05.png.meta deleted file mode 100644 index 251ac0e..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_05.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 7e469e871e9133a47a23fe922779099a -timeCreated: 1453688904 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_06.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_06.png.meta deleted file mode 100644 index f3409d0..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_06.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 94d64834d95427d46aa2e1eca07a7f94 -timeCreated: 1453688905 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_07.png.meta b/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_07.png.meta deleted file mode 100644 index 04425d0..0000000 --- a/Assets/Sonic 16-bit/Effects/Particles/Spindash Smoke/spindash_effect_07.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: a4d89ae08c16e214ca9724ffb75e40b3 -timeCreated: 1453688905 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Score.meta b/Assets/Sonic 16-bit/Effects/Score.meta deleted file mode 100644 index 8528585..0000000 --- a/Assets/Sonic 16-bit/Effects/Score.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: db5cc858d86987c4abee30644bc930ab -folderAsset: yes -timeCreated: 1452140604 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Score/Animations.meta b/Assets/Sonic 16-bit/Effects/Score/Animations.meta deleted file mode 100644 index a5b3f9f..0000000 --- a/Assets/Sonic 16-bit/Effects/Score/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 080c13f038a498946be23cd676ec821c -folderAsset: yes -timeCreated: 1452145162 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Score/Animations/Float.anim.meta b/Assets/Sonic 16-bit/Effects/Score/Animations/Float.anim.meta deleted file mode 100644 index a73a64f..0000000 --- a/Assets/Sonic 16-bit/Effects/Score/Animations/Float.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ebdb4ec377783a940a8d2b17bbfd3cdf -timeCreated: 1452140649 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Score/Animations/Floating Score.controller.meta b/Assets/Sonic 16-bit/Effects/Score/Animations/Floating Score.controller.meta deleted file mode 100644 index d75c95a..0000000 --- a/Assets/Sonic 16-bit/Effects/Score/Animations/Floating Score.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f766be61ab97b9c4f9c1c48b46f90820 -timeCreated: 1452140640 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Effects/Score/Floating Score.prefab.meta b/Assets/Sonic 16-bit/Effects/Score/Floating Score.prefab.meta deleted file mode 100644 index 0a9f3df..0000000 --- a/Assets/Sonic 16-bit/Effects/Score/Floating Score.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 05a82bf2ab4662341adb116c82ae4972 -timeCreated: 1452145165 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music.meta b/Assets/Sonic 16-bit/Music.meta deleted file mode 100644 index c1e587b..0000000 --- a/Assets/Sonic 16-bit/Music.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 650da851698c83d41933006d74c90357 -folderAsset: yes -timeCreated: 1451107009 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/Drowning.mp3.meta b/Assets/Sonic 16-bit/Music/Drowning.mp3.meta deleted file mode 100644 index 7f46826..0000000 --- a/Assets/Sonic 16-bit/Music/Drowning.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 4839ed11f7f849d43b28444133c11d26 -timeCreated: 1456809421 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/Game Over.mp3.meta b/Assets/Sonic 16-bit/Music/Game Over.mp3.meta deleted file mode 100644 index a698f67..0000000 --- a/Assets/Sonic 16-bit/Music/Game Over.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: efcbb6f10e92eca40a8a922d298844cc -timeCreated: 1456531512 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/Green Hill Zone Loop.prefab.meta b/Assets/Sonic 16-bit/Music/Green Hill Zone Loop.prefab.meta deleted file mode 100644 index de00619..0000000 --- a/Assets/Sonic 16-bit/Music/Green Hill Zone Loop.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d2e9694eb49f6894f9de150468edc9a1 -timeCreated: 1457305896 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/Green Hill Zone.mp3.meta b/Assets/Sonic 16-bit/Music/Green Hill Zone.mp3.meta deleted file mode 100644 index 5ca18f0..0000000 --- a/Assets/Sonic 16-bit/Music/Green Hill Zone.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: a9cfa829471755546ba9573ac8f57b5b -timeCreated: 1456556743 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/S2 Invincibility.mp3.meta b/Assets/Sonic 16-bit/Music/S2 Invincibility.mp3.meta deleted file mode 100644 index 10a6827..0000000 --- a/Assets/Sonic 16-bit/Music/S2 Invincibility.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: c558c51bfc292bb4094efa831302480f -timeCreated: 1456801021 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/S3K Act Cleared.mp3.meta b/Assets/Sonic 16-bit/Music/S3K Act Cleared.mp3.meta deleted file mode 100644 index a085c27..0000000 --- a/Assets/Sonic 16-bit/Music/S3K Act Cleared.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 79196315dd79b6e44ac3d68fcaaf1124 -timeCreated: 1457205302 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/SK Extra Life.mp3.meta b/Assets/Sonic 16-bit/Music/SK Extra Life.mp3.meta deleted file mode 100644 index 0f21371..0000000 --- a/Assets/Sonic 16-bit/Music/SK Extra Life.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 075af928534cba94ca9e0d7463cf4446 -timeCreated: 1451154726 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Music/SK Super Sonic.mp3.meta b/Assets/Sonic 16-bit/Music/SK Super Sonic.mp3.meta deleted file mode 100644 index a053ce5..0000000 --- a/Assets/Sonic 16-bit/Music/SK Super Sonic.mp3.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: d318db180b862c74dbd8cffb5e5d3f71 -timeCreated: 1451107015 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles.meta b/Assets/Sonic 16-bit/Projectiles.meta deleted file mode 100644 index 609021d..0000000 --- a/Assets/Sonic 16-bit/Projectiles.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 54a3747fb31184440ae714e598a3691b -folderAsset: yes -timeCreated: 1451891666 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/Buzz Bomber Projectile.prefab.meta b/Assets/Sonic 16-bit/Projectiles/Buzz Bomber Projectile.prefab.meta deleted file mode 100644 index 3222197..0000000 --- a/Assets/Sonic 16-bit/Projectiles/Buzz Bomber Projectile.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 563309fed065b614988466755978716b -timeCreated: 1452018899 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile.meta deleted file mode 100644 index 9a440a8..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 25957c2b1a2ac8344a94e679cd619b30 -folderAsset: yes -timeCreated: 1451891674 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations.meta deleted file mode 100644 index 7e4a18f..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5310418c200ac2a43ad9d3e0c1e06c61 -folderAsset: yes -timeCreated: 1452018764 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations/Buzz Bomber Projectile.controller.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations/Buzz Bomber Projectile.controller.meta deleted file mode 100644 index 69538e5..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations/Buzz Bomber Projectile.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8c8277a5666923c4890a222b21383959 -timeCreated: 1452018782 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations/Flash.anim.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations/Flash.anim.meta deleted file mode 100644 index 8ecb84a..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Animations/Flash.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ab9d9a61a0fc6ae409173eccb3dcd1b8 -timeCreated: 1452018807 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites.meta deleted file mode 100644 index 6e37216..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 780018aa1546aad459f97e00344ce64a -folderAsset: yes -timeCreated: 1451891680 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_01.png.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_01.png.meta deleted file mode 100644 index d6f8eac..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_01.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 4619e7282a2ef214a8726a693fbd0999 -timeCreated: 1451891633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_02.png.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_02.png.meta deleted file mode 100644 index f88b205..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_02.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 60051c8e7b9c5d14390c81b9552dca60 -timeCreated: 1451891634 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_03.png.meta b/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_03.png.meta deleted file mode 100644 index 6ddfc7f..0000000 --- a/Assets/Sonic 16-bit/Projectiles/S1 Projectile/Sprites/s1projectile_03.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 3e4d11031a61ca34d877fec6c0cd0e9f -timeCreated: 1451891633 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces.meta b/Assets/Sonic 16-bit/Set Pieces.meta deleted file mode 100644 index 16e09e5..0000000 --- a/Assets/Sonic 16-bit/Set Pieces.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 51714a1a026da254eb15df77233c2b19 -folderAsset: yes -timeCreated: 1446842378 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons.meta deleted file mode 100644 index 3caf994..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 342665cd9a0771e4abec03e30d9706af -folderAsset: yes -timeCreated: 1446884322 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations.meta deleted file mode 100644 index 0c3a447..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 38b4f2e49d2c9864faf2821dc8f86402 -folderAsset: yes -timeCreated: 1446884322 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Balloon.controller.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Balloon.controller.meta deleted file mode 100644 index 10aea37..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Balloon.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 261489683c446cc499b4cdc606bb47b0 -timeCreated: 1446958417 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Balloon.overrideController.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Balloon.overrideController.meta deleted file mode 100644 index 4b0fc80..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Balloon.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 93fca77e420a8c04eb3c5e50133e10fc -timeCreated: 1446958655 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Idle.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Idle.anim.meta deleted file mode 100644 index 2c355f2..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9c53214f0eab35f40a8a517f35d0bc5e -timeCreated: 1446958495 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Popping.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Popping.anim.meta deleted file mode 100644 index 036737b..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Blue Popping.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9319aa85f20f2704186187718931344d -timeCreated: 1446959374 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Balloon.overrideController.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Balloon.overrideController.meta deleted file mode 100644 index 5dad0a7..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Balloon.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 57f75eab5633b2945b00fa5c1c0d4f1f -timeCreated: 1446962101 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Idle.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Idle.anim.meta deleted file mode 100644 index 7431fb4..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f8fc759157880f84a891fb9683dcd196 -timeCreated: 1446964183 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Popping.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Popping.anim.meta deleted file mode 100644 index 1398b39..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Dark Blue Popping.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 248c395936c180542967096ebcdd30c2 -timeCreated: 1446964189 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Destroy Self.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Destroy Self.anim.meta deleted file mode 100644 index 9f27189..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Destroy Self.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c7eb2407a8297a541b969e6a531d0be4 -timeCreated: 1446960526 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Floating.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Floating.anim.meta deleted file mode 100644 index fb5f7fa..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Floating.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fc298b7e7544e614f8ba449eca1baf7e -timeCreated: 1446958737 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Balloon.overrideController.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Balloon.overrideController.meta deleted file mode 100644 index 8f19edf..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Balloon.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 47c1a5ea2413b5f44beb78272d8bd655 -timeCreated: 1446961554 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Idle.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Idle.anim.meta deleted file mode 100644 index 24be2c4..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0063b3c5fe62494419c268128cafe402 -timeCreated: 1446961574 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Popping.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Popping.anim.meta deleted file mode 100644 index ce96d50..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Red Popping.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ac6d89f7c2f7227428c801b80442cf61 -timeCreated: 1446961594 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Balloon.overrideController.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Balloon.overrideController.meta deleted file mode 100644 index f71c345..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Balloon.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0d8b3f4fcdfbd0840a7ac6b4a0a4e5e1 -timeCreated: 1446963957 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Idle.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Idle.anim.meta deleted file mode 100644 index a652bd7..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Idle.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bfc3f342e93febe4a9404922308673d0 -timeCreated: 1446961566 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Popping.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Popping.anim.meta deleted file mode 100644 index a85a3cc..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Animations/Yellow Popping.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d5c443d50016cb34eb0b2cfacba0ea12 -timeCreated: 1446963974 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Blue Balloon.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Blue Balloon.prefab.meta deleted file mode 100644 index ab2a67e..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Blue Balloon.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9e2d314a1427e0f42854a4df4fdd5dc6 -timeCreated: 1446967471 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Dark Blue Balloon.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Dark Blue Balloon.prefab.meta deleted file mode 100644 index bc4b3e7..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Dark Blue Balloon.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: de5ad72e4d13d834e9a46d49bc92ae12 -timeCreated: 1446967464 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Red Balloon.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Red Balloon.prefab.meta deleted file mode 100644 index f83c4f8..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Red Balloon.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4cd57b851597f3249adafd1b08abf91c -timeCreated: 1446967466 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites.meta deleted file mode 100644 index 9d0efae..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 05ed6635e607f1747ae9476701ccb040 -folderAsset: yes -timeCreated: 1446884322 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_01.png.meta deleted file mode 100644 index deac73b..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9360103c9b12c394c9dbf67650b798bd -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_02.png.meta deleted file mode 100644 index 1a04c40..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 98dc840564b70e3449e16b139292ad91 -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_03.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_03.png.meta deleted file mode 100644 index 9cd1210..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 31e809e995f1cf545acd378075902e4d -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_04.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_04.png.meta deleted file mode 100644 index 9c12fa9..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2c7d44e812677224bb4af9be01b3759b -timeCreated: 1446957954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_05.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_05.png.meta deleted file mode 100644 index 7437169..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_blue_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8f62916d793f5f046b1e626199db615a -timeCreated: 1446957956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_01.png.meta deleted file mode 100644 index 49d657a..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8510fbadc19a0b641b21cbeaa9d2ec5e -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_02.png.meta deleted file mode 100644 index 0c817f6..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b1c7ac351c46bab4d95f8e7cbc335e60 -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_03.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_03.png.meta deleted file mode 100644 index 5e71a9f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e8fad4847c1244c45b638951e78290e5 -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_04.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_04.png.meta deleted file mode 100644 index 8d246a2..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3afedfbfd3f61c14ab1d8608eeb26123 -timeCreated: 1446957955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_05.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_05.png.meta deleted file mode 100644 index 5df58ba..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_dark_blue_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 01c32120cd3706542b7996b3f0940caf -timeCreated: 1446957954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_01.png.meta deleted file mode 100644 index 0a2b725..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e16cfaa1938325841a8eba13afbab9bb -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_02.png.meta deleted file mode 100644 index f06edd3..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b55eaca37083832498bca8bf25530a93 -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_03.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_03.png.meta deleted file mode 100644 index c690a1f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c061cbf8ab0569b43b7c8c6353613077 -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_04.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_04.png.meta deleted file mode 100644 index f98ba80..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6d577b35d013193499605c86afd5d823 -timeCreated: 1446957955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_05.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_05.png.meta deleted file mode 100644 index 8dc831b..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_red_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 227dec52be759eb469afe636b6e03928 -timeCreated: 1446957954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_01.png.meta deleted file mode 100644 index 51fff7f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e740824e5b2f94541a5cfb465930f56c -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_02.png.meta deleted file mode 100644 index 336de1e..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 30de781136ae1e648931f5ca8a43bcb6 -timeCreated: 1446884322 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_03.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_03.png.meta deleted file mode 100644 index 9b9af8c..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 80f25b750ef07014fbd245a655bf04c9 -timeCreated: 1446884323 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .75} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_04.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_04.png.meta deleted file mode 100644 index 8de09ec..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: eefb86cb2ad6eb641b3525199739d28f -timeCreated: 1446957956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_05.png.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_05.png.meta deleted file mode 100644 index 54abffe..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Sprites/balloon_yellow_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 58d580a014348654a87ffc81cc75ea16 -timeCreated: 1446957955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Balloons/Yellow Balloon.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Balloons/Yellow Balloon.prefab.meta deleted file mode 100644 index e1db24b..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Balloons/Yellow Balloon.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: abe63a0f2238b7147816a52314499364 -timeCreated: 1446967472 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads.meta deleted file mode 100644 index 0caeb88..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ff7aa9af7f054e94fa0d95e803e386ca -folderAsset: yes -timeCreated: 1447959848 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations.meta deleted file mode 100644 index f95766d..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d4323b1abe3c82047a02c4eefb0f8d1f -folderAsset: yes -timeCreated: 1447960266 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/Boost Pad Left.controller.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/Boost Pad Left.controller.meta deleted file mode 100644 index 92fb409..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/Boost Pad Left.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cdd2c6ee44511ed40b19bdcfab08255f -timeCreated: 1447960271 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/Boost Pad Right.overrideController.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/Boost Pad Right.overrideController.meta deleted file mode 100644 index 61d572f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/Boost Pad Right.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4dc346a06b879654aa8458f539d56e20 -timeCreated: 1447960744 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/VROOM VROOM Left.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/VROOM VROOM Left.anim.meta deleted file mode 100644 index 3dedd1a..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/VROOM VROOM Left.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 72542e4f0b8771243a7186e50fcb6419 -timeCreated: 1447960360 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/VROOM VROOM Right.anim.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/VROOM VROOM Right.anim.meta deleted file mode 100644 index dac3f85..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Animations/VROOM VROOM Right.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5109e8a7c0a9e464e8a68650f818ca4b -timeCreated: 1447960515 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Boost Pad Left.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Boost Pad Left.prefab.meta deleted file mode 100644 index 36a463a..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Boost Pad Left.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3751568384cfbfe4ebc9cef1a87fd2b9 -timeCreated: 1447960674 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Boost Pad Right.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Boost Pad Right.prefab.meta deleted file mode 100644 index c8bdc3c..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Boost Pad Right.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 370e282936671974980b8674b29b3ba8 -timeCreated: 1447960773 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites.meta deleted file mode 100644 index 2436f72..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c967e12c62d60314e8a77013e850cd31 -folderAsset: yes -timeCreated: 1447959854 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_left_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_left_01.png.meta deleted file mode 100644 index 1007282..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_left_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b5622600eabdd0547be1034cb86af4cd -timeCreated: 1447959720 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_left_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_left_02.png.meta deleted file mode 100644 index e47951d..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_left_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 28084da372d077548a94d21869acd176 -timeCreated: 1447959719 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_right_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_right_01.png.meta deleted file mode 100644 index 87140b9..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_right_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 74bc9fe95e80d5642bb58f3766dfc580 -timeCreated: 1447959720 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_right_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_right_02.png.meta deleted file mode 100644 index a157014..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Boost Pads/Sprites/boostpad_right_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1bd083611e8da814b8f63900563ecfab -timeCreated: 1447959719 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables.meta deleted file mode 100644 index 41827a1..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 9229fca6af79f6c4ab99fa8087bbfcb2 -folderAsset: yes -timeCreated: 1446842592 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap.meta deleted file mode 100644 index 120b43c..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0155212b4295c7f42a4eb7ec158975c1 -folderAsset: yes -timeCreated: 1446843107 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap.prefab.meta deleted file mode 100644 index b13b482..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a8d4dafd23b5d184f9586ed9070e0204 -timeCreated: 1446773264 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Debris.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Debris.prefab.meta deleted file mode 100644 index 75b225e..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Debris.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 65fbfd4268400ab46b7c7881f7b570f7 -timeCreated: 1446843245 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Sprites.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Sprites.meta deleted file mode 100644 index ceffbd9..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1c11c86917a4a7f4cbb340a0d9097627 -folderAsset: yes -timeCreated: 1446843411 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Sprites/pipe_cap.png.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Sprites/pipe_cap.png.meta deleted file mode 100644 index 27e009b..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/CNZ Pipe Cap/Sprites/pipe_cap.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d6f6f31d0d1a8a04d97dd36d69d51223 -timeCreated: 1446770814 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Left.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Left.prefab.meta deleted file mode 100644 index d6791dc..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Left.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0670369f10bc5464f84c8ef3ba1f4f0b -timeCreated: 1446843345 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Middle.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Middle.prefab.meta deleted file mode 100644 index 1a2a411..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Middle.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d19ae7d1ae32eb64bba4e18e205fef70 -timeCreated: 1446843346 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Right.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Right.prefab.meta deleted file mode 100644 index 11c5c94..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall Right.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f9ed427548271a346aac7582ad246c9d -timeCreated: 1446843347 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall.meta deleted file mode 100644 index ebf5620..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e617c3a789ce3b1489c9d4e7ba618c71 -folderAsset: yes -timeCreated: 1446842745 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Debris.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Debris.prefab.meta deleted file mode 100644 index 73a6d67..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Debris.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 99c17faea4a3c5a40abc62821d7a0393 -timeCreated: 1446719642 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites.meta deleted file mode 100644 index d399b03..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5ffc9d6c27e41c749b4d9142835eb9a3 -folderAsset: yes -timeCreated: 1446701395 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_left.png.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_left.png.meta deleted file mode 100644 index f722068..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_left.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c9cc96e0b17b2924a94f349b779a417b -timeCreated: 1446701364 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_middle.png.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_middle.png.meta deleted file mode 100644 index 51b8287..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_middle.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b19ff6869361ded49b7d8e1c9c11fa84 -timeCreated: 1446701364 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_right.png.meta b/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_right.png.meta deleted file mode 100644 index 6d352ac..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Breakables/GHZ Wall/Sprites/breakable_wall_right.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: fbed94651b62413489ce18e28dd86919 -timeCreated: 1446701364 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews.meta deleted file mode 100644 index 1b49ed9..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c3cff9cfd6941c249a9b7147a5a4c9b7 -folderAsset: yes -timeCreated: 1449057142 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew Left.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew Left.prefab.meta deleted file mode 100644 index 4fec5c0..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew Left.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7a95444e2c1986c43828fc630a82747e -timeCreated: 1449069916 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew Right.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew Right.prefab.meta deleted file mode 100644 index 9e63164..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew Right.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3b58677a4e2242e42a7d4b5d8bffbe2a -timeCreated: 1449069932 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew.prefab.meta deleted file mode 100644 index b51c1db..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/EHZ Corkscrew.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 91e2f8bec5940fd488cdb5339ecba4d0 -timeCreated: 1449135356 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites.meta deleted file mode 100644 index 599377f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 268972ea3cba73041b3c476035b1cfca -folderAsset: yes -timeCreated: 1449069924 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites/EHZ_corkscrew_left.png.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites/EHZ_corkscrew_left.png.meta deleted file mode 100644 index 8bf7fe1..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites/EHZ_corkscrew_left.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: fb1f141707a0c6d4a94ab5e42f1b706a -timeCreated: 1449057143 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites/EHZ_corkscrew_right.png.meta b/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites/EHZ_corkscrew_right.png.meta deleted file mode 100644 index d6e7d87..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Corkscrews/Sprites/EHZ_corkscrew_right.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 5b66769f9a2f18943b401c7bc7f15279 -timeCreated: 1449058322 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Pipes.meta b/Assets/Sonic 16-bit/Set Pieces/Pipes.meta deleted file mode 100644 index befc079..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Pipes.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d782736069059a249b4f255e2419dffe -folderAsset: yes -timeCreated: 1446875315 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Pipes/CNZ Pipe.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Pipes/CNZ Pipe.prefab.meta deleted file mode 100644 index b35f827..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Pipes/CNZ Pipe.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5686f5a431136cc4381bdeb6b2c9c74d -timeCreated: 1446870059 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels.meta deleted file mode 100644 index 14b04fa..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a1589ee06ede6a242bafa2b4653be9e2 -folderAsset: yes -timeCreated: 1446875311 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Entrance.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Entrance.prefab.meta deleted file mode 100644 index e444959..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Entrance.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 14d4a4af037d4ac40b00bd5cc7d06aac -timeCreated: 1446967520 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Exit.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Exit.prefab.meta deleted file mode 100644 index a888585..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Exit.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6e4221bc501b5d349b8c6cedb43b815f -timeCreated: 1446876382 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 1.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 1.prefab.meta deleted file mode 100644 index a9095dd..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 1.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 36704fd9875957d4a8c1241acf2c695f -timeCreated: 1446967513 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 2.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 2.prefab.meta deleted file mode 100644 index c8fdc35..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 2.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e32e9bc17a8b5b744b4e47bf1150ad7e -timeCreated: 1446967514 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 3.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 3.prefab.meta deleted file mode 100644 index e0e685f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 3.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 411c34c25e6177b478c357d0b15e8f9d -timeCreated: 1446967516 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 4.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 4.prefab.meta deleted file mode 100644 index 39d9d87..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel Mid 4.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d3f88abf0e17a694da330607d3953e3a -timeCreated: 1446967518 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel.meta deleted file mode 100644 index 07d3114..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8b51fac8f50b8f84e817453c8e697bea -folderAsset: yes -timeCreated: 1446875344 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel.prefab.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel.prefab.meta deleted file mode 100644 index f438622..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 312c879ac17149546b68ac38bc47f8e0 -timeCreated: 1446967523 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites.meta deleted file mode 100644 index 343e9d3..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b3db5a1144880164ca04d76e52c0b1d0 -folderAsset: yes -timeCreated: 1446875358 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_01.png.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_01.png.meta deleted file mode 100644 index 6962768..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e5caa22d7cf47af47a14d2ac43fda019 -timeCreated: 1446875358 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_02.png.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_02.png.meta deleted file mode 100644 index 77260e7..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 448371d83d882fe42982f9a96a9e95fd -timeCreated: 1446875358 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_03.png.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_03.png.meta deleted file mode 100644 index a8ad5ce..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ed4a57897c3d2d24abfcaa5df7891334 -timeCreated: 1446875359 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_04.png.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_04.png.meta deleted file mode 100644 index be28e4a..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 259104b901bf2784ca951a4158271af9 -timeCreated: 1446875358 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_05.png.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_05.png.meta deleted file mode 100644 index f1ba87d..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 70b3dbc1513b1f14c824837376f06954 -timeCreated: 1446875358 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_06.png.meta b/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_06.png.meta deleted file mode 100644 index 3af745f..0000000 --- a/Assets/Sonic 16-bit/Set Pieces/Tunnels/GHZ Tunnel/Sprites/tunnel_06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ebccdba636c887d4cbd835ab0b20aa6e -timeCreated: 1446875358 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds.meta b/Assets/Sonic 16-bit/Sounds.meta deleted file mode 100644 index 0a9e74c..0000000 --- a/Assets/Sonic 16-bit/Sounds.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 10320c020c0e4114b912658dd17a3d2d -folderAsset: yes -timeCreated: 1451006103 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S2 Shield Get.wav.meta b/Assets/Sonic 16-bit/Sounds/S2 Shield Get.wav.meta deleted file mode 100644 index 07cb0f6..0000000 --- a/Assets/Sonic 16-bit/Sounds/S2 Shield Get.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: fdde09c96e07cd6468786f60b46affce -timeCreated: 1451025519 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S2 Signpost Spin.wav.meta b/Assets/Sonic 16-bit/Sounds/S2 Signpost Spin.wav.meta deleted file mode 100644 index 3c876d1..0000000 --- a/Assets/Sonic 16-bit/Sounds/S2 Signpost Spin.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 31b0a5724ce25994191dcb4fee6e5b27 -timeCreated: 1452941896 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Balloon Pop.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Balloon Pop.wav.meta deleted file mode 100644 index e491dc4..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Balloon Pop.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: d26d4056d74fecd40b06a1aab953b2ec -timeCreated: 1456809254 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Break 1.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Break 1.wav.meta deleted file mode 100644 index 8a8b5b6..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Break 1.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: a725473a3df460d4785f6ebcf5d3f75e -timeCreated: 1456808372 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Bubble Shield Dive.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Bubble Shield Dive.wav.meta deleted file mode 100644 index d6c9974..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Bubble Shield Dive.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: eb845404dd6f20843afb8441f6d80c64 -timeCreated: 1451031482 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Bubble Shield Get.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Bubble Shield Get.wav.meta deleted file mode 100644 index 4d981e6..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Bubble Shield Get.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 74420facd7d2eab48803cc0daa3ff535 -timeCreated: 1451006893 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Bumper Hit.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Bumper Hit.wav.meta deleted file mode 100644 index ea5039b..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Bumper Hit.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 884167f2bc04e7042a4c244179c4e869 -timeCreated: 1451025515 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Button Press.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Button Press.wav.meta deleted file mode 100644 index c3891a6..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Button Press.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: e78507c984ea6314b8932ac7709a3698 -timeCreated: 1457207055 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Cha-Ching.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Cha-Ching.wav.meta deleted file mode 100644 index 4f10272..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Cha-Ching.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 0b40bb4f9e62d954482ea34325c8b172 -timeCreated: 1457207055 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Checkpoint.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Checkpoint.wav.meta deleted file mode 100644 index 278c4bf..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Checkpoint.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 1e380e7ac594b2d408e6ae9124d3b60a -timeCreated: 1451025515 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Drown.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Drown.wav.meta deleted file mode 100644 index b7ad7e0..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Drown.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 22acd0f3212fa7a48b1ef3920793142d -timeCreated: 1456812220 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Electric Shield Get.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Electric Shield Get.wav.meta deleted file mode 100644 index 5f07c15..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Electric Shield Get.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: c64e5eee18be18746800a963b004354f -timeCreated: 1451025516 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Electric Shield Jump.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Electric Shield Jump.wav.meta deleted file mode 100644 index 9d845d9..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Electric Shield Jump.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 9d09fcaa2ea4bb340a104242a063daf6 -timeCreated: 1451025516 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Flame Shield Get.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Flame Shield Get.wav.meta deleted file mode 100644 index 0eacff0..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Flame Shield Get.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 177388a5f227d16408306ee2ac22e05d -timeCreated: 1451010769 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Flame Shield Use.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Flame Shield Use.wav.meta deleted file mode 100644 index 488aa32..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Flame Shield Use.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 435ffdce8e3cf0c4298579305da113e4 -timeCreated: 1456863621 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Hit Spikes.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Hit Spikes.wav.meta deleted file mode 100644 index e964b76..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Hit Spikes.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 0a59cd0f5e3bbeb40b7228379fbbe22e -timeCreated: 1456794279 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Hurt.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Hurt.wav.meta deleted file mode 100644 index 2d2ad1b..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Hurt.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: c66b7db95dfbb0a4b999f4fc128d603f -timeCreated: 1456794281 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Instashield.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Instashield.wav.meta deleted file mode 100644 index 8519d0f..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Instashield.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: bf66e6b8c08b0fa439f87f06a91b2ece -timeCreated: 1456863621 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Item Box.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Item Box.wav.meta deleted file mode 100644 index efe11ca..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Item Box.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: ba3cc820fc9d3a54a96e6ed5f44d032f -timeCreated: 1451016913 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Jump.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Jump.wav.meta deleted file mode 100644 index 600eae0..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Jump.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: d9c2e238883004e4b9f25586a51abc28 -timeCreated: 1451016913 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Ring Get.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Ring Get.wav.meta deleted file mode 100644 index 411e557..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Ring Get.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: be6e80618227838408fc30693ee0acd3 -timeCreated: 1451006385 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Roll.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Roll.wav.meta deleted file mode 100644 index aec19e0..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Roll.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: bb2cba8fd62577148972c89bd49ef141 -timeCreated: 1451018028 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Skid.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Skid.wav.meta deleted file mode 100644 index ee44add..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Skid.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: bdceffe79c913be46bdd89c6b77607cf -timeCreated: 1453658084 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Spill Rings.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Spill Rings.wav.meta deleted file mode 100644 index c7e0556..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Spill Rings.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 934ecbbc16e965e4c88178204cd3cdf8 -timeCreated: 1456794280 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Spindash Activate.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Spindash Activate.wav.meta deleted file mode 100644 index eccea89..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Spindash Activate.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: bab5237725114cc448e6e39ad6a5c6b2 -timeCreated: 1451027018 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Spindash Charge.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Spindash Charge.wav.meta deleted file mode 100644 index 9736b2a..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Spindash Charge.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: c9d33219f757b72459544d9bce806845 -timeCreated: 1451025517 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Spring Hit.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Spring Hit.wav.meta deleted file mode 100644 index 1e32534..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Spring Hit.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: d2629e160604bbf4692c498e0d403d64 -timeCreated: 1451025517 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/S3K Water Warning.wav.meta b/Assets/Sonic 16-bit/Sounds/S3K Water Warning.wav.meta deleted file mode 100644 index 85f2a64..0000000 --- a/Assets/Sonic 16-bit/Sounds/S3K Water Warning.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 7fd3ffd5ffaf8d942a79242619dfadfb -timeCreated: 1456811461 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Sounds/Water Splash.wav.meta b/Assets/Sonic 16-bit/Sounds/Water Splash.wav.meta deleted file mode 100644 index 0e807b9..0000000 --- a/Assets/Sonic 16-bit/Sounds/Water Splash.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 344d748a26fd4b5408006434e1ddf07a -timeCreated: 1457071756 -licenseType: Free -AudioImporter: - serializedVersion: 6 - defaultSettings: - loadType: 0 - sampleRateSetting: 0 - sampleRateOverride: 44100 - compressionFormat: 1 - quality: 1 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 0 - normalize: 1 - preloadAudioData: 1 - loadInBackground: 0 - 3D: 1 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI.meta b/Assets/Sonic 16-bit/UI.meta deleted file mode 100644 index 9059261..0000000 --- a/Assets/Sonic 16-bit/UI.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 84689dd88c12e064e9d3310bf8474d53 -folderAsset: yes -timeCreated: 1449206554 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts.meta b/Assets/Sonic 16-bit/UI/Fonts.meta deleted file mode 100644 index d746162..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f34d60219d7d66f45982128d689b9ffa -folderAsset: yes -timeCreated: 1448867028 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score.fontsettings.meta deleted file mode 100644 index 13235da..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: dd266a4496d91084392034ad00b0a2c8 -timeCreated: 1452136297 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score.meta deleted file mode 100644 index c6c167e..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: cad0a53819a332d4cbc2fd7201b3d401 -folderAsset: yes -timeCreated: 1452132130 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score/Sonic 2 Score.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score/Sonic 2 Score.mat.meta deleted file mode 100644 index 634de39..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score/Sonic 2 Score.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 37024887c66c07a4983145ba8907188d -timeCreated: 1452136293 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score/Sonic 2 Score.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score/Sonic 2 Score.png.meta deleted file mode 100644 index df44757..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 Score/Sonic 2 Score.png.meta +++ /dev/null @@ -1,117 +0,0 @@ -fileFormatVersion: 2 -guid: f12d8adfe3b09664e8a50ca283dc7746 -timeCreated: 1452136248 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 2 Score_48 - 21300002: Sonic 2 Score_49 - 21300004: Sonic 2 Score_50 - 21300006: Sonic 2 Score_53 - 21300008: Sonic 2 Score_32 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 2 Score_48 - rect: - serializedVersion: 2 - x: 0 - y: 0 - width: 6 - height: 10 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic 2 Score_49 - rect: - serializedVersion: 2 - x: 7 - y: 0 - width: 3 - height: 10 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic 2 Score_50 - rect: - serializedVersion: 2 - x: 11 - y: 0 - width: 6 - height: 10 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic 2 Score_53 - rect: - serializedVersion: 2 - x: 18 - y: 0 - width: 6 - height: 10 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic 2 Score_32 - rect: - serializedVersion: 2 - x: 25 - y: 0 - width: 3 - height: 10 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System.fontsettings.meta deleted file mode 100644 index d1ac3e9..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4b4b112eb5d39f545a73fe29b2096c31 -timeCreated: 1449387537 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System.meta deleted file mode 100644 index 1cfd72c..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: bd8deb86a60e55c45a9814b99f31ba4b -folderAsset: yes -timeCreated: 1454541487 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System/Sonic 2 System.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System/Sonic 2 System.mat.meta deleted file mode 100644 index 1887789..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System/Sonic 2 System.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e014746df1e1b1343aa2145c76324108 -timeCreated: 1449042270 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System/Sonic 2 System.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System/Sonic 2 System.png.meta deleted file mode 100644 index e098326..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 2 System/Sonic 2 System.png.meta +++ /dev/null @@ -1,474 +0,0 @@ -fileFormatVersion: 2 -guid: e6ecfa526a918d643bb2edcbbeae0d70 -timeCreated: 1449310913 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 2 System_65 - 21300002: Sonic 2 System_66 - 21300004: Sonic 2 System_67 - 21300006: Sonic 2 System_68 - 21300008: Sonic 2 System_69 - 21300010: Sonic 2 System_70 - 21300012: Sonic 2 System_71 - 21300014: Sonic 2 System_72 - 21300016: Sonic 2 System_73 - 21300018: Sonic 2 System_74 - 21300020: Sonic 2 System_75 - 21300022: Sonic 2 System_76 - 21300024: Sonic 2 System_77 - 21300026: Sonic 2 System_78 - 21300028: Sonic 2 System_79 - 21300030: Sonic 2 System_80 - 21300032: Sonic 2 System_81 - 21300034: Sonic 2 System_82 - 21300036: Sonic 2 System_83 - 21300038: Sonic 2 System_84 - 21300040: Sonic 2 System_85 - 21300042: Sonic 2 System_86 - 21300044: Sonic 2 System_87 - 21300046: Sonic 2 System_88 - 21300048: Sonic 2 System_89 - 21300050: Sonic 2 System_90 - 21300052: Sonic 2 System_49 - 21300054: Sonic 2 System_50 - 21300056: Sonic 2 System_51 - 21300058: Sonic 2 System_52 - 21300060: Sonic 2 System_53 - 21300062: Sonic 2 System_54 - 21300064: Sonic 2 System_55 - 21300066: Sonic 2 System_56 - 21300068: Sonic 2 System_57 - 21300070: Sonic 2 System_48 - 21300072: Sonic 2 System_42 - 21300074: Sonic 2 System_32 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 2 System_65 - rect: - serializedVersion: 2 - x: 0 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_66 - rect: - serializedVersion: 2 - x: 9 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_67 - rect: - serializedVersion: 2 - x: 18 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_68 - rect: - serializedVersion: 2 - x: 27 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_69 - rect: - serializedVersion: 2 - x: 36 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_70 - rect: - serializedVersion: 2 - x: 45 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_71 - rect: - serializedVersion: 2 - x: 54 - y: 57 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_72 - rect: - serializedVersion: 2 - x: 0 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_73 - rect: - serializedVersion: 2 - x: 9 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_74 - rect: - serializedVersion: 2 - x: 18 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_75 - rect: - serializedVersion: 2 - x: 27 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_76 - rect: - serializedVersion: 2 - x: 36 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_77 - rect: - serializedVersion: 2 - x: 45 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_78 - rect: - serializedVersion: 2 - x: 54 - y: 49 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_79 - rect: - serializedVersion: 2 - x: 0 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_80 - rect: - serializedVersion: 2 - x: 9 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_81 - rect: - serializedVersion: 2 - x: 18 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_82 - rect: - serializedVersion: 2 - x: 27 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_83 - rect: - serializedVersion: 2 - x: 36 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_84 - rect: - serializedVersion: 2 - x: 45 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_85 - rect: - serializedVersion: 2 - x: 54 - y: 41 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_86 - rect: - serializedVersion: 2 - x: 0 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_87 - rect: - serializedVersion: 2 - x: 9 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_88 - rect: - serializedVersion: 2 - x: 18 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_89 - rect: - serializedVersion: 2 - x: 27 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_90 - rect: - serializedVersion: 2 - x: 36 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_49 - rect: - serializedVersion: 2 - x: 45 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_50 - rect: - serializedVersion: 2 - x: 54 - y: 33 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_51 - rect: - serializedVersion: 2 - x: 0 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_52 - rect: - serializedVersion: 2 - x: 9 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_53 - rect: - serializedVersion: 2 - x: 18 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_54 - rect: - serializedVersion: 2 - x: 27 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_55 - rect: - serializedVersion: 2 - x: 36 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_56 - rect: - serializedVersion: 2 - x: 45 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_57 - rect: - serializedVersion: 2 - x: 54 - y: 25 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_48 - rect: - serializedVersion: 2 - x: 0 - y: 17 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_42 - rect: - serializedVersion: 2 - x: 9 - y: 17 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 2 System_32 - rect: - serializedVersion: 2 - x: 18 - y: 17 - width: 8 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps.fontsettings.meta deleted file mode 100644 index e24239d..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3bbc23b8494286b4197de8cc1101e917 -timeCreated: 1449012053 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps.meta deleted file mode 100644 index 2164fcc..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c8d09b6bdcb85174fab0ec4b758927c0 -folderAsset: yes -timeCreated: 1449011832 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps/Sonic 3K 2P Laps.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps/Sonic 3K 2P Laps.mat.meta deleted file mode 100644 index b04a373..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps/Sonic 3K 2P Laps.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e112cdbdb9cecd049b2dd65b046f0fe8 -timeCreated: 1449012050 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps/Sonic 3K 2P Laps.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps/Sonic 3K 2P Laps.png.meta deleted file mode 100644 index ed24037..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Laps/Sonic 3K 2P Laps.png.meta +++ /dev/null @@ -1,133 +0,0 @@ -fileFormatVersion: 2 -guid: 2e7d50fde9ca7eb44bba7626c9031b50 -timeCreated: 1449011927 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K 2P Laps_48 - 21300002: Sonic 3K 2P Laps_49 - 21300004: Sonic 3K 2P Laps_50 - 21300006: Sonic 3K 2P Laps_51 - 21300008: Sonic 3K 2P Laps_52 - 21300010: Sonic 3K 2P Laps_53 - 21300012: Sonic 3K 2P Laps_32 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K 2P Laps_48 - rect: - serializedVersion: 2 - x: 0 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Laps_49 - rect: - serializedVersion: 2 - x: 17 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Laps_50 - rect: - serializedVersion: 2 - x: 34 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Laps_51 - rect: - serializedVersion: 2 - x: 51 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Laps_52 - rect: - serializedVersion: 2 - x: 68 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Laps_53 - rect: - serializedVersion: 2 - x: 85 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Laps_32 - rect: - serializedVersion: 2 - x: 102 - y: 8 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer.fontsettings.meta deleted file mode 100644 index a9304f1..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3ab4f753566e2a04e856068e63481c82 -timeCreated: 1449012037 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer.meta deleted file mode 100644 index 1a3e9c1..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1a54e6dceea60e44785cf9a093cfcff3 -folderAsset: yes -timeCreated: 1449011832 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer/Sonic 3K 2P Timer.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer/Sonic 3K 2P Timer.mat.meta deleted file mode 100644 index a26cc5a..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer/Sonic 3K 2P Timer.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6b404ef15fecbfa44a74d047e4ae3cfe -timeCreated: 1449012034 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer/Sonic 3K 2P Timer.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer/Sonic 3K 2P Timer.png.meta deleted file mode 100644 index ff41ff4..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K 2P Timer/Sonic 3K 2P Timer.png.meta +++ /dev/null @@ -1,177 +0,0 @@ -fileFormatVersion: 2 -guid: c41c8d312fab6814a8551be311fd17d8 -timeCreated: 1449012025 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K 2P Timer_48 - 21300002: Sonic 3K 2P Timer_49 - 21300004: Sonic 3K 2P Timer_50 - 21300006: Sonic 3K 2P Timer_51 - 21300008: Sonic 3K 2P Timer_52 - 21300010: Sonic 3K 2P Timer_53 - 21300012: Sonic 3K 2P Timer_54 - 21300014: Sonic 3K 2P Timer_55 - 21300016: Sonic 3K 2P Timer_56 - 21300018: Sonic 3K 2P Timer_57 - 21300020: Sonic 3K 2P Timer_32 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K 2P Timer_48 - rect: - serializedVersion: 2 - x: 0 - y: 48 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_49 - rect: - serializedVersion: 2 - x: 13 - y: 48 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_50 - rect: - serializedVersion: 2 - x: 26 - y: 48 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_51 - rect: - serializedVersion: 2 - x: 39 - y: 48 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_52 - rect: - serializedVersion: 2 - x: 52 - y: 48 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_53 - rect: - serializedVersion: 2 - x: 0 - y: 31 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_54 - rect: - serializedVersion: 2 - x: 13 - y: 31 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_55 - rect: - serializedVersion: 2 - x: 26 - y: 31 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_56 - rect: - serializedVersion: 2 - x: 39 - y: 31 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_57 - rect: - serializedVersion: 2 - x: 52 - y: 31 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K 2P Timer_32 - rect: - serializedVersion: 2 - x: 0 - y: 14 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear.fontsettings.meta deleted file mode 100644 index b8db7af..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 58d683dc870765f449672c95c486b3f2 -timeCreated: 1448903017 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear.meta deleted file mode 100644 index 2ace5e4..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 23256d3ec8197c647ab2cac3fe7a419d -folderAsset: yes -timeCreated: 1448902751 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear/Sonic 3K Act Clear.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear/Sonic 3K Act Clear.mat.meta deleted file mode 100644 index b0d2a8a..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear/Sonic 3K Act Clear.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 64b1b866327e9604eb85b166e0d2625e -timeCreated: 1448903012 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear/Sonic 3K Act Clear.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear/Sonic 3K Act Clear.png.meta deleted file mode 100644 index 78883c9..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Act Clear/Sonic 3K Act Clear.png.meta +++ /dev/null @@ -1,354 +0,0 @@ -fileFormatVersion: 2 -guid: 1b9ee84c1dcb6ba48a6f6281a6ea562e -timeCreated: 1448939494 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K Got Through_71 - 21300002: Sonic 3K Got Through_84 - 21300004: Sonic 3K Got Through_72 - 21300006: Sonic 3K Got Through_82 - 21300008: Sonic 3K Got Through_85 - 21300010: Sonic 3K Got Through_79 - 21300012: Sonic 3K Got Through_32 - 21300014: Sonic 3K Got Through_71 - 21300016: Sonic 3K Got Through_65 - 21300018: Sonic 3K Got Through_66 - 21300020: Sonic 3K Got Through_67 - 21300022: Sonic 3K Got Through_68 - 21300024: Sonic 3K Got Through_69 - 21300026: Sonic 3K Got Through_70 - 21300028: Sonic 3K Got Through_73 - 21300030: Sonic 3K Got Through_74 - 21300032: Sonic 3K Got Through_75 - 21300034: Sonic 3K Got Through_76 - 21300036: Sonic 3K Got Through_77 - 21300038: Sonic 3K Got Through_78 - 21300040: Sonic 3K Got Through_80 - 21300042: Sonic 3K Got Through_81 - 21300044: Sonic 3K Got Through_83 - 21300046: Sonic 3K Got Through_86 - 21300048: Sonic 3K Got Through_87 - 21300050: Sonic 3K Got Through_88 - 21300052: Sonic 3K Got Through_89 - 21300054: Sonic 3K Got Through_90 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K Got Through_71 - rect: - serializedVersion: 2 - x: 0 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_84 - rect: - serializedVersion: 2 - x: 18 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_72 - rect: - serializedVersion: 2 - x: 36 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_82 - rect: - serializedVersion: 2 - x: 53 - y: 112 - width: 17 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_85 - rect: - serializedVersion: 2 - x: 72 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_79 - rect: - serializedVersion: 2 - x: 89 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_65 - rect: - serializedVersion: 2 - x: 0 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_66 - rect: - serializedVersion: 2 - x: 17 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_67 - rect: - serializedVersion: 2 - x: 34 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_68 - rect: - serializedVersion: 2 - x: 51 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_69 - rect: - serializedVersion: 2 - x: 68 - y: 95 - width: 14 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_70 - rect: - serializedVersion: 2 - x: 85 - y: 95 - width: 14 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_73 - rect: - serializedVersion: 2 - x: 102 - y: 95 - width: 10 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_74 - rect: - serializedVersion: 2 - x: 0 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_75 - rect: - serializedVersion: 2 - x: 17 - y: 78 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_76 - rect: - serializedVersion: 2 - x: 34 - y: 78 - width: 12 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_77 - rect: - serializedVersion: 2 - x: 51 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_78 - rect: - serializedVersion: 2 - x: 68 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_80 - rect: - serializedVersion: 2 - x: 85 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_81 - rect: - serializedVersion: 2 - x: 102 - y: 78 - width: 17 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_83 - rect: - serializedVersion: 2 - x: 0 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_86 - rect: - serializedVersion: 2 - x: 17 - y: 61 - width: 17 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_87 - rect: - serializedVersion: 2 - x: 35 - y: 61 - width: 23 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_88 - rect: - serializedVersion: 2 - x: 59 - y: 61 - width: 17 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_89 - rect: - serializedVersion: 2 - x: 77 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_90 - rect: - serializedVersion: 2 - x: 94 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Got Through_32 - rect: - serializedVersion: 2 - x: 106 - y: 112 - width: 8 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits.fontsettings.meta deleted file mode 100644 index 9e4c904..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d7389b520cd3f6a4fbd3ca4d885a8f41 -timeCreated: 1448942518 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits.meta deleted file mode 100644 index 1ac2b52..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 82f172d616f9bff4fa057a8e31f1a6f2 -folderAsset: yes -timeCreated: 1448942240 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits/Sonic 3K Credits.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits/Sonic 3K Credits.mat.meta deleted file mode 100644 index ab916c7..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits/Sonic 3K Credits.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 61f28c79d484b6d4793f624559d413d8 -timeCreated: 1448942513 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits/Sonic 3K Credits.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits/Sonic 3K Credits.png.meta deleted file mode 100644 index 4edcb50..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Credits/Sonic 3K Credits.png.meta +++ /dev/null @@ -1,386 +0,0 @@ -fileFormatVersion: 2 -guid: 96137cfbadd3ae749b0b3d330983c2ae -timeCreated: 1448944075 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K Credits_65 - 21300002: Sonic 3K Credits_66 - 21300004: Sonic 3K Credits_67 - 21300006: Sonic 3K Credits_68 - 21300008: Sonic 3K Credits_69 - 21300010: Sonic 3K Credits_70 - 21300012: Sonic 3K Credits_71 - 21300014: Sonic 3K Credits_72 - 21300016: Sonic 3K Credits_73 - 21300018: Sonic 3K Credits_74 - 21300020: Sonic 3K Credits_75 - 21300022: Sonic 3K Credits_76 - 21300024: Sonic 3K Credits_77 - 21300026: Sonic 3K Credits_78 - 21300028: Sonic 3K Credits_79 - 21300030: Sonic 3K Credits_80 - 21300032: Sonic 3K Credits_81 - 21300034: Sonic 3K Credits_82 - 21300036: Sonic 3K Credits_83 - 21300038: Sonic 3K Credits_84 - 21300040: Sonic 3K Credits_85 - 21300042: Sonic 3K Credits_86 - 21300044: Sonic 3K Credits_87 - 21300046: Sonic 3K Credits_88 - 21300048: Sonic 3K Credits_89 - 21300050: Sonic 3K Credits_90 - 21300052: Sonic 3K Credits_32 - 21300054: Sonic 3K Credits_46 - 21300056: Sonic 3K Credits_40 - 21300058: Sonic 3K Credits_41 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K Credits_65 - rect: - serializedVersion: 2 - x: 0 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_66 - rect: - serializedVersion: 2 - x: 17 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_67 - rect: - serializedVersion: 2 - x: 34 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_68 - rect: - serializedVersion: 2 - x: 51 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_69 - rect: - serializedVersion: 2 - x: 68 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_70 - rect: - serializedVersion: 2 - x: 85 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_71 - rect: - serializedVersion: 2 - x: 102 - y: 112 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_72 - rect: - serializedVersion: 2 - x: 0 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_73 - rect: - serializedVersion: 2 - x: 17 - y: 95 - width: 8 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_74 - rect: - serializedVersion: 2 - x: 26 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_75 - rect: - serializedVersion: 2 - x: 43 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_76 - rect: - serializedVersion: 2 - x: 60 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_77 - rect: - serializedVersion: 2 - x: 77 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_78 - rect: - serializedVersion: 2 - x: 94 - y: 95 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_79 - rect: - serializedVersion: 2 - x: 0 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_80 - rect: - serializedVersion: 2 - x: 17 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_81 - rect: - serializedVersion: 2 - x: 34 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_82 - rect: - serializedVersion: 2 - x: 51 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_83 - rect: - serializedVersion: 2 - x: 68 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_84 - rect: - serializedVersion: 2 - x: 85 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_85 - rect: - serializedVersion: 2 - x: 102 - y: 78 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_86 - rect: - serializedVersion: 2 - x: 0 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_87 - rect: - serializedVersion: 2 - x: 17 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_88 - rect: - serializedVersion: 2 - x: 34 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_89 - rect: - serializedVersion: 2 - x: 51 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_90 - rect: - serializedVersion: 2 - x: 68 - y: 61 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_32 - rect: - serializedVersion: 2 - x: 119 - y: 112 - width: 8 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_46 - rect: - serializedVersion: 2 - x: 85 - y: 61 - width: 8 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_40 - rect: - serializedVersion: 2 - x: 94 - y: 61 - width: 8 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Credits_41 - rect: - serializedVersion: 2 - x: 103 - y: 61 - width: 8 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD Shiny.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD Shiny.fontsettings.meta deleted file mode 100644 index 3375a2b..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD Shiny.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c9bcc2439ff231e4898a3e33b067815b -timeCreated: 1449007648 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD.fontsettings.meta deleted file mode 100644 index ed4d696..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 67aa5fcbefd5a964888e05a84ac199c3 -timeCreated: 1448896937 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD.meta deleted file mode 100644 index 321498b..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c0d14e8fcc15a314fb7b945ba90166bd -folderAsset: yes -timeCreated: 1448867210 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD Shiny.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD Shiny.mat.meta deleted file mode 100644 index ca7c06e..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD Shiny.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2e1d02df75d834141bfebe57a0e49f6b -timeCreated: 1449007645 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD Shiny.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD Shiny.png.meta deleted file mode 100644 index 512bfcf..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD Shiny.png.meta +++ /dev/null @@ -1,474 +0,0 @@ -fileFormatVersion: 2 -guid: c7c4256ff0b8db644937c3c901a1bcf4 -timeCreated: 1449007627 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K HUD Shiny_48 - 21300002: Sonic 3K HUD Shiny_49 - 21300004: Sonic 3K HUD Shiny_50 - 21300006: Sonic 3K HUD Shiny_51 - 21300008: Sonic 3K HUD Shiny_52 - 21300010: Sonic 3K HUD Shiny_53 - 21300012: Sonic 3K HUD Shiny_54 - 21300014: Sonic 3K HUD Shiny_55 - 21300016: Sonic 3K HUD Shiny_56 - 21300018: Sonic 3K HUD Shiny_57 - 21300020: Sonic 3K HUD Shiny_58 - 21300022: Sonic 3K HUD Shiny_65 - 21300024: Sonic 3K HUD Shiny_66 - 21300026: Sonic 3K HUD Shiny_67 - 21300028: Sonic 3K HUD Shiny_68 - 21300030: Sonic 3K HUD Shiny_69 - 21300032: Sonic 3K HUD Shiny_70 - 21300034: Sonic 3K HUD Shiny_71 - 21300036: Sonic 3K HUD Shiny_72 - 21300038: Sonic 3K HUD Shiny_73 - 21300040: Sonic 3K HUD Shiny_74 - 21300042: Sonic 3K HUD Shiny_75 - 21300044: Sonic 3K HUD Shiny_76 - 21300046: Sonic 3K HUD Shiny_77 - 21300048: Sonic 3K HUD Shiny_78 - 21300050: Sonic 3K HUD Shiny_79 - 21300052: Sonic 3K HUD Shiny_80 - 21300054: Sonic 3K HUD Shiny_81 - 21300056: Sonic 3K HUD Shiny_82 - 21300058: Sonic 3K HUD Shiny_83 - 21300060: Sonic 3K HUD Shiny_84 - 21300062: Sonic 3K HUD Shiny_85 - 21300064: Sonic 3K HUD Shiny_86 - 21300066: Sonic 3K HUD Shiny_87 - 21300068: Sonic 3K HUD Shiny_88 - 21300070: Sonic 3K HUD Shiny_89 - 21300072: Sonic 3K HUD Shiny_90 - 21300074: Sonic 3K HUD Shiny_32 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K HUD Shiny_48 - rect: - serializedVersion: 2 - x: 1 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_49 - rect: - serializedVersion: 2 - x: 10 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_50 - rect: - serializedVersion: 2 - x: 21 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_51 - rect: - serializedVersion: 2 - x: 31 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_52 - rect: - serializedVersion: 2 - x: 41 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_53 - rect: - serializedVersion: 2 - x: 51 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_54 - rect: - serializedVersion: 2 - x: 61 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_55 - rect: - serializedVersion: 2 - x: 71 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_56 - rect: - serializedVersion: 2 - x: 81 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_57 - rect: - serializedVersion: 2 - x: 91 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_58 - rect: - serializedVersion: 2 - x: 2 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_65 - rect: - serializedVersion: 2 - x: 11 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_66 - rect: - serializedVersion: 2 - x: 21 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_67 - rect: - serializedVersion: 2 - x: 31 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_68 - rect: - serializedVersion: 2 - x: 41 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_69 - rect: - serializedVersion: 2 - x: 51 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_70 - rect: - serializedVersion: 2 - x: 61 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_71 - rect: - serializedVersion: 2 - x: 71 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_72 - rect: - serializedVersion: 2 - x: 81 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_73 - rect: - serializedVersion: 2 - x: 93 - y: 39 - width: 5 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_74 - rect: - serializedVersion: 2 - x: 1 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_75 - rect: - serializedVersion: 2 - x: 11 - y: 26 - width: 9 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_76 - rect: - serializedVersion: 2 - x: 21 - y: 26 - width: 7 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_77 - rect: - serializedVersion: 2 - x: 70 - y: 13 - width: 12 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_78 - rect: - serializedVersion: 2 - x: 39 - y: 26 - width: 11 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_79 - rect: - serializedVersion: 2 - x: 51 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_80 - rect: - serializedVersion: 2 - x: 61 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_81 - rect: - serializedVersion: 2 - x: 71 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_82 - rect: - serializedVersion: 2 - x: 81 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_83 - rect: - serializedVersion: 2 - x: 91 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_84 - rect: - serializedVersion: 2 - x: 1 - y: 13 - width: 7 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_85 - rect: - serializedVersion: 2 - x: 11 - y: 13 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_86 - rect: - serializedVersion: 2 - x: 21 - y: 13 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_87 - rect: - serializedVersion: 2 - x: 82 - y: 13 - width: 12 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_88 - rect: - serializedVersion: 2 - x: 41 - y: 13 - width: 9 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_89 - rect: - serializedVersion: 2 - x: 51 - y: 13 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_90 - rect: - serializedVersion: 2 - x: 61 - y: 13 - width: 9 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD Shiny_32 - rect: - serializedVersion: 2 - x: 30 - y: 13 - width: 10 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD.mat.meta deleted file mode 100644 index 651c9c0..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f84f1547444f1114aa4826606c904e3c -timeCreated: 1448895146 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD.png.meta deleted file mode 100644 index 1f1e15a..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K HUD/Sonic 3K HUD.png.meta +++ /dev/null @@ -1,474 +0,0 @@ -fileFormatVersion: 2 -guid: 55cc68ef10b0c6045bc90deb06cc7b2f -timeCreated: 1449007408 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K HUD_48 - 21300002: Sonic 3K HUD_49 - 21300004: Sonic 3K HUD_50 - 21300006: Sonic 3K HUD_51 - 21300008: Sonic 3K HUD_52 - 21300010: Sonic 3K HUD_53 - 21300012: Sonic 3K HUD_54 - 21300014: Sonic 3K HUD_55 - 21300016: Sonic 3K HUD_56 - 21300018: Sonic 3K HUD_57 - 21300020: Sonic 3K HUD_58 - 21300022: Sonic 3K HUD_65 - 21300024: Sonic 3K HUD_66 - 21300026: Sonic 3K HUD_67 - 21300028: Sonic 3K HUD_68 - 21300030: Sonic 3K HUD_69 - 21300032: Sonic 3K HUD_70 - 21300034: Sonic 3K HUD_71 - 21300036: Sonic 3K HUD_72 - 21300038: Sonic 3K HUD_73 - 21300040: Sonic 3K HUD_74 - 21300042: Sonic 3K HUD_75 - 21300044: Sonic 3K HUD_76 - 21300046: Sonic 3K HUD_77 - 21300048: Sonic 3K HUD_78 - 21300050: Sonic 3K HUD_79 - 21300052: Sonic 3K HUD_80 - 21300054: Sonic 3K HUD_81 - 21300056: Sonic 3K HUD_82 - 21300058: Sonic 3K HUD_83 - 21300060: Sonic 3K HUD_84 - 21300062: Sonic 3K HUD_85 - 21300064: Sonic 3K HUD_86 - 21300066: Sonic 3K HUD_87 - 21300068: Sonic 3K HUD_88 - 21300070: Sonic 3K HUD_89 - 21300072: Sonic 3K HUD_90 - 21300074: Sonic 3K HUD_32 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K HUD_48 - rect: - serializedVersion: 2 - x: 1 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_49 - rect: - serializedVersion: 2 - x: 10 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_50 - rect: - serializedVersion: 2 - x: 21 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_51 - rect: - serializedVersion: 2 - x: 31 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_52 - rect: - serializedVersion: 2 - x: 41 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_53 - rect: - serializedVersion: 2 - x: 51 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_54 - rect: - serializedVersion: 2 - x: 61 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_55 - rect: - serializedVersion: 2 - x: 71 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_56 - rect: - serializedVersion: 2 - x: 81 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_57 - rect: - serializedVersion: 2 - x: 91 - y: 52 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_58 - rect: - serializedVersion: 2 - x: 2 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_65 - rect: - serializedVersion: 2 - x: 11 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_66 - rect: - serializedVersion: 2 - x: 21 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_67 - rect: - serializedVersion: 2 - x: 31 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_68 - rect: - serializedVersion: 2 - x: 41 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_69 - rect: - serializedVersion: 2 - x: 51 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_70 - rect: - serializedVersion: 2 - x: 61 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_71 - rect: - serializedVersion: 2 - x: 71 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_72 - rect: - serializedVersion: 2 - x: 81 - y: 39 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_73 - rect: - serializedVersion: 2 - x: 93 - y: 39 - width: 5 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_74 - rect: - serializedVersion: 2 - x: 1 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_75 - rect: - serializedVersion: 2 - x: 11 - y: 26 - width: 9 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_76 - rect: - serializedVersion: 2 - x: 21 - y: 26 - width: 7 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_77 - rect: - serializedVersion: 2 - x: 70 - y: 13 - width: 12 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_78 - rect: - serializedVersion: 2 - x: 39 - y: 26 - width: 11 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_79 - rect: - serializedVersion: 2 - x: 51 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_80 - rect: - serializedVersion: 2 - x: 61 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_81 - rect: - serializedVersion: 2 - x: 71 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_82 - rect: - serializedVersion: 2 - x: 81 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_83 - rect: - serializedVersion: 2 - x: 91 - y: 26 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_84 - rect: - serializedVersion: 2 - x: 1 - y: 13 - width: 7 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_85 - rect: - serializedVersion: 2 - x: 11 - y: 13 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_86 - rect: - serializedVersion: 2 - x: 21 - y: 13 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_87 - rect: - serializedVersion: 2 - x: 82 - y: 13 - width: 12 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_88 - rect: - serializedVersion: 2 - x: 41 - y: 13 - width: 9 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_89 - rect: - serializedVersion: 2 - x: 51 - y: 13 - width: 8 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_90 - rect: - serializedVersion: 2 - x: 61 - y: 13 - width: 9 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K HUD_32 - rect: - serializedVersion: 2 - x: 30 - y: 13 - width: 10 - height: 12 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage.fontsettings.meta deleted file mode 100644 index 61b0b2a..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 02c9b303d55cfb448a08638cfd8bcb35 -timeCreated: 1449008245 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage.meta deleted file mode 100644 index 64e837b..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2c6c5f177d895be4e8dc68c3f9725e5b -folderAsset: yes -timeCreated: 1449007972 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage/Sonic 3K Special Stage.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage/Sonic 3K Special Stage.mat.meta deleted file mode 100644 index 02ef5e9..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage/Sonic 3K Special Stage.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 064c9505b3111a14ab8ab8d668afb1cb -timeCreated: 1449008242 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage/Sonic 3K Special Stage.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage/Sonic 3K Special Stage.png.meta deleted file mode 100644 index cc29558..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Special Stage/Sonic 3K Special Stage.png.meta +++ /dev/null @@ -1,177 +0,0 @@ -fileFormatVersion: 2 -guid: a2fa23041bdf6b341a2ec2f919f2a1ce -timeCreated: 1449008532 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic 3K Special Stage_48 - 21300002: Sonic 3K Special Stage_49 - 21300004: Sonic 3K Special Stage_50 - 21300006: Sonic 3K Special Stage_51 - 21300008: Sonic 3K Special Stage_52 - 21300010: Sonic 3K Special Stage_53 - 21300012: Sonic 3K Special Stage_54 - 21300014: Sonic 3K Special Stage_55 - 21300016: Sonic 3K Special Stage_56 - 21300018: Sonic 3K Special Stage_57 - 21300020: Sonic 3K Special Stage_32 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K Special Stage_48 - rect: - serializedVersion: 2 - x: 0 - y: 48 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_49 - rect: - serializedVersion: 2 - x: 16 - y: 48 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_50 - rect: - serializedVersion: 2 - x: 32 - y: 48 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_51 - rect: - serializedVersion: 2 - x: 48 - y: 48 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_52 - rect: - serializedVersion: 2 - x: 0 - y: 31 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_53 - rect: - serializedVersion: 2 - x: 16 - y: 31 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_54 - rect: - serializedVersion: 2 - x: 32 - y: 31 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_55 - rect: - serializedVersion: 2 - x: 48 - y: 31 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_56 - rect: - serializedVersion: 2 - x: 0 - y: 14 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_57 - rect: - serializedVersion: 2 - x: 16 - y: 14 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Special Stage_32 - rect: - serializedVersion: 2 - x: 32 - y: 14 - width: 15 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card.fontsettings.meta deleted file mode 100644 index 2912bc7..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 888eb87d852e93645923b315e9748c85 -timeCreated: 1448892381 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card.meta deleted file mode 100644 index 48bbf44..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 718d169be0798744786d53452e567de1 -folderAsset: yes -timeCreated: 1448892096 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card/Sonic 3K Title Card.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card/Sonic 3K Title Card.mat.meta deleted file mode 100644 index e2e14c6..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card/Sonic 3K Title Card.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e34b2035a2871cc4fa65fc7338a4db0c -timeCreated: 1448892376 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card/Sonic 3K Title Card.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card/Sonic 3K Title Card.png.meta deleted file mode 100644 index e236a4b..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic 3K Title Card/Sonic 3K Title Card.png.meta +++ /dev/null @@ -1,677 +0,0 @@ -fileFormatVersion: 2 -guid: 967b48a6e35fc544c9662895b76f58be -timeCreated: 1448948680 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: 65 - 21300002: 66 - 21300004: 67 - 21300006: 68 - 21300008: 69 - 21300010: 70 - 21300012: 71 - 21300014: 72 - 21300016: 73 - 21300018: 74 - 21300020: 75 - 21300022: 76 - 21300024: 77 - 21300026: 78 - 21300028: 79 - 21300030: 80 - 21300032: 81 - 21300034: 82 - 21300036: 83 - 21300038: 84 - 21300040: 85 - 21300042: 86 - 21300044: 87 - 21300046: 88 - 21300048: 89 - 21300050: 90 - 21300052: 32 - 21300054: Sonic 3K Title Card_114 - 21300056: Sonic 3K Title Card_82 - 21300058: Sonic 3K Title Card_121 - 21300060: Sonic 3K Title Card_89 - 21300062: Sonic 3K Title Card_122 - 21300064: Sonic 3K Title Card_102 - 21300066: Sonic 3K Title Card_108 - 21300068: Sonic 3K Title Card_76 - 21300070: Sonic 3K Title Card_113 - 21300072: Sonic 3K Title Card_111 - 21300074: Sonic 3K Title Card_81 - 21300076: Sonic 3K Title Card_79 - 21300078: Sonic 3K Title Card_66 - 21300080: Sonic 3K Title Card_65 - 21300082: Sonic 3K Title Card_84 - 21300084: Sonic 3K Title Card_116 - 21300086: Sonic 3K Title Card_97 - 21300088: Sonic 3K Title Card_98 - 21300090: Sonic 3K Title Card_70 - 21300092: Sonic 3K Title Card_110 - 21300094: Sonic 3K Title Card_78 - 21300096: Sonic 3K Title Card_105 - 21300098: Sonic 3K Title Card_73 - 21300100: Sonic 3K Title Card_103 - 21300102: Sonic 3K Title Card_101 - 21300104: Sonic 3K Title Card_104 - 21300106: Sonic 3K Title Card_72 - 21300108: Sonic 3K Title Card_68 - 21300110: Sonic 3K Title Card_100 - 21300112: Sonic 3K Title Card_99 - 21300114: Sonic 3K Title Card_67 - 21300116: Sonic 3K Title Card_109 - 21300118: Sonic 3K Title Card_77 - 21300120: Sonic 3K Title Card_71 - 21300122: Sonic 3K Title Card_90 - 21300124: Sonic 3K Title Card_107 - 21300126: Sonic 3K Title Card_106 - 21300128: Sonic 3K Title Card_74 - 21300130: Sonic 3K Title Card_75 - 21300132: Sonic 3K Title Card_115 - 21300134: Sonic 3K Title Card_83 - 21300136: Sonic 3K Title Card_117 - 21300138: Sonic 3K Title Card_85 - 21300140: Sonic 3K Title Card_112 - 21300142: Sonic 3K Title Card_80 - 21300144: Sonic 3K Title Card_118 - 21300146: Sonic 3K Title Card_86 - 21300148: Sonic 3K Title Card_119 - 21300150: Sonic 3K Title Card_87 - 21300152: Sonic 3K Title Card_120 - 21300154: Sonic 3K Title Card_88 - 21300156: Sonic 3K Title Card_32 - 21300158: Sonic 3K Title Card_69 - 21300160: Sonic 3K Title Card_95 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic 3K Title Card_114 - rect: - serializedVersion: 2 - x: 67 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_82 - rect: - serializedVersion: 2 - x: 67 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_121 - rect: - serializedVersion: 2 - x: 201 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_89 - rect: - serializedVersion: 2 - x: 201 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_122 - rect: - serializedVersion: 2 - x: 218 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_102 - rect: - serializedVersion: 2 - x: 85 - y: 146 - width: 12 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_108 - rect: - serializedVersion: 2 - x: 182 - y: 146 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_76 - rect: - serializedVersion: 2 - x: 182 - y: 220 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_113 - rect: - serializedVersion: 2 - x: 42 - y: 109 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_111 - rect: - serializedVersion: 2 - x: 0 - y: 109 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_81 - rect: - serializedVersion: 2 - x: 42 - y: 183 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_79 - rect: - serializedVersion: 2 - x: 0 - y: 183 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_66 - rect: - serializedVersion: 2 - x: 18 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_65 - rect: - serializedVersion: 2 - x: 0 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_84 - rect: - serializedVersion: 2 - x: 98 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_116 - rect: - serializedVersion: 2 - x: 98 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_97 - rect: - serializedVersion: 2 - x: 0 - y: 146 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_98 - rect: - serializedVersion: 2 - x: 18 - y: 146 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_70 - rect: - serializedVersion: 2 - x: 85 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_110 - rect: - serializedVersion: 2 - x: 216 - y: 146 - width: 13 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_78 - rect: - serializedVersion: 2 - x: 216 - y: 220 - width: 13 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_105 - rect: - serializedVersion: 2 - x: 145 - y: 146 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_73 - rect: - serializedVersion: 2 - x: 145 - y: 220 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_103 - rect: - serializedVersion: 2 - x: 101 - y: 146 - width: 16 - height: 25 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_101 - rect: - serializedVersion: 2 - x: 67 - y: 146 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_104 - rect: - serializedVersion: 2 - x: 128 - y: 146 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_72 - rect: - serializedVersion: 2 - x: 128 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_68 - rect: - serializedVersion: 2 - x: 50 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_100 - rect: - serializedVersion: 2 - x: 50 - y: 146 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_99 - rect: - serializedVersion: 2 - x: 34 - y: 146 - width: 15 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_67 - rect: - serializedVersion: 2 - x: 34 - y: 220 - width: 15 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_109 - rect: - serializedVersion: 2 - x: 191 - y: 146 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_77 - rect: - serializedVersion: 2 - x: 191 - y: 220 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_71 - rect: - serializedVersion: 2 - x: 101 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_90 - rect: - serializedVersion: 2 - x: 218 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_107 - rect: - serializedVersion: 2 - x: 164 - y: 146 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_106 - rect: - serializedVersion: 2 - x: 155 - y: 146 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_74 - rect: - serializedVersion: 2 - x: 155 - y: 220 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_75 - rect: - serializedVersion: 2 - x: 164 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_115 - rect: - serializedVersion: 2 - x: 83 - y: 109 - width: 14 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_83 - rect: - serializedVersion: 2 - x: 83 - y: 183 - width: 14 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_117 - rect: - serializedVersion: 2 - x: 127 - y: 109 - width: 14 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_85 - rect: - serializedVersion: 2 - x: 127 - y: 183 - width: 14 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_112 - rect: - serializedVersion: 2 - x: 25 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_80 - rect: - serializedVersion: 2 - x: 25 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_118 - rect: - serializedVersion: 2 - x: 144 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_86 - rect: - serializedVersion: 2 - x: 144 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_119 - rect: - serializedVersion: 2 - x: 161 - y: 109 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_87 - rect: - serializedVersion: 2 - x: 161 - y: 183 - width: 24 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_120 - rect: - serializedVersion: 2 - x: 185 - y: 109 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_88 - rect: - serializedVersion: 2 - x: 185 - y: 183 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_32 - rect: - serializedVersion: 2 - x: 230 - y: 146 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_69 - rect: - serializedVersion: 2 - x: 67 - y: 220 - width: 16 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: Sonic 3K Title Card_95 - rect: - serializedVersion: 2 - x: 235 - y: 183 - width: 8 - height: 24 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear.fontsettings.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear.fontsettings.meta deleted file mode 100644 index 0130756..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear.fontsettings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b031e6f429e5e254bb1ea5e1673d8ed3 -timeCreated: 1449016276 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear.meta deleted file mode 100644 index 419c0bd..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b155d11f4bef86f47ac3ed5488fa8b88 -folderAsset: yes -timeCreated: 1449015960 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear/Sonic CD Act Clear.mat.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear/Sonic CD Act Clear.mat.meta deleted file mode 100644 index dfd09d0..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear/Sonic CD Act Clear.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f5890ae1d19874c44b3328ec2641b3ec -timeCreated: 1449016273 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear/Sonic CD Act Clear.png.meta b/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear/Sonic CD Act Clear.png.meta deleted file mode 100644 index bedf1fb..0000000 --- a/Assets/Sonic 16-bit/UI/Fonts/Sonic CD Act Clear/Sonic CD Act Clear.png.meta +++ /dev/null @@ -1,417 +0,0 @@ -fileFormatVersion: 2 -guid: a8667a3bf32dbbf4d870d840cbe857a7 -timeCreated: 1449016265 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: Sonic CD Act Clear_65 - 21300002: Sonic CD Act Clear_66 - 21300004: Sonic CD Act Clear_67 - 21300006: Sonic CD Act Clear_68 - 21300008: Sonic CD Act Clear_69 - 21300010: Sonic CD Act Clear_70 - 21300012: Sonic CD Act Clear_71 - 21300014: Sonic CD Act Clear_72 - 21300016: Sonic CD Act Clear_73 - 21300018: Sonic CD Act Clear_74 - 21300020: Sonic CD Act Clear_75 - 21300022: Sonic CD Act Clear_76 - 21300024: Sonic CD Act Clear_77 - 21300026: Sonic CD Act Clear_78 - 21300028: Sonic CD Act Clear_80 - 21300030: Sonic CD Act Clear_81 - 21300032: Sonic CD Act Clear_82 - 21300034: Sonic CD Act Clear_83 - 21300036: Sonic CD Act Clear_84 - 21300038: Sonic CD Act Clear_85 - 21300040: Sonic CD Act Clear_86 - 21300042: Sonic CD Act Clear_87 - 21300044: Sonic CD Act Clear_88 - 21300046: Sonic CD Act Clear_89 - 21300048: Sonic CD Act Clear_90 - 21300050: Sonic CD Act Clear_111 - 21300052: Sonic CD Act Clear_110 - 21300054: Sonic CD Act Clear_101 - 21300056: Sonic CD Act Clear_79 - 21300058: Sonic CD Act Clear_32 - 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: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: Sonic CD Act Clear_65 - rect: - serializedVersion: 2 - x: 0 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_66 - rect: - serializedVersion: 2 - x: 17 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_67 - rect: - serializedVersion: 2 - x: 34 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_68 - rect: - serializedVersion: 2 - x: 51 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_69 - rect: - serializedVersion: 2 - x: 68 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_70 - rect: - serializedVersion: 2 - x: 85 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_71 - rect: - serializedVersion: 2 - x: 102 - y: 51 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_72 - rect: - serializedVersion: 2 - x: 0 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_73 - rect: - serializedVersion: 2 - x: 17 - y: 37 - width: 8 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_74 - rect: - serializedVersion: 2 - x: 26 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_75 - rect: - serializedVersion: 2 - x: 43 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_76 - rect: - serializedVersion: 2 - x: 60 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_77 - rect: - serializedVersion: 2 - x: 77 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_78 - rect: - serializedVersion: 2 - x: 95 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_80 - rect: - serializedVersion: 2 - x: 0 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_81 - rect: - serializedVersion: 2 - x: 17 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_82 - rect: - serializedVersion: 2 - x: 34 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_83 - rect: - serializedVersion: 2 - x: 51 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_84 - rect: - serializedVersion: 2 - x: 68 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_85 - rect: - serializedVersion: 2 - x: 85 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_86 - rect: - serializedVersion: 2 - x: 102 - y: 23 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_87 - rect: - serializedVersion: 2 - x: 0 - y: 9 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_88 - rect: - serializedVersion: 2 - x: 17 - y: 9 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_89 - rect: - serializedVersion: 2 - x: 34 - y: 9 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_90 - rect: - serializedVersion: 2 - x: 51 - y: 9 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_111 - rect: - serializedVersion: 2 - x: 68 - y: 9 - width: 12 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_110 - rect: - serializedVersion: 2 - x: 81 - y: 9 - width: 11 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_101 - rect: - serializedVersion: 2 - x: 93 - y: 9 - width: 12 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_79 - rect: - serializedVersion: 2 - x: 112 - y: 37 - width: 16 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: Sonic CD Act Clear_32 - rect: - serializedVersion: 2 - x: 119 - y: 51 - width: 8 - height: 13 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - outline: [] - spritePackingTag: Fonts - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD.meta b/Assets/Sonic 16-bit/UI/HUD.meta deleted file mode 100644 index 5b7b797..0000000 --- a/Assets/Sonic 16-bit/UI/HUD.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: e9618871f73ec6c449ae7e9876270810 -folderAsset: yes -timeCreated: 1449435780 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K HUD.prefab.meta b/Assets/Sonic 16-bit/UI/HUD/S3K HUD.prefab.meta deleted file mode 100644 index 2c5a2cc..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K HUD.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a3954a50fb7d0c74f8714f842f55f190 -timeCreated: 1449206565 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K.meta b/Assets/Sonic 16-bit/UI/HUD/S3K.meta deleted file mode 100644 index 083e846..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 13f977105f12b1242aacdf9a001a1391 -folderAsset: yes -timeCreated: 1449435786 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter.meta deleted file mode 100644 index 1a37103..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6d6a60351f596e349bfd763e50bc84ec -folderAsset: yes -timeCreated: 1456528676 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_knuckles_icon.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_knuckles_icon.png.meta deleted file mode 100644 index 5993523..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_knuckles_icon.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: ae42630dc1c8f0c4d82bb7f0189c5d3d -timeCreated: 1456528677 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_knuckles_name.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_knuckles_name.png.meta deleted file mode 100644 index 67762d8..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_knuckles_name.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 243582b5d6d5d234c9bf9f52eac68651 -timeCreated: 1456528677 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_lifecounter_x.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_lifecounter_x.png.meta deleted file mode 100644 index 6aa6a92..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_lifecounter_x.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: bc099e0db47c2614c9c78f5ed8a7d761 -timeCreated: 1456528969 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_sonic_icon.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_sonic_icon.png.meta deleted file mode 100644 index 6cf18b9..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_sonic_icon.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 5bebb917d2032b4419d595103c391fbb -timeCreated: 1456528677 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_sonic_name.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_sonic_name.png.meta deleted file mode 100644 index 575cfa1..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_sonic_name.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 374a2f5596769fb4d8a9fbf04fe66c7a -timeCreated: 1456528677 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_tails_icon.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_tails_icon.png.meta deleted file mode 100644 index 69b55aa..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_tails_icon.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 4bafd6746434edf4889d810ad5bf9351 -timeCreated: 1456528677 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_tails_name.png.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_tails_name.png.meta deleted file mode 100644 index 2270216..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Life Counter/s3k_tails_name.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 7422004716e03ba4c8b9e54c978f1d1f -timeCreated: 1456528677 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Rings.meta deleted file mode 100644 index ec52ea3..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d450194a9a9962a4b925d4c176641f26 -folderAsset: yes -timeCreated: 1449436294 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings.prefab.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Rings.prefab.meta deleted file mode 100644 index 85b0c89..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bcf4fc5ff1ac6c34583f206a65ab3ca1 -timeCreated: 1449436526 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings/Caution.anim.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Rings/Caution.anim.meta deleted file mode 100644 index 95ee4f6..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings/Caution.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9a534d4fd6b5ed841aaee6026af96c98 -timeCreated: 1449436343 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings/S3K Rings.controller.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Rings/S3K Rings.controller.meta deleted file mode 100644 index bc33167..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Rings/S3K Rings.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 19fa61c2941e5ce4d939fba7887491d6 -timeCreated: 1449436318 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Score.prefab.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Score.prefab.meta deleted file mode 100644 index 0204aa3..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Score.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a996ec592f6f0a64a83142f47410b5f9 -timeCreated: 1449436551 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Time.prefab.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Time.prefab.meta deleted file mode 100644 index 37e4fe2..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Time.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a91118e4af5e2e64e8e74949d481ce84 -timeCreated: 1449436525 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Timer.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Timer.meta deleted file mode 100644 index a367cf8..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Timer.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1c60903f36266da48a0a1821340d3ed8 -folderAsset: yes -timeCreated: 1449435864 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Timer/Caution.anim.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Timer/Caution.anim.meta deleted file mode 100644 index cc55b21..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Timer/Caution.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8819284888853c245a7d0e25dd45c621 -timeCreated: 1449435909 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Timer/S3K Timer.controller.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Timer/S3K Timer.controller.meta deleted file mode 100644 index b14b2e8..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Timer/S3K Timer.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a0c0e54c912b0cb4fac63caa764946d8 -timeCreated: 1449435803 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/HUD/S3K/Top Left.prefab.meta b/Assets/Sonic 16-bit/UI/HUD/S3K/Top Left.prefab.meta deleted file mode 100644 index 8b29df9..0000000 --- a/Assets/Sonic 16-bit/UI/HUD/S3K/Top Left.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c4eb47e5dd770944789f32b357bbdeac -timeCreated: 1449436549 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save Icons.meta b/Assets/Sonic 16-bit/UI/Save Icons.meta deleted file mode 100644 index c166131..0000000 --- a/Assets/Sonic 16-bit/UI/Save Icons.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3e3e81b7b9544fe42a41adaf132420a9 -folderAsset: yes -timeCreated: 1454334921 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save UI.meta b/Assets/Sonic 16-bit/UI/Save UI.meta deleted file mode 100644 index 08b025c..0000000 --- a/Assets/Sonic 16-bit/UI/Save UI.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d6fe96ccab3c38e43bc968e73e0929b0 -folderAsset: yes -timeCreated: 1454335271 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save UI/save_cursor_down.png.meta b/Assets/Sonic 16-bit/UI/Save UI/save_cursor_down.png.meta deleted file mode 100644 index 40c0ee1..0000000 --- a/Assets/Sonic 16-bit/UI/Save UI/save_cursor_down.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: cc102f2124eab454d9774eff4875327e -timeCreated: 1454335271 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save UI/save_cursor_up.png.meta b/Assets/Sonic 16-bit/UI/Save UI/save_cursor_up.png.meta deleted file mode 100644 index b1c3f23..0000000 --- a/Assets/Sonic 16-bit/UI/Save UI/save_cursor_up.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 587d12ae5885f3d4a92cfd54173f0daf -timeCreated: 1454335271 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save UI/save_dialog_base.png.meta b/Assets/Sonic 16-bit/UI/Save UI/save_dialog_base.png.meta deleted file mode 100644 index 043bcd8..0000000 --- a/Assets/Sonic 16-bit/UI/Save UI/save_dialog_base.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: cae5c124bf8037641a03d7a151856376 -timeCreated: 1454539405 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save UI/save_icon_new.png.meta b/Assets/Sonic 16-bit/UI/Save UI/save_icon_new.png.meta deleted file mode 100644 index e81ed43..0000000 --- a/Assets/Sonic 16-bit/UI/Save UI/save_icon_new.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: d18d5ad28816da94d8d4a4af416326e2 -timeCreated: 1454334921 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Save UI/save_outline.png.meta b/Assets/Sonic 16-bit/UI/Save UI/save_outline.png.meta deleted file mode 100644 index db833be..0000000 --- a/Assets/Sonic 16-bit/UI/Save UI/save_outline.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 504be402310580648b8b97981fcc2595 -timeCreated: 1454345480 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards.meta b/Assets/Sonic 16-bit/UI/Title Cards.meta deleted file mode 100644 index fff052a..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: c56791940610c344fba3e44cd8196121 -folderAsset: yes -timeCreated: 1457201245 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear.meta deleted file mode 100644 index 310ba67..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 4a720cb7c40f25848bbc25abd9f2b944 -folderAsset: yes -timeCreated: 1457217220 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear.prefab.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear.prefab.meta deleted file mode 100644 index d589969..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 23174dc3b692e1545b9cba471a110638 -timeCreated: 1457205084 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations.meta deleted file mode 100644 index 820ad2a..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 5a8e0e2f9169e994ab6a68776442065c -folderAsset: yes -timeCreated: 1457205089 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations/Act Clear.controller.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations/Act Clear.controller.meta deleted file mode 100644 index 9401a0d..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations/Act Clear.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4e436605f58cbf94b8943350ff279122 -timeCreated: 1457204081 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations/Enter.anim.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations/Enter.anim.meta deleted file mode 100644 index 5f5e879..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Animations/Enter.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 210568725ec59bc4da933c11cf26eea1 -timeCreated: 1457204085 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Sprites.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Sprites.meta deleted file mode 100644 index 084f2e7..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: db9f1c2549d472442b742ca22a9b581b -folderAsset: yes -timeCreated: 1457201245 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Sprites/s3k_actclear.png.meta b/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Sprites/s3k_actclear.png.meta deleted file mode 100644 index fb08b9a..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Act Clear/Sprites/s3k_actclear.png.meta +++ /dev/null @@ -1,156 +0,0 @@ -fileFormatVersion: 2 -guid: 6ee231847b28c9242b2853cafe391ffe -timeCreated: 1457202855 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: s3k_actclear_sonic - 21300002: s3k_actclear_tails - 21300004: s3k_actclear_knuckles - 21300006: s3k_actclear_super - 21300008: s3k_actclear_hyper - 21300010: s3k_actclear_act1 - 21300012: s3k_actclear_act2 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: s3k_actclear_sonic - rect: - serializedVersion: 2 - x: 0 - y: 69 - width: 72 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_actclear_tails - rect: - serializedVersion: 2 - x: 0 - y: 52 - width: 64 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_actclear_knuckles - rect: - serializedVersion: 2 - x: 0 - y: 35 - width: 116 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_actclear_super - rect: - serializedVersion: 2 - x: 0 - y: 18 - width: 74 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_actclear_hyper - rect: - serializedVersion: 2 - x: 0 - y: 1 - width: 74 - height: 16 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: [] - - name: s3k_actclear_act1 - rect: - serializedVersion: 2 - x: 80 - y: 53 - width: 48 - height: 32 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -10, y: 16} - - {x: -9, y: -1} - - {x: -7, y: -2} - - {x: -5, y: -2} - - {x: -11, y: -2} - - {x: -22, y: -1} - - {x: -24, y: -5} - - {x: -24, y: -16} - - {x: 24, y: -16} - - {x: 24, y: 16} - - name: s3k_actclear_act2 - rect: - serializedVersion: 2 - x: 80 - y: 0 - width: 48 - height: 34 - alignment: 0 - pivot: {x: 0.5, y: 0.5} - border: {x: 0, y: 0, z: 0, w: 0} - outline: - - - {x: -4, y: 17} - - {x: -23, y: -6} - - {x: -23, y: -17} - - {x: 24, y: -17} - - {x: 24, y: 17} - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Game Over.meta b/Assets/Sonic 16-bit/UI/Title Cards/Game Over.meta deleted file mode 100644 index 244eda2..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Game Over.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 25a27e8e8ea63ca4e95df9d866bff4bc -folderAsset: yes -timeCreated: 1456894775 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Game Over.prefab.meta b/Assets/Sonic 16-bit/UI/Title Cards/Game Over.prefab.meta deleted file mode 100644 index a3e846b..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Game Over.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f36e362371856574aba072c8a00d33c6 -timeCreated: 1456894758 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Game Over/Enter.anim.meta b/Assets/Sonic 16-bit/UI/Title Cards/Game Over/Enter.anim.meta deleted file mode 100644 index 117a3af..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Game Over/Enter.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e391d0b1b6aa9be4aa8fae30b27f3d6f -timeCreated: 1456894790 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Game Over/Game Over.controller.meta b/Assets/Sonic 16-bit/UI/Title Cards/Game Over/Game Over.controller.meta deleted file mode 100644 index b18b09c..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Game Over/Game Over.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: dbc62842af370e640978e8d465a72485 -timeCreated: 1456894783 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/UI/Title Cards/Time Over.prefab.meta b/Assets/Sonic 16-bit/UI/Title Cards/Time Over.prefab.meta deleted file mode 100644 index 174a48b..0000000 --- a/Assets/Sonic 16-bit/UI/Title Cards/Time Over.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 81083f29d782ffa4c95904467412ba8d -timeCreated: 1457217289 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones.meta b/Assets/Sonic 16-bit/Zones.meta deleted file mode 100644 index 742085d..0000000 --- a/Assets/Sonic 16-bit/Zones.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 53363322e36ecac42bf1893afbd3a805 -folderAsset: yes -timeCreated: 1446842374 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant.meta deleted file mode 100644 index 3b67295..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3293d20ae8426544b8421492ebbc607d -folderAsset: yes -timeCreated: 1446842904 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites.meta deleted file mode 100644 index 35313d6..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 24bc5b9db62b6844f99663ddae38edd1 -folderAsset: yes -timeCreated: 1445929911 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block01.png.meta deleted file mode 100644 index 9210e71..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9fb35eff3c3e64d46989f7f9c840d712 -timeCreated: 1445960957 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block02.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block02.png.meta deleted file mode 100644 index adf9222..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: fb149c3998f484f49b6f10df203e1473 -timeCreated: 1445960963 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block03.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block03.png.meta deleted file mode 100644 index c335325..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: adf723e862b689146b6ca405ede44869 -timeCreated: 1445960958 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block04.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block04.png.meta deleted file mode 100644 index 89b84c5..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c4bfffcd25fe9c443942b24a9ea2a4ee -timeCreated: 1445960960 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block05.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block05.png.meta deleted file mode 100644 index f381071..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f7d7703b986817845bd88c5e8a01e6ac -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block06.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block06.png.meta deleted file mode 100644 index d9e16a0..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3cac3b89e619cae4a93629f22cf151ec -timeCreated: 1445960952 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block07.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block07.png.meta deleted file mode 100644 index e5c8e8a..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block07.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1e5850da150665c499c6be4b72a50c83 -timeCreated: 1445960950 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block08.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block08.png.meta deleted file mode 100644 index 0daa4ac..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block08.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2bfb8e8831cb66e47a5f4e96f4adc63c -timeCreated: 1445960951 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block09.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block09.png.meta deleted file mode 100644 index 7913e46..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block09.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6c3c858b31fbbe444a371182eda13cf9 -timeCreated: 1445960955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block10.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block10.png.meta deleted file mode 100644 index 3e84178..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block10.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 686612b567fb7d949baa312b35099ef9 -timeCreated: 1445960954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block11.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block11.png.meta deleted file mode 100644 index b0853c8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block11.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2b45567d0e8fac34bb772d79d53f4692 -timeCreated: 1445960950 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block12.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block12.png.meta deleted file mode 100644 index 18471b6..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block12.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3704251d5740b6d4aaf23478a66591b7 -timeCreated: 1445960951 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block13.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block13.png.meta deleted file mode 100644 index 4fa3310..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block13.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ac1e2b5f8d169de429f02fe39e2233a2 -timeCreated: 1445960958 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block14.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block14.png.meta deleted file mode 100644 index 931890c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block14.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: cc58e6b67181be3438c90119d8f89cab -timeCreated: 1445960960 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block15.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block15.png.meta deleted file mode 100644 index 5ea5f85..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block15.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: bee9210ee487bed469f88d3ae2ecff04 -timeCreated: 1445960959 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block16.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block16.png.meta deleted file mode 100644 index 56ac827..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block16.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 977c6f63be658854cb0e30d3d45bdd67 -timeCreated: 1445960957 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block17.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block17.png.meta deleted file mode 100644 index 31080ca..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block17.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3eb18e7d58b1eb244ae8cdca7aef3828 -timeCreated: 1445960952 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block18.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block18.png.meta deleted file mode 100644 index 8ef6935..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block18.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c8068b770fe92ef47889ad6f602e4bee -timeCreated: 1445960960 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block19.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block19.png.meta deleted file mode 100644 index 310c60f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block19.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8feece918a385f747b39146aa8b4aed3 -timeCreated: 1445960956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block20.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block20.png.meta deleted file mode 100644 index 22f0d2c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block20.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 79028c3c7b04b664aaa6e192f4ef48c2 -timeCreated: 1445960955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block21.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block21.png.meta deleted file mode 100644 index dcc305f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block21.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ced4e949a19088e41b838a05e1432bdf -timeCreated: 1445960960 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block22.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block22.png.meta deleted file mode 100644 index 4f6b127..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block22.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 44447b7147ab64c4d96dfc6066c273e1 -timeCreated: 1445960953 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block23.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block23.png.meta deleted file mode 100644 index b097476..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block23.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: bb5474b6a9d5f7c45ba3500d0fb60c4f -timeCreated: 1445960959 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block24.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block24.png.meta deleted file mode 100644 index a884a45..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block24.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c4c620a4defa56245a11763039636e97 -timeCreated: 1445960960 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block25.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block25.png.meta deleted file mode 100644 index 01ce41e..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block25.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: d956d9746baeb664f9f5ba809a564e2b -timeCreated: 1445960961 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block26.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block26.png.meta deleted file mode 100644 index de55684..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block26.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b2d52c7c445cbf44286f964a832a4096 -timeCreated: 1445960959 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block27.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block27.png.meta deleted file mode 100644 index d764891..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block27.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 024aea4d503d1634da6fd19e8bf7b2ef -timeCreated: 1445960949 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block28.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block28.png.meta deleted file mode 100644 index 687baf8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block28.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b568dc7f3671fdc4da074e75ed823a4f -timeCreated: 1445960959 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block29.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block29.png.meta deleted file mode 100644 index f3d46d2..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block29.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 54b4820908c966a4a8967ba0c7bc8194 -timeCreated: 1445960954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block30.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block30.png.meta deleted file mode 100644 index a4b3f46..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block30.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f2091a264bc3d4d4e99bd867fc992a3b -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block31.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block31.png.meta deleted file mode 100644 index a95e9c2..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block31.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2f798865097a9e34d95ea10aea6d88fc -timeCreated: 1445960951 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block32.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block32.png.meta deleted file mode 100644 index d0ce075..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block32.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9c067d3e679913c408be4d3dbe520682 -timeCreated: 1445960957 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block33.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block33.png.meta deleted file mode 100644 index ce6579b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block33.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 32a6e2f77e3fcb540bf4176086cfc474 -timeCreated: 1445960951 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block34.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block34.png.meta deleted file mode 100644 index 8e1a62f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block34.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e143338c1d53f91459d4199e4321c907 -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block35.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block35.png.meta deleted file mode 100644 index 95caaa1..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block35.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 06a549b5ffd845e44a2f55ba7f9ba9ce -timeCreated: 1446322992 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block36.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block36.png.meta deleted file mode 100644 index 4ae1b32..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block36.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 89fa80702bc2ad04792b042fadc54962 -timeCreated: 1446325134 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block37.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block37.png.meta deleted file mode 100644 index a12070d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block37.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: eb772ab263277954d9943f80c8f6c6ca -timeCreated: 1446325588 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block38.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block38.png.meta deleted file mode 100644 index a805745..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block38.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6a70629a73a7a284ea42ae9da9737cc0 -timeCreated: 1446325726 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block39.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block39.png.meta deleted file mode 100644 index c9c27da..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block39.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 5c87a79f6ef7e094e91366886085e318 -timeCreated: 1446326038 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block40.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block40.png.meta deleted file mode 100644 index 778a2ec..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block40.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 19661d61da7071c4ab376150a8f6cd05 -timeCreated: 1446326168 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block41.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block41.png.meta deleted file mode 100644 index 338d80b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block41.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 40cf595f1e0ff084d8a9ab0f52c80cdc -timeCreated: 1446422336 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block42.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block42.png.meta deleted file mode 100644 index 9f34d57..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block42.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: dae2fbf702f215a428bd3e3013fefc18 -timeCreated: 1446326501 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block43.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block43.png.meta deleted file mode 100644 index 8e731da..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block43.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9df98a872bc1e9c40b06cc3ba0bbdb6b -timeCreated: 1446538144 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block44.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block44.png.meta deleted file mode 100644 index 10b9bed..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/block44.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c46d6bbd0dcbd6b4ebd3bd16daa7b852 -timeCreated: 1446538144 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/curve01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/curve01.png.meta deleted file mode 100644 index 240deac..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/curve01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: a292840e3c7975d48a84cf8c9a4521b7 -timeCreated: 1445960957 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate01.png.meta deleted file mode 100644 index f7ed92e..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 25e80955f4f5c0d4cb679624db282289 -timeCreated: 1445960950 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate02.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate02.png.meta deleted file mode 100644 index 0f5ae5f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 71027467b804c094fbddc6a2a42c92c4 -timeCreated: 1445960955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate03.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate03.png.meta deleted file mode 100644 index d980fe2..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: a481d009c9500e243abd25a20d3eae6f -timeCreated: 1445960958 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate04.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate04.png.meta deleted file mode 100644 index 36a3119..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 58b54720a13af3b4d967d84abe0bbc35 -timeCreated: 1445960954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate05.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate05.png.meta deleted file mode 100644 index d27cf9c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/grate05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c555622cdf6e5a54c8a7f6cb8af8d31b -timeCreated: 1446326501 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop01.png.meta deleted file mode 100644 index eb7051f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 9954c14ea81538b4d9cc697e4a26ee77 -timeCreated: 1445960957 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop02.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop02.png.meta deleted file mode 100644 index 60a2522..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 86f5b3997c933a8438590cafe45112f2 -timeCreated: 1445960956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop03.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop03.png.meta deleted file mode 100644 index 4586a15..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 6a3be0b021bd62b46b0a3ca31642c614 -timeCreated: 1445960954 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop04.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop04.png.meta deleted file mode 100644 index 489b061..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ba4ad7034c543ed42aa4f5d83bbc6439 -timeCreated: 1445960959 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop05.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop05.png.meta deleted file mode 100644 index 2bec7f2..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: ab42c20a75be45d43b38dace446d36c4 -timeCreated: 1445960958 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop06.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop06.png.meta deleted file mode 100644 index 39dbc89..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/loop06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f5a467b0bbd52f14da8d8a24940280bb -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/moving01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/moving01.png.meta deleted file mode 100644 index 89c1d16..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/moving01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b39a9af5a84edc441ac45c36cd7f22a3 -timeCreated: 1447959720 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/moving02.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/moving02.png.meta deleted file mode 100644 index 3dcbdf4..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/moving02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3cb38399436eba44bb523cfcfb80ac8a -timeCreated: 1447959720 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path01.png.meta deleted file mode 100644 index dc8f9d8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 4abbcd0c2cf8db94192b1edecb8c134d -timeCreated: 1445960953 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path02.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path02.png.meta deleted file mode 100644 index 821bb5b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: aff9cc5e7ef8b634eb9d244f295df9d2 -timeCreated: 1445960958 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path03.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path03.png.meta deleted file mode 100644 index b0caf78..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: defc81b1353c8e145b7fd56beda97513 -timeCreated: 1445960961 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path04.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path04.png.meta deleted file mode 100644 index 3259e49..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 081ddd839ad01954b9b5f36f7d59f941 -timeCreated: 1445960949 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path05.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path05.png.meta deleted file mode 100644 index 3763730..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 43982fedcede3f04394cdd71e34c2c2e -timeCreated: 1445960953 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path06.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path06.png.meta deleted file mode 100644 index 67d2968..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: babc2f60e0acd254da87063031ecfc0c -timeCreated: 1445960959 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path07.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path07.png.meta deleted file mode 100644 index 2d5ac3f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path07.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: fe0610f4c4447254b9ab1c139cba5d41 -timeCreated: 1445960963 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path08.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path08.png.meta deleted file mode 100644 index 6e7b434..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path08.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1459c5999bc2f9747b7df47a0f57b86b -timeCreated: 1445960949 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path09.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path09.png.meta deleted file mode 100644 index ab1cd30..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path09.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: dd44bec9b62c4364d8f4d92f730ba8e3 -timeCreated: 1445960961 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path10.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path10.png.meta deleted file mode 100644 index dea0e0e..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path10.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: c8f1716bbd3f9764b8f619b79f250436 -timeCreated: 1445960960 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path11.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path11.png.meta deleted file mode 100644 index 89f7f14..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path11.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7a5a8c60444f40f4b905f88108ddcc40 -timeCreated: 1445960955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path12.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path12.png.meta deleted file mode 100644 index ed41159..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path12.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 06d3b79e11074b4418a1eea295352d6e -timeCreated: 1445960949 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path13.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path13.png.meta deleted file mode 100644 index 8b885b8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/path13.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 8cca84a0d205a36449c0fa209e1598df -timeCreated: 1445960956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe01.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe01.png.meta deleted file mode 100644 index 822ea63..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe01.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 0bc9a5dd873878040bf5a52bd4469537 -timeCreated: 1445960949 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe02.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe02.png.meta deleted file mode 100644 index 40f9e60..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe02.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e8b8eafc2b1c4104f9d68ab50499c6d8 -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe03.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe03.png.meta deleted file mode 100644 index 00c2f83..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe03.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 836b23fa41254c94eb08487668fd5b96 -timeCreated: 1445960956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe04.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe04.png.meta deleted file mode 100644 index e9bfa9f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe04.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: e872b04252217fe4d9dfb4199dd70cc5 -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe05.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe05.png.meta deleted file mode 100644 index 9cb876d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe05.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: db52c61a4a275b3468d441bcddf1e8a9 -timeCreated: 1445960961 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe06.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe06.png.meta deleted file mode 100644 index 922fdcf..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe06.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 84efd1962418f3441851fc7defef1c73 -timeCreated: 1445960956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe10.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe10.png.meta deleted file mode 100644 index 8303955..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe10.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3e7db9d56e529bd46bbfe7fb5ff75867 -timeCreated: 1445960952 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe11.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe11.png.meta deleted file mode 100644 index 4783df8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe11.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 3ebde7936d113c346a740a6fe8b4b273 -timeCreated: 1445960953 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe12.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe12.png.meta deleted file mode 100644 index f523969..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe12.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 856cbcd2f1b40034bb3f2d1371c273bd -timeCreated: 1445960956 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe13.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe13.png.meta deleted file mode 100644 index 719515d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe13.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 51f50c0da0efd1c4fb64f6d455478027 -timeCreated: 1445960953 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe14.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe14.png.meta deleted file mode 100644 index 63c8f24..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe14.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 7ca301de096bf2846bc7ce3a3f4542f0 -timeCreated: 1445960955 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe20.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe20.png.meta deleted file mode 100644 index 10c95b3..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe20.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 39ba35a840af9a245a3db839a9175a8a -timeCreated: 1445960952 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe21.png.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe21.png.meta deleted file mode 100644 index 6457071..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Sprites/pipe21.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: f4d8dc478f8be6d4ab6ab7235458dc66 -timeCreated: 1445960962 -licenseType: Free -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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: Chemical Plant Zone Tiles - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures.meta deleted file mode 100644 index cc76d9d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 43f9880a947f32f4a87290bbf789ebc1 -folderAsset: yes -timeCreated: 1445964602 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Loop 1.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Loop 1.prefab.meta deleted file mode 100644 index a2c2064..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Loop 1.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b03e572ab2e70b549997f6abb843e6a1 -timeCreated: 1446347103 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Ribbon 1.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Ribbon 1.prefab.meta deleted file mode 100644 index 4212408..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Ribbon 1.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b3c5cc377d1e5f24983cabfc24ca424f -timeCreated: 1446502313 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Ribbon 2.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Ribbon 2.prefab.meta deleted file mode 100644 index d9077f6..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Structures/Ribbon 2.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 08d2ed93285915c4d9e6aaaf219e3152 -timeCreated: 1446502329 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles.meta deleted file mode 100644 index e44af07..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 1f1569db4e71b8045adddcfc52a074a1 -folderAsset: yes -timeCreated: 1445935811 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block01.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block01.prefab.meta deleted file mode 100644 index c55b1e7..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block01.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7fe9b36b6109fd04ea43393d782a420b -timeCreated: 1445961371 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block02.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block02.prefab.meta deleted file mode 100644 index 2904266..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block02.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 36a7b6f47baf6be48bc22daea3a1e228 -timeCreated: 1445961373 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block03.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block03.prefab.meta deleted file mode 100644 index a16e5f3..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block03.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7570ffd2e5c22064baf270c593a407a2 -timeCreated: 1445961374 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block04.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block04.prefab.meta deleted file mode 100644 index 11c6d43..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block04.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7cf15d23c6c067442bde38701429ef5f -timeCreated: 1445961379 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block05.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block05.prefab.meta deleted file mode 100644 index 4431346..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block05.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5940b610296105e48a4040356aac62d1 -timeCreated: 1445961380 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block06.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block06.prefab.meta deleted file mode 100644 index a1be5d6..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block06.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: da33636b5c98d9548a3548b7b40a2455 -timeCreated: 1445961382 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block07.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block07.prefab.meta deleted file mode 100644 index 4bd4a7b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block07.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0d44405d9ee4a43498cc35747b303b43 -timeCreated: 1445961383 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block08.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block08.prefab.meta deleted file mode 100644 index e717112..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block08.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 192c45c055a2607489bb7ff886917da9 -timeCreated: 1445961385 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block09.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block09.prefab.meta deleted file mode 100644 index cfe5356..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block09.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9763fd3c35051344bbbe2751fe9ac639 -timeCreated: 1445961390 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block10.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block10.prefab.meta deleted file mode 100644 index da00497..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block10.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9e34b00670216d149a1450b8312e9bf3 -timeCreated: 1445961392 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block11.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block11.prefab.meta deleted file mode 100644 index 3141301..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block11.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7dd78b21741726c44aa450dff92a98f0 -timeCreated: 1445961394 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block12.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block12.prefab.meta deleted file mode 100644 index 856491b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block12.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2c18540d87be94645baaa9f3531195f8 -timeCreated: 1445961396 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block13.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block13.prefab.meta deleted file mode 100644 index 08f626c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block13.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5e1df0ee1880faf458dd8e613979476f -timeCreated: 1445961399 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block14.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block14.prefab.meta deleted file mode 100644 index 319de81..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block14.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0eb5e47812006b94595c0534eb027805 -timeCreated: 1445961401 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block15.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block15.prefab.meta deleted file mode 100644 index fe116c8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block15.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4fdd27a8a440bea4590541c476211edf -timeCreated: 1445961403 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block16.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block16.prefab.meta deleted file mode 100644 index 55f1e41..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block16.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1699b03880a446b41875511fc40bbe2e -timeCreated: 1445961576 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block17.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block17.prefab.meta deleted file mode 100644 index e4779eb..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block17.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1f562a8a098a38f48a9c048de5bc6356 -timeCreated: 1445961839 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block18.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block18.prefab.meta deleted file mode 100644 index 57b4219..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block18.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 58a9d534421edcf4d9dfb3c2eb7f50b9 -timeCreated: 1445961841 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block19.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block19.prefab.meta deleted file mode 100644 index 72ceae6..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block19.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e2274effee6c41b47a0f99e4e9cb0660 -timeCreated: 1445961844 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block20.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block20.prefab.meta deleted file mode 100644 index 86597a5..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block20.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5a08ec9bc89a15c46884752787693d86 -timeCreated: 1445961846 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block21.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block21.prefab.meta deleted file mode 100644 index 103b203..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block21.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6c174d4679bb59440bd48046437e8822 -timeCreated: 1445961848 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block22.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block22.prefab.meta deleted file mode 100644 index f148b60..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block22.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5f28c4ab871c3bd4dbc27f58e67c13e7 -timeCreated: 1445961850 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block23.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block23.prefab.meta deleted file mode 100644 index 669e4f4..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block23.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e8d253de4b094d84e87331ce31400a52 -timeCreated: 1445961852 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block24.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block24.prefab.meta deleted file mode 100644 index 6de172b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block24.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fdbcb8d3cdfdd9e4f99fa03ad27adb8b -timeCreated: 1445961855 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block25.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block25.prefab.meta deleted file mode 100644 index 34aa49f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block25.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 65d4f886c668b5945a0bf8f7e6640b6d -timeCreated: 1445961859 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block26.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block26.prefab.meta deleted file mode 100644 index 12de622..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block26.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ba0634fdc1b70f34ba780be0961ec7b3 -timeCreated: 1445961862 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block27.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block27.prefab.meta deleted file mode 100644 index 24fdf92..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block27.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6949b957b999e9043afa9834e278f072 -timeCreated: 1445961865 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block28.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block28.prefab.meta deleted file mode 100644 index 6339505..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block28.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2c319110efc5b7440bb1819ffb6c373e -timeCreated: 1445961867 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block29.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block29.prefab.meta deleted file mode 100644 index 7846a5e..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block29.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: df97f1eec0802454a9385dc523367cc2 -timeCreated: 1445961869 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block30.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block30.prefab.meta deleted file mode 100644 index c9912cc..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block30.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 629f32879fee05e48b098754be4b3c85 -timeCreated: 1445961871 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block31.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block31.prefab.meta deleted file mode 100644 index b2fa238..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block31.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c1c9ca37fb4d6ad468071eb0ed7bc4ee -timeCreated: 1445961874 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block32.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block32.prefab.meta deleted file mode 100644 index 7c8d44f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block32.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6633cd94d69e33840967b172f32144f7 -timeCreated: 1445961876 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block33.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block33.prefab.meta deleted file mode 100644 index a3c48f8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block33.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c94f80d73bdb8c8449eca3dfbba0d28e -timeCreated: 1445961878 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block34.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block34.prefab.meta deleted file mode 100644 index b74c96d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block34.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4eceb7c45f06b384cb4799b28eb7e1b9 -timeCreated: 1445961881 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block35.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block35.prefab.meta deleted file mode 100644 index 4acd27f..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block35.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c9de6850f72b3e44791d4a20c32543e4 -timeCreated: 1446323076 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block36.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block36.prefab.meta deleted file mode 100644 index 064347a..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block36.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c72b21367b9e597439816f809f90d498 -timeCreated: 1446325151 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block37.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block37.prefab.meta deleted file mode 100644 index f4048b5..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block37.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ed875b0e059a29f4f97302e461c743f4 -timeCreated: 1446325606 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block38.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block38.prefab.meta deleted file mode 100644 index a2c7d2c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block38.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5256dba54bb9ea04c9d71f5f98d4a52c -timeCreated: 1446325760 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block39.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block39.prefab.meta deleted file mode 100644 index b2b1e53..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block39.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ba6ad47dc74ee66438d88ca8f361326b -timeCreated: 1446326059 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block40.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block40.prefab.meta deleted file mode 100644 index 2c2afb4..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block40.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 59de69086e8d0654d847b08bdd72f20e -timeCreated: 1446326179 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block41.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block41.prefab.meta deleted file mode 100644 index 9d4aba4..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block41.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cae9901c07e0d404aa49ca47ceef1be1 -timeCreated: 1446422362 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block42.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block42.prefab.meta deleted file mode 100644 index 75cb546..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block42.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f5560f9f459b1f34f96b727e92dd3dd6 -timeCreated: 1446326521 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block43.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block43.prefab.meta deleted file mode 100644 index 505d0c8..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block43.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0a0977eefd4ac134292bf62307ed7b1c -timeCreated: 1446538165 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block44.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block44.prefab.meta deleted file mode 100644 index 258cdac..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/block44.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 65d66595038451f48b7976a70c3e245e -timeCreated: 1446538168 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/curve01.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/curve01.prefab.meta deleted file mode 100644 index 03b082d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/curve01.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e8ae1937f92377c4c93068993df5a72e -timeCreated: 1445961919 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate01.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate01.prefab.meta deleted file mode 100644 index e5f070d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate01.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c39a07be463517f4181a277ec216c389 -timeCreated: 1446322340 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate02.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate02.prefab.meta deleted file mode 100644 index 3d20dcc..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate02.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2713797e674aecc489b6a1a8ec45abb9 -timeCreated: 1446322361 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate03.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate03.prefab.meta deleted file mode 100644 index 5180d2c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate03.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e36408c335431d146bfee95784eb878d -timeCreated: 1446322383 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate04.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate04.prefab.meta deleted file mode 100644 index abb9ae7..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate04.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d0d9c934e0bfa3a458cd275053fa14a5 -timeCreated: 1446322395 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate05.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate05.prefab.meta deleted file mode 100644 index 1be4494..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/grate05.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4d3062d8a4b1b2b448c306e51296cffd -timeCreated: 1446326516 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop01.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop01.prefab.meta deleted file mode 100644 index 14b0bdb..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop01.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 065b4f4fcf0b09c4f887a1c556eb4c3d -timeCreated: 1446324123 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop02.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop02.prefab.meta deleted file mode 100644 index 272e827..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop02.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3fac9136f2de5b3418613b093a45f164 -timeCreated: 1446324115 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop03.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop03.prefab.meta deleted file mode 100644 index c1dd20b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop03.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ea36b9e8cf335c24390695ea77651e97 -timeCreated: 1446324125 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop04.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop04.prefab.meta deleted file mode 100644 index c438a5b..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop04.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 27ce5a08301312345af22db150f0250d -timeCreated: 1446324135 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop05.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop05.prefab.meta deleted file mode 100644 index ab801a0..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop05.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6cec963f740f2b5409dbf092b95d7f76 -timeCreated: 1446324160 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop06.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop06.prefab.meta deleted file mode 100644 index 20e8db4..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/loop06.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 82511520deb56994d921772e8ec35ccd -timeCreated: 1446324138 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path01.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path01.prefab.meta deleted file mode 100644 index 661188c..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path01.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e3679bd2b93c51a40a2f0be225920759 -timeCreated: 1445962644 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path02.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path02.prefab.meta deleted file mode 100644 index d356efd..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path02.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3872ea7be68191c4b9852b6ef3888001 -timeCreated: 1445962788 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path03.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path03.prefab.meta deleted file mode 100644 index 3c6c823..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path03.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: caadee5467db55a45a7ef203de0e8485 -timeCreated: 1445962969 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path04.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path04.prefab.meta deleted file mode 100644 index 1497b61..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path04.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1e7650818d2758f4a8564dcbb28547a1 -timeCreated: 1445963083 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path05.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path05.prefab.meta deleted file mode 100644 index b796f49..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path05.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f452eb7b0f89ab0438b651ef9ab3c280 -timeCreated: 1445963294 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path06.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path06.prefab.meta deleted file mode 100644 index ad32a18..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path06.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ec6b9b142bff7224c9fc8a67c5ffc578 -timeCreated: 1445963391 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path07.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path07.prefab.meta deleted file mode 100644 index c843871..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path07.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6a99cf22a409a4945a51670802a6ecbb -timeCreated: 1445963447 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path08.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path08.prefab.meta deleted file mode 100644 index 110a3d7..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path08.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 23c42665bbdbc9545b7424bf13eea533 -timeCreated: 1445963695 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path09.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path09.prefab.meta deleted file mode 100644 index 4420621..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path09.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 183440d2220653142b1ff5a236aeddcd -timeCreated: 1445963800 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path10.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path10.prefab.meta deleted file mode 100644 index 7d33df4..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path10.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ce2a9a18c4f6214184772ddb156b4b8 -timeCreated: 1445963992 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path11.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path11.prefab.meta deleted file mode 100644 index 37c481d..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path11.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d04e8d7dd020cc847a64d07d30d38319 -timeCreated: 1445964062 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path12.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path12.prefab.meta deleted file mode 100644 index 69bf8ba..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path12.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5b35d7214d063464b8c7108b2d68d5de -timeCreated: 1445964179 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path13.prefab.meta b/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path13.prefab.meta deleted file mode 100644 index 9dd59bf..0000000 --- a/Assets/Sonic 16-bit/Zones/Chemical Plant/Tiles/path13.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9621a298782532b429b6514face5d5df -timeCreated: 1445964271 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill.meta b/Assets/Sonic 16-bit/Zones/Green Hill.meta deleted file mode 100644 index 872cfac..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 135410f16941d9e4aaeceddca9fef823 -folderAsset: yes -timeCreated: 1449623232 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/Backgrounds.meta b/Assets/Sonic 16-bit/Zones/Green Hill/Backgrounds.meta deleted file mode 100644 index eb8306f..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/Backgrounds.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: d018e399ad5eb9d4baadce676ef81fc8 -folderAsset: yes -timeCreated: 1449643229 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background.meta deleted file mode 100644 index 9a58744..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b3a0d2d8d5ccfe0459f31986e976ab5e -folderAsset: yes -timeCreated: 1449643172 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background.prefab.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background.prefab.meta deleted file mode 100644 index dd401cc..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ce16cb00cbe5c444ab9214ba05766a7 -timeCreated: 1449643184 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/Cycle Palette.anim.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/Cycle Palette.anim.meta deleted file mode 100644 index 282dfb5..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/Cycle Palette.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: aa11a3d6b19e5aa4a92ff77dc70f5344 -timeCreated: 1449642684 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Palette.controller.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Palette.controller.meta deleted file mode 100644 index bdf718a..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Palette.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b636f628749f29e48b9fcba043263bf4 -timeCreated: 1449642677 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat index 7dfab02..b4980f7 100644 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat +++ b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat @@ -8,263 +8,98 @@ Material: m_PrefabInternal: {fileID: 0} m_Name: GHZ Water Parallax m_Shader: {fileID: 4800000, guid: 0be29964c15b76543897644dc5e0daf5, type: 3} - m_ShaderKeywords: + m_ShaderKeywords: ETC1_EXTERNAL_ALPHA m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 m_CustomRenderQueue: 2000 stringTagMap: {} + disabledShaderPasses: [] m_SavedProperties: - serializedVersion: 2 + serializedVersion: 3 m_TexEnvs: - data: - first: - name: _MainTex - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _BumpMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _DetailNormalMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _ParallaxMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _OcclusionMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _EmissionMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _DetailMask - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _DetailAlbedoMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - data: - first: - name: _MetallicGlossMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + 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: 0} + 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: - data: - first: - name: _SrcBlend - second: 1 - data: - first: - name: _DstBlend - second: 0 - data: - first: - name: _Cutoff - second: 0.5 - data: - first: - name: _Parallax - second: 0.02 - data: - first: - name: _ZWrite - second: 1 - data: - first: - name: _Glossiness - second: 0.5 - data: - first: - name: _BumpScale - second: 1 - data: - first: - name: _OcclusionStrength - second: 1 - data: - first: - name: _DetailNormalMapScale - second: 1 - data: - first: - name: _UVSec - second: 0 - data: - first: - name: _Mode - second: 0 - data: - first: - name: _Metallic - second: 0 - data: - first: - name: _Threshold - second: 0.133 + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Glossiness: 0.5 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SrcBlend: 1 + - _Threshold: 0.133 + - _UVSec: 0 + - _ZWrite: 1 m_Colors: - data: - first: - name: _EmissionColor - second: {r: 0, g: 0, b: 0, a: 1} - data: - first: - name: _Color - second: {r: 1, g: 1, b: 1, a: 1} - data: - first: - name: _ColorFrom1 - second: {r: 0.427451, g: 0.57254905, b: 0.7137255, a: 1} - data: - first: - name: _ColorFrom2 - second: {r: 0.427451, g: 0.57254905, b: 1, a: 1} - data: - first: - name: _ColorFrom3 - second: {r: 0.57254905, g: 0.7137255, b: 1, a: 1} - data: - first: - name: _ColorFrom4 - second: {r: 0.7137255, g: 0.8588236, b: 1, a: 1} - data: - first: - name: _ColorFrom5 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom6 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom7 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom8 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo1 - second: {r: 0.427451, g: 0.57254905, b: 1, a: 1} - data: - first: - name: _ColorTo2 - second: {r: 0.57254905, g: 0.7137255, b: 1, a: 1} - data: - first: - name: _ColorTo3 - second: {r: 0.7137255, g: 0.8588236, b: 1, a: 1} - data: - first: - name: _ColorTo4 - second: {r: 0.427451, g: 0.57254905, b: 0.7137255, a: 1} - data: - first: - name: _ColorTo5 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo6 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo7 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo8 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo9 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo10 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo11 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo12 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo13 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo14 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo15 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorTo16 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom9 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom10 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom11 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom12 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom13 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom14 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom15 - second: {r: 0, g: 0, b: 0, a: 0} - data: - first: - name: _ColorFrom16 - second: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _ColorFrom1: {r: 0.427451, g: 0.57254905, b: 0.7137255, a: 1} + - _ColorFrom10: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom11: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom12: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom13: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom14: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom15: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom16: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom2: {r: 0.427451, g: 0.57254905, b: 1, a: 1} + - _ColorFrom3: {r: 0.57254905, g: 0.7137255, b: 1, a: 1} + - _ColorFrom4: {r: 0.7137255, g: 0.8588236, b: 1, a: 1} + - _ColorFrom5: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom6: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom7: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom8: {r: 0, g: 0, b: 0, a: 0} + - _ColorFrom9: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo1: {r: 0.427451, g: 0.57254905, b: 0.7137255, a: 1} + - _ColorTo10: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo11: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo12: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo13: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo14: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo15: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo16: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo2: {r: 0.427451, g: 0.57254905, b: 1, a: 1} + - _ColorTo3: {r: 0.57254905, g: 0.7137255, b: 1, a: 1} + - _ColorTo4: {r: 0.7137255, g: 0.8588236, b: 1, a: 1} + - _ColorTo5: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo6: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo7: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo8: {r: 0, g: 0, b: 0, a: 0} + - _ColorTo9: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat.meta deleted file mode 100644 index 59aeb90..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/GHZ Water Parallax.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 183c3107062fdc54e811991cbf6aa695 -timeCreated: 1449642275 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/ghz_background.png.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/ghz_background.png.meta deleted file mode 100644 index c8f1349..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/ghz_background.png.meta +++ /dev/null @@ -1,133 +0,0 @@ -fileFormatVersion: 2 -guid: 8189c1e2ef3169b4080dd50bcea57eb0 -timeCreated: 1449638094 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: ghz_background_0 - 21300002: ghz_background_1 - 21300004: ghz_background_2 - 21300006: ghz_background_3 - 21300008: ghz_background_4 - 21300010: ghz_background_5 - 21300012: ghz_background_6 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: ghz_background_0 - rect: - serializedVersion: 2 - x: 0 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_background_1 - rect: - serializedVersion: 2 - x: 256 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_background_2 - rect: - serializedVersion: 2 - x: 512 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_background_3 - rect: - serializedVersion: 2 - x: 768 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_background_4 - rect: - serializedVersion: 2 - x: 1024 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_background_5 - rect: - serializedVersion: 2 - x: 1280 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_background_6 - rect: - serializedVersion: 2 - x: 1536 - y: 144 - width: 256 - height: 112 - alignment: 0 - pivot: {x: 0, y: 0} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: GHZ Background - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/ghz_foreground.png.meta b/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/ghz_foreground.png.meta deleted file mode 100644 index fe70bc6..0000000 --- a/Assets/Sonic 16-bit/Zones/Green Hill/GHZ Background/ghz_foreground.png.meta +++ /dev/null @@ -1,298 +0,0 @@ -fileFormatVersion: 2 -guid: ca9013b2be8ca69419e20d700498a11e -timeCreated: 1449643716 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: ghz_foreground_0 - 21300002: ghz_foreground_1 - 21300004: ghz_foreground_2 - 21300006: ghz_foreground_3 - 21300008: ghz_foreground_4 - 21300010: ghz_foreground_5 - 21300012: ghz_foreground_6 - 21300014: ghz_foreground_7 - 21300016: ghz_foreground_8 - 21300018: ghz_foreground_9 - 21300020: ghz_foreground_10 - 21300022: ghz_foreground_11 - 21300024: ghz_foreground_12 - 21300026: ghz_foreground_13 - 21300028: ghz_foreground_14 - 21300030: ghz_foreground_15 - 21300032: ghz_foreground_16 - 21300034: ghz_foreground_17 - 21300036: ghz_foreground_18 - 21300038: ghz_foreground_19 - 21300040: ghz_foreground_20 - 21300042: ghz_foreground_21 - 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: -2 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: ghz_foreground_0 - rect: - serializedVersion: 2 - x: 0 - y: 504 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_1 - rect: - serializedVersion: 2 - x: 0 - y: 495 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_2 - rect: - serializedVersion: 2 - x: 0 - y: 486 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_3 - rect: - serializedVersion: 2 - x: 0 - y: 477 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_4 - rect: - serializedVersion: 2 - x: 0 - y: 468 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_5 - rect: - serializedVersion: 2 - x: 0 - y: 459 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_6 - rect: - serializedVersion: 2 - x: 0 - y: 450 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_7 - rect: - serializedVersion: 2 - x: 0 - y: 441 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_8 - rect: - serializedVersion: 2 - x: 0 - y: 432 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_9 - rect: - serializedVersion: 2 - x: 0 - y: 423 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_10 - rect: - serializedVersion: 2 - x: 0 - y: 414 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_11 - rect: - serializedVersion: 2 - x: 0 - y: 405 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_12 - rect: - serializedVersion: 2 - x: 0 - y: 396 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_13 - rect: - serializedVersion: 2 - x: 0 - y: 289 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_14 - rect: - serializedVersion: 2 - x: 0 - y: 248 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_15 - rect: - serializedVersion: 2 - x: 0 - y: 207 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_16 - rect: - serializedVersion: 2 - x: 0 - y: 166 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_17 - rect: - serializedVersion: 2 - x: 0 - y: 125 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_18 - rect: - serializedVersion: 2 - x: 0 - y: 84 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_19 - rect: - serializedVersion: 2 - x: 0 - y: 43 - width: 256 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_20 - rect: - serializedVersion: 2 - x: 0 - y: 34 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: ghz_foreground_21 - rect: - serializedVersion: 2 - x: 0 - y: 25 - width: 256 - height: 8 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: GHZ Foreground - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill.meta deleted file mode 100644 index 3682247..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0ab3dd2fed32dde4bbaf1d89e30f0fc3 -folderAsset: yes -timeCreated: 1446955311 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Structure Prefabs.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Structure Prefabs.meta deleted file mode 100644 index 3c52146..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Structure Prefabs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ad768ffdbbcde334ebe8336152c703fb -folderAsset: yes -timeCreated: 1446948241 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs.meta deleted file mode 100644 index ddb42e8..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 0b1c2bed62a32c344841d2109947078a -folderAsset: yes -timeCreated: 1446949979 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block01.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block01.prefab.meta deleted file mode 100644 index 178f6a1..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block01.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0cae5a6f3ec120d43a34ac7b8c9af990 -timeCreated: 1446950038 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block02.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block02.prefab.meta deleted file mode 100644 index d727cc4..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block02.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5953aeac5c4627e4fa9f9b243aefdb84 -timeCreated: 1446950040 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block03.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block03.prefab.meta deleted file mode 100644 index e50efe2..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block03.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bb01534d378067940ab86584eb8c1318 -timeCreated: 1446950101 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block04.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block04.prefab.meta deleted file mode 100644 index 4f54c09..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block04.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5816661b1e06c864cb11edefc0e834ee -timeCreated: 1446950153 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block05.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block05.prefab.meta deleted file mode 100644 index dcd6c74..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block05.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 25efb9a320ae674498f580ed1772e1a3 -timeCreated: 1446950289 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block06.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block06.prefab.meta deleted file mode 100644 index 4dab686..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block06.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ab753e8ac15829f4d973d063583cbb90 -timeCreated: 1446950291 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block07.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block07.prefab.meta deleted file mode 100644 index de6309a..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block07.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8bef911c0f7b8014a92501f7c8445180 -timeCreated: 1446950292 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block08.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block08.prefab.meta deleted file mode 100644 index 6662f80..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block08.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c64bae84c8a908c40a7df55b93635064 -timeCreated: 1446950295 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block09.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block09.prefab.meta deleted file mode 100644 index 4a67b28..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block09.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7d22c41a4782c2242a46e4aae9dd2def -timeCreated: 1446950297 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block10.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block10.prefab.meta deleted file mode 100644 index 237903d..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block10.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8e7c8cc2c95e13342a43acd8339e14af -timeCreated: 1446950300 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block11.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block11.prefab.meta deleted file mode 100644 index 8b69b1e..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block11.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b43d2ccc7cb2ccb498609aee1b24752a -timeCreated: 1446951490 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block12.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block12.prefab.meta deleted file mode 100644 index 6c04674..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block12.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: be351ad1fb7ca274ebae6ffb2d562cfb -timeCreated: 1446951593 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block13.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block13.prefab.meta deleted file mode 100644 index 21be84a..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block13.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e2eb6aba1464cba4fb4d86642f4a4ff2 -timeCreated: 1446951595 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block14.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block14.prefab.meta deleted file mode 100644 index f294baf..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block14.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1b9db69dc2af17c47a2575f1fecd9528 -timeCreated: 1446951598 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block15.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block15.prefab.meta deleted file mode 100644 index 270a5bb..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block15.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ac21a293176de4a428e1626caa0cb31f -timeCreated: 1446951600 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block16.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block16.prefab.meta deleted file mode 100644 index 02bff48..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block16.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 598b2ec869994cf49ba46ca1407d7cd8 -timeCreated: 1446951602 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block17.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block17.prefab.meta deleted file mode 100644 index 102589c..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block17.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 413122b83261a1941a218e966b1db709 -timeCreated: 1446951864 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block18.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block18.prefab.meta deleted file mode 100644 index 7f20b50..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block18.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6ff9ab5e021e07b4ba84f383271fd4a9 -timeCreated: 1446952040 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block19.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block19.prefab.meta deleted file mode 100644 index b5814e8..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block19.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 02b891507a107de4b818a1871459f930 -timeCreated: 1446952140 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block20.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block20.prefab.meta deleted file mode 100644 index a77d95b..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block20.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e0df3f65075a8794abd5718596ee1ac6 -timeCreated: 1446952186 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block21.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block21.prefab.meta deleted file mode 100644 index c1ef40a..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block21.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2417d404ae6bc5f45b395f8c1958c890 -timeCreated: 1446952264 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block22.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block22.prefab.meta deleted file mode 100644 index b505082..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block22.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f7fb656ec8edfff498ad93bdd8ce68c8 -timeCreated: 1446952397 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block23.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block23.prefab.meta deleted file mode 100644 index b8434be..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block23.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ae4b379c9f6a3b847b272e077cdd75ff -timeCreated: 1446952453 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block24.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block24.prefab.meta deleted file mode 100644 index fe09876..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block24.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 52fd4d7d2a7a1ec43957ab951074af51 -timeCreated: 1446952497 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block25.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block25.prefab.meta deleted file mode 100644 index a4015fd..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block25.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5ddb1bf7d72368849b01e818a58ea766 -timeCreated: 1446952543 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block26.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block26.prefab.meta deleted file mode 100644 index e4e2418..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block26.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a57f4619d034955489af1b14fc6d5fa3 -timeCreated: 1446952633 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block27.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block27.prefab.meta deleted file mode 100644 index 667c862..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block27.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9e5c890ae7bb29b458ed9a1f2be44a37 -timeCreated: 1446952664 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block28.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block28.prefab.meta deleted file mode 100644 index 6bf8852..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block28.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 499751d29f61a774086e4e0663715ae6 -timeCreated: 1446952726 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block29.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block29.prefab.meta deleted file mode 100644 index 5d605ae..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block29.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 46bcde22429f2d940a6a02353c73f4b1 -timeCreated: 1446952771 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block30.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block30.prefab.meta deleted file mode 100644 index e815226..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block30.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f17a230e5136e7e449a89e0982e25312 -timeCreated: 1446953210 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block31.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block31.prefab.meta deleted file mode 100644 index 7c9e4be..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block31.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c03eb7ebf0d5bbd4094b4022c2121efe -timeCreated: 1446953212 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block32.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block32.prefab.meta deleted file mode 100644 index 1662c95..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block32.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2604da8857182974d88bed8d56a74083 -timeCreated: 1446953215 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block33.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block33.prefab.meta deleted file mode 100644 index c8c3902..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block33.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 44a6ddd19b1dc6248a37ecf93cdbcc4e -timeCreated: 1446953217 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block34.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block34.prefab.meta deleted file mode 100644 index 16c7ac6..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block34.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b61a7b0d7b943c247b548d8af4dc07f1 -timeCreated: 1446953218 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block35.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block35.prefab.meta deleted file mode 100644 index 6236509..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block35.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 26b5bc0ea4c3b3746b73dbec743e1b38 -timeCreated: 1446953222 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block36.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block36.prefab.meta deleted file mode 100644 index d4a9649..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block36.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 37b18c5beaca9c043881dd0fcb34e718 -timeCreated: 1446953226 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block37.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block37.prefab.meta deleted file mode 100644 index 2eab745..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block37.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ceff0235f107164459fa165c1b9bc6eb -timeCreated: 1446953680 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block38.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block38.prefab.meta deleted file mode 100644 index cde4a39..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block38.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7b1bcfc9e29740242a87d2d2940e51ba -timeCreated: 1446953683 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block39.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block39.prefab.meta deleted file mode 100644 index 851b349..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block39.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d0454b8a12598884db4f7603ef12fc19 -timeCreated: 1446953685 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block40.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block40.prefab.meta deleted file mode 100644 index b683ca7..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block40.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a9bc639ffd0086644a6ed66a248a928c -timeCreated: 1446953687 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block41.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block41.prefab.meta deleted file mode 100644 index ecc5886..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block41.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 31d430c6b9568cf4893a64294dd77a81 -timeCreated: 1446953690 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block42.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block42.prefab.meta deleted file mode 100644 index 32dfdfe..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block42.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cf0ee21109d41ef4ca4edbcc50a4d68e -timeCreated: 1446954320 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block43.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block43.prefab.meta deleted file mode 100644 index 88d0786..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block43.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 289d100b303dc6844957a4f3305189ea -timeCreated: 1446954323 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block44.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block44.prefab.meta deleted file mode 100644 index 941eb21..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block44.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 534a0aef92bc08643b5bca42031e07ac -timeCreated: 1446954326 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block45.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block45.prefab.meta deleted file mode 100644 index a964262..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block45.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8b07fd2258af77e4b94f63cffd1df24f -timeCreated: 1446954329 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block46.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block46.prefab.meta deleted file mode 100644 index 6fdf283..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block46.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8b49a285c86250643bf91eff61b0020c -timeCreated: 1446954332 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block47.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block47.prefab.meta deleted file mode 100644 index f1faf8a..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block47.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7f3d1e36a70cc1647b97f4903047d872 -timeCreated: 1446954334 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block48.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block48.prefab.meta deleted file mode 100644 index 0ea446b..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block48.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d0ca728b41b7a38428ff359d65ff8f3a -timeCreated: 1446954337 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block49.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block49.prefab.meta deleted file mode 100644 index fc8e597..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block49.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 769ea723fa7983b4b914ba34b091eead -timeCreated: 1446954542 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block50.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block50.prefab.meta deleted file mode 100644 index 9191ceb..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block50.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 93ce6922e7246744f988adaeafbcd77c -timeCreated: 1446954545 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block51.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block51.prefab.meta deleted file mode 100644 index 2236af8..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block51.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0a77998febe897147940773b9214426e -timeCreated: 1446954547 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block52.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block52.prefab.meta deleted file mode 100644 index f7ac8fe..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block52.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 46733898f5b60a843b9a3d7205c2c7dd -timeCreated: 1446954550 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block53.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block53.prefab.meta deleted file mode 100644 index 518e3f7..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block53.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 090abddf9f071c64b8585c0aa34e918b -timeCreated: 1446954553 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block54.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block54.prefab.meta deleted file mode 100644 index 8d3566a..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block54.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 74c0a5515c4e5ea40b0f2c6618dd7668 -timeCreated: 1446954555 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block55.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block55.prefab.meta deleted file mode 100644 index ed1312e..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block55.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2fc5ba7169eba03448a4a7025ee88626 -timeCreated: 1446955232 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block56.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block56.prefab.meta deleted file mode 100644 index d3dbc35..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block56.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 91401696bcfa1834fb1ea102e7e9b97f -timeCreated: 1446955235 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block57.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block57.prefab.meta deleted file mode 100644 index ea0d6ba..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block57.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 55ea362f46d9807459efef85cabd74f3 -timeCreated: 1446955237 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block58.prefab.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block58.prefab.meta deleted file mode 100644 index 83d024a..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Prefabs/block58.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9f31d168b52d3e14096e1123af979d1b -timeCreated: 1446955239 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites.meta deleted file mode 100644 index 083442d..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 70275cde52d06394b8ba4a86de5879a8 -folderAsset: yes -timeCreated: 1446948241 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586a.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586a.png.meta deleted file mode 100644 index 4989b63..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586a.png.meta +++ /dev/null @@ -1,1651 +0,0 @@ -fileFormatVersion: 2 -guid: ff14b51ee4221fa40a3e7e6113ec0b3b -timeCreated: 1446951203 -licenseType: Free -TextureImporter: - fileIDToRecycleName: - 21300000: 10586a_0 - 21300002: 10586a_1 - 21300004: 10586a_2 - 21300006: 10586a_3 - 21300008: 10586a_32 - 21300010: 10586a_33 - 21300012: 10586a_34 - 21300014: 10586a_35 - 21300016: 10586a_38 - 21300018: 10586a_39 - 21300020: 10586a_40 - 21300022: 10586a_44 - 21300024: 10586a_45 - 21300026: 10586a_46 - 21300028: 10586a_47 - 21300030: 10586a_48 - 21300032: 10586a_49 - 21300034: 10586a_50 - 21300036: 10586a_51 - 21300038: 10586a_52 - 21300040: 10586a_56 - 21300042: 10586a_57 - 21300044: 10586a_58 - 21300046: 10586a_59 - 21300048: 10586a_60 - 21300050: 10586a_65 - 21300052: 10586a_66 - 21300054: 10586a_67 - 21300056: 10586a_73 - 21300058: 10586a_77 - 21300060: 10586a_78 - 21300062: 10586a_79 - 21300064: 10586a_84 - 21300066: 10586a_85 - 21300068: 10586a_86 - 21300070: 10586a_87 - 21300072: 10586a_88 - 21300074: 10586a_92 - 21300076: 10586a_93 - 21300078: 10586a_94 - 21300080: 10586a_95 - 21300082: 10586a_96 - 21300084: 10586a_97 - 21300086: 10586a_98 - 21300088: 10586a_99 - 21300090: 10586a_100 - 21300092: 10586a_101 - 21300094: 10586a_102 - 21300096: 10586a_103 - 21300098: 10586a_104 - 21300100: 10586a_105 - 21300102: 10586a_106 - 21300104: 10586a_107 - 21300106: 10586a_108 - 21300108: 10586a_111 - 21300110: 10586a_112 - 21300112: 10586a_113 - 21300114: 10586a_114 - 21300116: 10586a_115 - 21300118: 10586a_116 - 21300120: 10586a_117 - 21300122: 10586a_118 - 21300124: 10586a_119 - 21300126: 10586a_120 - 21300128: 10586a_121 - 21300130: 10586a_122 - 21300132: 10586a_123 - 21300134: 10586a_124 - 21300136: 10586a_125 - 21300138: 10586a_126 - 21300140: 10586a_127 - 21300142: 10586a_128 - 21300144: 10586a_129 - 21300146: 10586a_130 - 21300148: 10586a_131 - 21300150: 10586a_132 - 21300152: 10586a_133 - 21300154: 10586a_134 - 21300156: 10586a_135 - 21300158: 10586a_136 - 21300160: 10586a_137 - 21300162: 10586a_138 - 21300164: 10586a_139 - 21300166: 10586a_140 - 21300168: 10586a_141 - 21300170: 10586a_142 - 21300172: 10586a_143 - 21300174: 10586a_144 - 21300176: 10586a_145 - 21300178: 10586a_146 - 21300180: 10586a_147 - 21300182: 10586a_148 - 21300184: 10586a_149 - 21300186: 10586a_150 - 21300188: 10586a_151 - 21300190: 10586a_152 - 21300192: 10586a_153 - 21300194: 10586a_154 - 21300196: 10586a_155 - 21300198: 10586a_156 - 21300200: 10586a_157 - 21300202: 10586a_158 - 21300204: 10586a_159 - 21300206: 10586a_160 - 21300208: 10586a_161 - 21300210: 10586a_162 - 21300212: 10586a_163 - 21300214: 10586a_164 - 21300216: 10586a_166 - 21300218: 10586a_167 - 21300220: 10586a_168 - 21300222: 10586a_169 - 21300224: 10586a_170 - 21300226: 10586a_171 - 21300228: 10586a_172 - 21300230: 10586a_173 - 21300232: 10586a_174 - 21300234: 10586a_175 - 21300236: 10586a_176 - 21300238: 10586a_177 - 21300240: 10586a_178 - 21300242: 10586a_179 - 21300244: 10586a_180 - 21300246: 10586a_181 - 21300248: 10586a_182 - 21300250: 10586a_183 - 21300252: 10586a_184 - 21300254: 10586a_185 - 21300256: 10586a_186 - 21300258: 10586a_187 - 21300260: 10586a_188 - 21300262: 10586a_189 - 21300264: 10586a_190 - 21300266: 10586a_191 - 21300268: 10586a_192 - 21300270: 10586a_193 - 21300272: 10586a_194 - 21300274: 10586a_195 - 21300276: 10586a_196 - 21300278: 10586a_197 - 21300280: 10586a_199 - 21300282: 10586a_4 - 21300284: 10586a_5 - 21300286: 10586a_6 - 21300288: 10586a_7 - 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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 2 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: - - name: 10586a_0 - rect: - serializedVersion: 2 - x: 1 - y: 1521 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_1 - rect: - serializedVersion: 2 - x: 130 - y: 1521 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_2 - rect: - serializedVersion: 2 - x: 259 - y: 1521 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_3 - rect: - serializedVersion: 2 - x: 388 - y: 1521 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_32 - rect: - serializedVersion: 2 - x: 1 - y: 1392 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_33 - rect: - serializedVersion: 2 - x: 130 - y: 1392 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_34 - rect: - serializedVersion: 2 - x: 259 - y: 1392 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_35 - rect: - serializedVersion: 2 - x: 388 - y: 1392 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_38 - rect: - serializedVersion: 2 - x: 522 - y: 1399 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_39 - rect: - serializedVersion: 2 - x: 539 - y: 1399 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_40 - rect: - serializedVersion: 2 - x: 556 - y: 1399 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_44 - rect: - serializedVersion: 2 - x: 721 - y: 1370 - width: 72 - height: 56 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_45 - rect: - serializedVersion: 2 - x: 830 - y: 1364 - width: 32 - height: 96 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_46 - rect: - serializedVersion: 2 - x: 1 - y: 1263 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_47 - rect: - serializedVersion: 2 - x: 130 - y: 1263 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_48 - rect: - serializedVersion: 2 - x: 259 - y: 1263 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_49 - rect: - serializedVersion: 2 - x: 388 - y: 1263 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_50 - rect: - serializedVersion: 2 - x: 522 - y: 1382 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_51 - rect: - serializedVersion: 2 - x: 539 - y: 1382 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_52 - rect: - serializedVersion: 2 - x: 556 - y: 1382 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_56 - rect: - serializedVersion: 2 - x: 802 - y: 1364 - width: 24 - height: 26 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_57 - rect: - serializedVersion: 2 - x: 866 - y: 1364 - width: 64 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_58 - rect: - serializedVersion: 2 - x: 522 - y: 1365 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_59 - rect: - serializedVersion: 2 - x: 539 - y: 1365 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_60 - rect: - serializedVersion: 2 - x: 556 - y: 1365 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_65 - rect: - serializedVersion: 2 - x: 522 - y: 1348 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_66 - rect: - serializedVersion: 2 - x: 539 - y: 1348 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_67 - rect: - serializedVersion: 2 - x: 556 - y: 1348 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_73 - rect: - serializedVersion: 2 - x: 594 - y: 1347 - width: 6 - height: 6 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_77 - rect: - serializedVersion: 2 - x: 522 - y: 1331 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_78 - rect: - serializedVersion: 2 - x: 539 - y: 1331 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_79 - rect: - serializedVersion: 2 - x: 556 - y: 1331 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_84 - rect: - serializedVersion: 2 - x: 837 - y: 1338 - width: 40 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_85 - rect: - serializedVersion: 2 - x: 881 - y: 1338 - width: 20 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_86 - rect: - serializedVersion: 2 - x: 522 - y: 1314 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_87 - rect: - serializedVersion: 2 - x: 539 - y: 1314 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_88 - rect: - serializedVersion: 2 - x: 556 - y: 1314 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_92 - rect: - serializedVersion: 2 - x: 841 - y: 1307 - width: 24 - height: 26 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_93 - rect: - serializedVersion: 2 - x: 869 - y: 1307 - width: 36 - height: 19 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_94 - rect: - serializedVersion: 2 - x: 1 - y: 1134 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_95 - rect: - serializedVersion: 2 - x: 130 - y: 1134 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_96 - rect: - serializedVersion: 2 - x: 259 - y: 1134 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_97 - rect: - serializedVersion: 2 - x: 388 - y: 1134 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_98 - rect: - serializedVersion: 2 - x: 542 - y: 1207 - width: 8 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_99 - rect: - serializedVersion: 2 - x: 570 - y: 1244 - width: 16 - height: 16 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_100 - rect: - serializedVersion: 2 - x: 602 - y: 1244 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_101 - rect: - serializedVersion: 2 - x: 825 - y: 1258 - width: 24 - height: 27 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_102 - rect: - serializedVersion: 2 - x: 853 - y: 1258 - width: 32 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_103 - rect: - serializedVersion: 2 - x: 889 - y: 1258 - width: 36 - height: 18 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_104 - rect: - serializedVersion: 2 - x: 559 - y: 1207 - width: 64 - height: 26 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_105 - rect: - serializedVersion: 2 - x: 809 - y: 1228 - width: 28 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_106 - rect: - serializedVersion: 2 - x: 841 - y: 1228 - width: 28 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_107 - rect: - serializedVersion: 2 - x: 873 - y: 1228 - width: 28 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_108 - rect: - serializedVersion: 2 - x: 905 - y: 1228 - width: 20 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_111 - rect: - serializedVersion: 2 - x: 518 - y: 1108 - width: 104 - height: 80 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_112 - rect: - serializedVersion: 2 - x: 623 - y: 1108 - width: 64 - height: 80 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_113 - rect: - serializedVersion: 2 - x: 688 - y: 1108 - width: 72 - height: 80 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_114 - rect: - serializedVersion: 2 - x: 833 - y: 1163 - width: 24 - height: 27 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_115 - rect: - serializedVersion: 2 - x: 861 - y: 1163 - width: 20 - height: 18 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_116 - rect: - serializedVersion: 2 - x: 885 - y: 1163 - width: 26 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_117 - rect: - serializedVersion: 2 - x: 1 - y: 1005 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_118 - rect: - serializedVersion: 2 - x: 130 - y: 1005 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_119 - rect: - serializedVersion: 2 - x: 259 - y: 1005 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_120 - rect: - serializedVersion: 2 - x: 388 - y: 1005 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_121 - rect: - serializedVersion: 2 - x: 558 - y: 1043 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_122 - rect: - serializedVersion: 2 - x: 623 - y: 1043 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_123 - rect: - serializedVersion: 2 - x: 688 - y: 1043 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_124 - rect: - serializedVersion: 2 - x: 836 - y: 1103 - width: 24 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_125 - rect: - serializedVersion: 2 - x: 860 - y: 1103 - width: 36 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_126 - rect: - serializedVersion: 2 - x: 753 - y: 1044 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_127 - rect: - serializedVersion: 2 - x: 786 - y: 1044 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_128 - rect: - serializedVersion: 2 - x: 819 - y: 1044 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_129 - rect: - serializedVersion: 2 - x: 558 - y: 978 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_130 - rect: - serializedVersion: 2 - x: 623 - y: 978 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_131 - rect: - serializedVersion: 2 - x: 688 - y: 978 - width: 64 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_132 - rect: - serializedVersion: 2 - x: 753 - y: 1011 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_133 - rect: - serializedVersion: 2 - x: 786 - y: 1011 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_134 - rect: - serializedVersion: 2 - x: 819 - y: 1011 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_135 - rect: - serializedVersion: 2 - x: 1 - y: 876 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_136 - rect: - serializedVersion: 2 - x: 130 - y: 876 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_137 - rect: - serializedVersion: 2 - x: 259 - y: 876 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_138 - rect: - serializedVersion: 2 - x: 388 - y: 876 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_139 - rect: - serializedVersion: 2 - x: 753 - y: 978 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_140 - rect: - serializedVersion: 2 - x: 786 - y: 978 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_141 - rect: - serializedVersion: 2 - x: 819 - y: 978 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_142 - rect: - serializedVersion: 2 - x: 552 - y: 927 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_143 - rect: - serializedVersion: 2 - x: 601 - y: 894 - width: 44 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_144 - rect: - serializedVersion: 2 - x: 661 - y: 893 - width: 48 - height: 80 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_145 - rect: - serializedVersion: 2 - x: 719 - y: 926 - width: 46 - height: 48 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_146 - rect: - serializedVersion: 2 - x: 767 - y: 836 - width: 37 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_147 - rect: - serializedVersion: 2 - x: 552 - y: 894 - width: 32 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_148 - rect: - serializedVersion: 2 - x: 591 - y: 894 - width: 8 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_149 - rect: - serializedVersion: 2 - x: 647 - y: 894 - width: 8 - height: 4 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_150 - rect: - serializedVersion: 2 - x: 718 - y: 889 - width: 24 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_151 - rect: - serializedVersion: 2 - x: 743 - y: 889 - width: 20 - height: 32 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_152 - rect: - serializedVersion: 2 - x: 1 - y: 747 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_153 - rect: - serializedVersion: 2 - x: 130 - y: 747 - width: 128 - height: 76 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_154 - rect: - serializedVersion: 2 - x: 259 - y: 747 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_155 - rect: - serializedVersion: 2 - x: 388 - y: 747 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_156 - rect: - serializedVersion: 2 - x: 517 - y: 747 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_157 - rect: - serializedVersion: 2 - x: 1 - y: 618 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_158 - rect: - serializedVersion: 2 - x: 130 - y: 618 - width: 128 - height: 96 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_159 - rect: - serializedVersion: 2 - x: 259 - y: 618 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_160 - rect: - serializedVersion: 2 - x: 388 - y: 618 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_161 - rect: - serializedVersion: 2 - x: 517 - y: 618 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_162 - rect: - serializedVersion: 2 - x: 646 - y: 618 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_163 - rect: - serializedVersion: 2 - x: 789 - y: 666 - width: 48 - height: 69 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_164 - rect: - serializedVersion: 2 - x: 842 - y: 684 - width: 64 - height: 56 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_166 - rect: - serializedVersion: 2 - x: 130 - y: 489 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_167 - rect: - serializedVersion: 2 - x: 259 - y: 489 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_168 - rect: - serializedVersion: 2 - x: 388 - y: 489 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_169 - rect: - serializedVersion: 2 - x: 517 - y: 500 - width: 128 - height: 117 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_170 - rect: - serializedVersion: 2 - x: 646 - y: 500 - width: 128 - height: 117 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_171 - rect: - serializedVersion: 2 - x: 1 - y: 360 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_172 - rect: - serializedVersion: 2 - x: 260 - y: 366 - width: 128 - height: 122 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_173 - rect: - serializedVersion: 2 - x: 518 - y: 364 - width: 128 - height: 124 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_174 - rect: - serializedVersion: 2 - x: 647 - y: 300 - width: 128 - height: 188 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_175 - rect: - serializedVersion: 2 - x: 783 - y: 481 - width: 128 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_176 - rect: - serializedVersion: 2 - x: 840 - y: 473 - width: 32 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_177 - rect: - serializedVersion: 2 - x: 131 - y: 366 - width: 128 - height: 82 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_178 - rect: - serializedVersion: 2 - x: 389 - y: 366 - width: 128 - height: 96 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_179 - rect: - serializedVersion: 2 - x: 783 - y: 432 - width: 128 - height: 40 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_180 - rect: - serializedVersion: 2 - x: 1 - y: 284 - width: 128 - height: 75 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_181 - rect: - serializedVersion: 2 - x: 131 - y: 301 - width: 128 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_182 - rect: - serializedVersion: 2 - x: 389 - y: 237 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_183 - rect: - serializedVersion: 2 - x: 609 - y: 234 - width: 37 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_184 - rect: - serializedVersion: 2 - x: 784 - y: 228 - width: 128 - height: 104 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_185 - rect: - serializedVersion: 2 - x: 1 - y: 219 - width: 128 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_186 - rect: - serializedVersion: 2 - x: 259 - y: 154 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_187 - rect: - serializedVersion: 2 - x: 389 - y: 108 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_188 - rect: - serializedVersion: 2 - x: 518 - y: 234 - width: 80 - height: 38 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_189 - rect: - serializedVersion: 2 - x: 647 - y: 175 - width: 128 - height: 124 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_190 - rect: - serializedVersion: 2 - x: 1 - y: 90 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_191 - rect: - serializedVersion: 2 - x: 130 - y: 90 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_192 - rect: - serializedVersion: 2 - x: 259 - y: 25 - width: 128 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_193 - rect: - serializedVersion: 2 - x: 526 - y: 105 - width: 120 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_194 - rect: - serializedVersion: 2 - x: 783 - y: 136 - width: 128 - height: 91 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_195 - rect: - serializedVersion: 2 - x: 1 - y: 25 - width: 128 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_196 - rect: - serializedVersion: 2 - x: 130 - y: 25 - width: 128 - height: 64 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_197 - rect: - serializedVersion: 2 - x: 518 - y: 2 - width: 128 - height: 102 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_199 - rect: - serializedVersion: 2 - x: 783 - y: 66 - width: 128 - height: 67 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_4 - rect: - serializedVersion: 2 - x: 868 - y: 827 - width: 22 - height: 128 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_5 - rect: - serializedVersion: 2 - x: 805 - y: 836 - width: 5 - height: 117 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_6 - rect: - serializedVersion: 2 - x: 625 - y: 1207 - width: 64 - height: 26 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - - name: 10586a_7 - rect: - serializedVersion: 2 - x: 822 - y: 522 - width: 32 - height: 7 - alignment: 0 - pivot: {x: .5, y: .5} - border: {x: 0, y: 0, z: 0, w: 0} - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586b.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586b.png.meta deleted file mode 100644 index c283564..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586b.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 15f49685c551ea841936ed42eb8da005 -timeCreated: 1446951294 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586c.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586c.png.meta deleted file mode 100644 index e5174a5..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586c.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: b136c6f7e376c9b4fbd99b5f0028fb28 -timeCreated: 1446951295 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586d.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586d.png.meta deleted file mode 100644 index d25d8e2..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586d.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 1eab40154e7f25e41b5b2b1e22e436ce -timeCreated: 1446951294 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586e.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586e.png.meta deleted file mode 100644 index 2b158f0..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586e.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 851affd0ff5cb214cafb79b58fd0764b -timeCreated: 1446951294 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586f.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586f.png.meta deleted file mode 100644 index f8e6420..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586f.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 5d3ab55bed1c0d74a884ec10e15c6bde -timeCreated: 1446951294 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586g.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586g.png.meta deleted file mode 100644 index 1de8858..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586g.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 77204f6059d3e0349a1dcc9789ba9457 -timeCreated: 1446951294 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586h.png.meta b/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586h.png.meta deleted file mode 100644 index 784cc0d..0000000 --- a/Assets/Sonic 16-bit/Zones/Mushroom Hill/Tile Sprites/10586h.png.meta +++ /dev/null @@ -1,56 +0,0 @@ -fileFormatVersion: 2 -guid: 2172f5e4a3d8bf4498399530b0e3c67e -timeCreated: 1446951294 -licenseType: Free -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: 0 - aniso: 16 - mipBias: -1 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI.meta b/Assets/UI.meta deleted file mode 100644 index d70d037..0000000 --- a/Assets/UI.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 8c5022cc37d79714c8fcf2d66b4cb69c -folderAsset: yes -timeCreated: 1453971593 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Basic Menu Screen.meta b/Assets/UI/Basic Menu Screen.meta deleted file mode 100644 index a55c114..0000000 --- a/Assets/UI/Basic Menu Screen.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 2da6524d6abb541448068f322b02957a -folderAsset: yes -timeCreated: 1454064382 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Basic Menu Screen/Basic Menu Screen.controller.meta b/Assets/UI/Basic Menu Screen/Basic Menu Screen.controller.meta deleted file mode 100644 index dea95d8..0000000 --- a/Assets/UI/Basic Menu Screen/Basic Menu Screen.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b538689699a88164996cf90a84394d96 -timeCreated: 1454064298 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Basic Menu Screen/Border.controller.meta b/Assets/UI/Basic Menu Screen/Border.controller.meta deleted file mode 100644 index 83192a7..0000000 --- a/Assets/UI/Basic Menu Screen/Border.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: de1555fcf2482ac43aa0be78b7dcd2a2 -timeCreated: 1453971603 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Basic Menu Screen/Close.anim.meta b/Assets/UI/Basic Menu Screen/Close.anim.meta deleted file mode 100644 index f4ca5b3..0000000 --- a/Assets/UI/Basic Menu Screen/Close.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1035a814a3b7da34180ee2e60541a8ee -timeCreated: 1454064449 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Basic Menu Screen/Open.anim.meta b/Assets/UI/Basic Menu Screen/Open.anim.meta deleted file mode 100644 index ebbf5ef..0000000 --- a/Assets/UI/Basic Menu Screen/Open.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a31d5e3fe882798429370ab1d0f1f877 -timeCreated: 1454064442 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Basic Menu Screen/Scroll.anim.meta b/Assets/UI/Basic Menu Screen/Scroll.anim.meta deleted file mode 100644 index 85c3d91..0000000 --- a/Assets/UI/Basic Menu Screen/Scroll.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0620a72e81d4fb844b14a43dcae5ef1c -timeCreated: 1453971607 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Border Container.prefab.meta b/Assets/UI/Border Container.prefab.meta deleted file mode 100644 index 988926a..0000000 --- a/Assets/UI/Border Container.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c00c3835ecc92b84b9a7c5354bb77899 -timeCreated: 1454061926 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Character Screen.meta b/Assets/UI/Character Screen.meta deleted file mode 100644 index 27a12a9..0000000 --- a/Assets/UI/Character Screen.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 3fc09c669d066c548b175aad059ca755 -folderAsset: yes -timeCreated: 1454061833 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Character Screen/Animations.meta b/Assets/UI/Character Screen/Animations.meta deleted file mode 100644 index 668d1e6..0000000 --- a/Assets/UI/Character Screen/Animations.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 759c9346222922d45b5f739a172e08c0 -folderAsset: yes -timeCreated: 1454438925 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Character Screen/Animations/Character Screen.overrideController.meta b/Assets/UI/Character Screen/Animations/Character Screen.overrideController.meta deleted file mode 100644 index 6abd355..0000000 --- a/Assets/UI/Character Screen/Animations/Character Screen.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 172d2e3b0e600fe40bee417cec843a22 -timeCreated: 1454064557 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Character Screen/Animations/Close.anim.meta b/Assets/UI/Character Screen/Animations/Close.anim.meta deleted file mode 100644 index 1e473ef..0000000 --- a/Assets/UI/Character Screen/Animations/Close.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 830eb3e729cd55840988561ffa74f94b -timeCreated: 1454061861 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Character Screen/Animations/Open.anim.meta b/Assets/UI/Character Screen/Animations/Open.anim.meta deleted file mode 100644 index 41c9f72..0000000 --- a/Assets/UI/Character Screen/Animations/Open.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 81f456f63f4fcbb4192a416b28ad9959 -timeCreated: 1454061857 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Character Screen/Save Item.prefab.meta b/Assets/UI/Character Screen/Save Item.prefab.meta deleted file mode 100644 index 9c2e8d1..0000000 --- a/Assets/UI/Character Screen/Save Item.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 64ed5b16ab5edba469e0251a8cd6826c -timeCreated: 1454438941 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Start Screen.meta b/Assets/UI/Start Screen.meta deleted file mode 100644 index 0f43e8d..0000000 --- a/Assets/UI/Start Screen.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ced399d646277034aadbf517dd57790f -folderAsset: yes -timeCreated: 1453989795 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Start Screen/Close.anim.meta b/Assets/UI/Start Screen/Close.anim.meta deleted file mode 100644 index 18c5a4f..0000000 --- a/Assets/UI/Start Screen/Close.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 04ff559afe1500a47aa1da24f15d0faa -timeCreated: 1453989814 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Start Screen/Open.anim.meta b/Assets/UI/Start Screen/Open.anim.meta deleted file mode 100644 index 306a322..0000000 --- a/Assets/UI/Start Screen/Open.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9d6d3b5829cabe84896f03a0511e1279 -timeCreated: 1453989802 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Start Screen/Start Screen.overrideController.meta b/Assets/UI/Start Screen/Start Screen.overrideController.meta deleted file mode 100644 index c1ca26c..0000000 --- a/Assets/UI/Start Screen/Start Screen.overrideController.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 90713fe7c0ce7b14d9e3a275552ea410 -timeCreated: 1454064361 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards.meta b/Assets/UI/Title Cards.meta deleted file mode 100644 index 66f561b..0000000 --- a/Assets/UI/Title Cards.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: b43af5b91b9480f4f8374911afc2a552 -folderAsset: yes -timeCreated: 1456419396 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Jagged Border.png.meta b/Assets/UI/Title Cards/Jagged Border.png.meta deleted file mode 100644 index e4d9e60..0000000 --- a/Assets/UI/Title Cards/Jagged Border.png.meta +++ /dev/null @@ -1,57 +0,0 @@ -fileFormatVersion: 2 -guid: 549c747974e341845b51e1c838117384 -timeCreated: 1453971442 -licenseType: Free -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: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 1 - 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: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Square.png.meta b/Assets/UI/Title Cards/Square.png.meta deleted file mode 100644 index 5c09a6f..0000000 --- a/Assets/UI/Title Cards/Square.png.meta +++ /dev/null @@ -1,61 +0,0 @@ -fileFormatVersion: 2 -guid: b9ff9e6f6392c464ea9030f4fbe4486a -timeCreated: 1453979581 -licenseType: Free -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: 4 - maxTextureSize: 2048 - textureSettings: - filterMode: 0 - aniso: 16 - mipBias: 0 - wrapMode: 1 - nPOTScale: 0 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - allowsAlphaSplitting: 0 - spriteMode: 3 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 4 - alphaIsTransparency: 1 - textureType: 8 - buildTargetSettings: [] - spriteSheet: - sprites: [] - outline: - - - {x: 0, y: 0} - - {x: 0, y: 4} - - {x: 4, y: 4} - - {x: 4, y: 0} - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Test Level.meta b/Assets/UI/Title Cards/Test Level.meta deleted file mode 100644 index 068babe..0000000 --- a/Assets/UI/Title Cards/Test Level.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 7c185b49a173bc44fb520eb31e04de69 -folderAsset: yes -timeCreated: 1456419402 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Test Level/Enter.anim.meta b/Assets/UI/Title Cards/Test Level/Enter.anim.meta deleted file mode 100644 index ced27ff..0000000 --- a/Assets/UI/Title Cards/Test Level/Enter.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0f4c2b95770305346938141f5247f1d1 -timeCreated: 1457239959 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Test Level/Exit.anim.meta b/Assets/UI/Title Cards/Test Level/Exit.anim.meta deleted file mode 100644 index b2e869e..0000000 --- a/Assets/UI/Title Cards/Test Level/Exit.anim.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 74e58955ff2820044b1b72779c1b6c76 -timeCreated: 1457239964 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Test Level/Test Zone.controller.meta b/Assets/UI/Title Cards/Test Level/Test Zone.controller.meta deleted file mode 100644 index 0bb111e..0000000 --- a/Assets/UI/Title Cards/Test Level/Test Zone.controller.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 32fe75466ff5b304c80eacb6fb3152e4 -timeCreated: 1457239954 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/UI/Title Cards/Test Level/Title Card.prefab.meta b/Assets/UI/Title Cards/Test Level/Title Card.prefab.meta deleted file mode 100644 index 0e7ece5..0000000 --- a/Assets/UI/Title Cards/Test Level/Title Card.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1430f5161e6a14d4f8126a5a8bb4c388 -timeCreated: 1457239981 -licenseType: Free -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..9664f26 --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,4 @@ +{ + "dependencies": { + } +} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset index ff0f189..be4f6b0 100644 --- a/ProjectSettings/EditorSettings.asset +++ b/ProjectSettings/EditorSettings.asset @@ -3,13 +3,33 @@ --- !u!159 &1 EditorSettings: m_ObjectHideFlags: 0 - serializedVersion: 3 + serializedVersion: 9 m_ExternalVersionControlSupport: Visible Meta Files m_SerializationMode: 2 - m_WebSecurityEmulationEnabled: 0 - m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d + m_LineEndingsForNewScripts: 1 m_DefaultBehaviorMode: 1 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} m_SpritePackerMode: 2 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_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 ac3f903..9b9f834 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -3,16 +3,31 @@ --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 - serializedVersion: 5 + serializedVersion: 13 m_Deferred: m_Mode: 1 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} m_DeferredReflections: m_Mode: 1 m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} m_LegacyDeferred: m_Mode: 1 m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} m_AlwaysIncludedShaders: - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} @@ -21,18 +36,33 @@ GraphicsSettings: - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 10782, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 4800000, guid: 0be29964c15b76543897644dc5e0daf5, type: 3} + - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} m_PreloadedShaders: [] - m_ShaderSettings: - useScreenSpaceShadows: 1 - m_BuildTargetShaderSettings: [] + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, + type: 0} + m_CustomRenderPipeline: {fileID: 0} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] m_LightmapStripping: 0 m_FogStripping: 0 + m_InstancingStripping: 0 m_LightmapKeepPlain: 1 m_LightmapKeepDirCombined: 1 - m_LightmapKeepDirSeparate: 1 m_LightmapKeepDynamicPlain: 1 m_LightmapKeepDynamicDirCombined: 1 - m_LightmapKeepDynamicDirSeparate: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 m_FogKeepLinear: 1 m_FogKeepExp: 1 m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_LightsUseLinearIntensity: 0 + m_LightsUseColorTemperature: 0 + m_LogWhenShaderIsCompiled: 0 + m_AllowEnlightenSupportForUpgradedProject: 1 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 62e0c92..0beaba8 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,8 +3,10 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 15 + productGUID: 186ac916a61c91943904d63db1c23712 AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 defaultScreenOrientation: 4 targetDevice: 2 useOnDemandResources: 0 @@ -13,22 +15,45 @@ PlayerSettings: productName: Sonic Realms defaultCursor: {fileID: 0} cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} defaultScreenWidth: 640 defaultScreenHeight: 448 defaultScreenWidthWeb: 960 defaultScreenHeightWeb: 600 - m_RenderingPath: 1 - m_MobileRenderingPath: 1 + m_StereoRenderingPath: 0 m_ActiveColorSpace: 0 m_MTRendering: 1 - m_MobileMTRendering: 0 - m_Stereoscopic3D: 0 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 - iosAppInBackgroundBehavior: 0 + tizenShowActivityIndicatorOnLoading: -1 displayResolutionDialog: 1 + iosAppInBackgroundBehavior: 0 iosAllowHTTPDownload: 1 allowedAutorotateToPortrait: 1 allowedAutorotateToPortraitUpsideDown: 1 @@ -36,20 +61,28 @@ PlayerSettings: allowedAutorotateToLandscapeLeft: 1 useOSAutorotation: 1 use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 disableDepthAndStencilBuffers: 0 - defaultIsFullScreen: 0 + androidBlitType: 0 + defaultIsFullScreen: 1 defaultIsNativeResolution: 1 + macRetinaSupport: 1 runInBackground: 1 captureSingleScreen: 0 - Override IPod Music: 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 resizableWindow: 0 useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games gpuSkinning: 0 + graphicsJobs: 0 xboxPIXTextureCapture: 0 xboxEnableAvatar: 0 xboxEnableKinect: 0 @@ -57,20 +90,24 @@ PlayerSettings: xboxEnableFitness: 0 visibleInBackground: 0 allowFullscreenSwitch: 1 + graphicsJobMode: 0 macFullscreenMode: 2 - d3d9FullscreenMode: 1 d3d11FullscreenMode: 1 xboxSpeechDB: 0 xboxEnableHeadOrientation: 0 xboxEnableGuest: 0 xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 n3dsDisableStereoscopicView: 0 n3dsEnableSharedListOpt: 1 n3dsEnableVSync: 0 - uiUse16BitDepthBuffer: 0 - ignoreAlphaClear: 0 xboxOneResolution: 0 - ps3SplashScreen: {fileID: 0} + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOnePresentImmediateThreshold: 0 videoMemoryForVertexBuffers: 0 psp2PowerMode: 0 psp2AcquireBGM: 1 @@ -89,34 +126,68 @@ PlayerSettings: 16:10: 1 16:9: 1 Others: 1 - bundleIdentifier: com.Company.ProductName bundleVersion: 1.0 preloadedAssets: [] - metroEnableIndependentInputSource: 0 - metroEnableLowLatencyPresentationAPI: 0 + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 xboxOneDisableKinectGpuReservation: 0 - virtualRealitySupported: 0 - productGUID: 186ac916a61c91943904d63db1c23712 - AndroidBundleVersionCode: 1 - AndroidMinSdkVersion: 9 + xboxOneEnable7thCore: 0 + vrSettings: + cardboard: + depthFormat: 0 + enableTransitionView: 0 + daydream: + depthFormat: 0 + useSustainedPerformanceMode: 0 + enableVideoLayer: 0 + useProtectedVideoMemory: 0 + minimumSupportedHeadTracking: 0 + maximumSupportedHeadTracking: 1 + hololens: + depthFormat: 1 + depthBufferSharingEnabled: 0 + oculus: + sharedDepthBuffer: 0 + dashSupport: 0 + v2Signing: 0 + protectGraphicsMemory: 0 + useHDRDisplay: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 + applicationIdentifier: + Android: unity.koh.sonicrealms + Standalone: unity.koh.sonicrealms + Tizen: com.Company.ProductName + iPhone: unity.koh.sonicrealms + tvOS: com.Company.ProductName + buildNumber: + iPhone: 0 + AndroidBundleVersionCode: 1589742343 + AndroidMinSdkVersion: 19 + AndroidTargetSdkVersion: 0 AndroidPreferredInstallLocation: 1 aotOptions: - apiCompatibilityLevel: 2 stripEngineCode: 1 iPhoneStrippingLevel: 0 iPhoneScriptCallOptimization: 0 - iPhoneBuildNumber: 0 ForceInternetPermission: 0 ForceSDCardPermission: 0 CreateWallpaper: 0 APKExpansionFiles: 0 - preloadShaders: 0 + keepLoadedShadersAlive: 0 StripUnusedMeshComponents: 0 VertexChannelCompressionMask: serializedVersion: 2 - m_Bits: 238 + m_Bits: 4294901998 iPhoneSdkVersion: 988 - iPhoneTargetOSVersion: 22 + iOSTargetOSVersionString: 10.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 10.0 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 @@ -129,14 +200,21 @@ PlayerSettings: iPhone47inSplashScreen: {fileID: 0} iPhone55inPortraitSplashScreen: {fileID: 0} iPhone55inLandscapeSplashScreen: {fileID: 0} + iPhone58inPortraitSplashScreen: {fileID: 0} + iPhone58inLandscapeSplashScreen: {fileID: 0} iPadPortraitSplashScreen: {fileID: 0} iPadHighResPortraitSplashScreen: {fileID: 0} iPadLandscapeSplashScreen: {fileID: 0} iPadHighResLandscapeSplashScreen: {fileID: 0} appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] tvOSLargeIconLayers: [] tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] iOSLaunchScreenType: 0 iOSLaunchScreenPortrait: {fileID: 0} iOSLaunchScreenLandscape: {fileID: 0} @@ -154,15 +232,30 @@ PlayerSettings: iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadSize: 100 iOSLaunchScreeniPadCustomXibPath: + iOSUseLaunchScreenStoryboard: 0 + iOSLaunchScreenCustomStoryboardPath: iOSDeviceRequirements: [] - AndroidTargetDevice: 0 + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + iOSRenderExtraFrameOnPause: 1 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + appleEnableAutomaticSigning: 0 + clonedFromGUID: 00000000000000000000000000000000 + AndroidTargetArchitectures: 5 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} - AndroidKeystoreName: - AndroidKeyaliasName: + AndroidKeystoreName: /opt/dev/repository/unity/Sonic-Realms/android.keystore + AndroidKeyaliasName: android AndroidTVCompatibility: 1 AndroidIsGame: 1 + AndroidEnableTango: 0 androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 m_AndroidBanners: - width: 320 height: 180 @@ -176,10 +269,24 @@ PlayerSettings: m_Icon: {fileID: 0} m_Width: 128 m_Height: 128 + m_Kind: 0 m_BuildTargetBatching: [] m_BuildTargetGraphicsAPIs: [] - webPlayerTemplate: APPLICATION:Default + m_BuildTargetVRSettings: [] + m_BuildTargetEnableVuforiaSettings: [] + openGLRequireES31: 0 + openGLRequireES31AEP: 0 m_TemplateCustomTags: {} + 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 wiiUTitleID: 0005000011000000 wiiUGroupID: 00010000 wiiUCommonSaveSize: 4096 @@ -196,40 +303,142 @@ PlayerSettings: wiiUSystemHeapSize: 128 wiiUTVStartupScreen: {fileID: 0} wiiUGamePadStartupScreen: {fileID: 0} + wiiUDrcBufferDisabled: 0 wiiUProfilerLibPath: + playModeTestRunnerEnabled: 0 actionOnDotNetUnhandledException: 1 enableInternalProfiler: 0 logObjCUncaughtExceptions: 1 enableCrashReportAPI: 0 + cameraUsageDescription: locationUsageDescription: - XboxTitleId: - XboxImageXexPath: - XboxSpaPath: - XboxGenerateSpa: 0 - XboxDeployKinectResources: 0 - XboxSplashScreen: {fileID: 0} - xboxEnableSpeech: 0 - xboxAdditionalTitleMemorySize: 0 - xboxDeployKinectHeadOrientation: 0 - xboxDeployKinectHeadPosition: 0 - ps3TitleConfigPath: - ps3DLCConfigPath: - ps3ThumbnailPath: - ps3BackgroundPath: - ps3SoundPath: - ps3NPAgeRating: 12 - ps3TrophyCommId: - ps3NpCommunicationPassphrase: - ps3TrophyPackagePath: - ps3BootCheckMaxSaveGameSizeKB: 128 - ps3TrophyCommSig: - ps3SaveGameSlots: 1 - ps3TrialMode: 0 - ps3VideoMemoryForAudio: 0 - ps3EnableVerboseMemoryStats: 0 - ps3UseSPUForUmbra: 0 - ps3EnableMoveSupport: 1 - ps3DisableDolbyEncoding: 0 + microphoneUsageDescription: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSupportedNpadStyles: 3 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchPlayerConnectionEnabled: 1 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -241,11 +450,15 @@ PlayerSettings: ps4AppType: 0 ps4ParamSfxPath: ps4VideoOutPixelFormat: 0 - ps4VideoOutResolution: 4 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 ps4PronunciationXMLPath: ps4PronunciationSIGPath: ps4BackgroundImagePath: ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: ps4SaveDataImagePath: ps4SdkOverride: ps4BGMPath: @@ -255,6 +468,7 @@ PlayerSettings: ps4NPtitleDatPath: ps4RemotePlayKeyAssignment: -1 ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 ps4EnterButtonAssignment: 1 ps4ApplicationParam1: 0 ps4ApplicationParam2: 0 @@ -262,24 +476,34 @@ PlayerSettings: ps4ApplicationParam4: 0 ps4DownloadDataSize: 0 ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ ps4pnSessions: 1 ps4pnPresence: 1 ps4pnFriends: 1 ps4pnGameCustomData: 1 playerPrefsSupport: 0 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 ps4ReprojectionSupport: 0 ps4UseAudio3dBackend: 0 ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 0 ps4Audio3dVirtualSpeakerCount: 14 ps4attribCpuUsage: 0 ps4PatchPkgPath: ps4PatchLatestPkgPath: ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 ps4attribUserManagement: 0 ps4attribMoveSupport: 0 ps4attrib3DSupport: 0 ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] monoEnv: psp2Splashimage: {fileID: 0} @@ -299,7 +523,7 @@ PlayerSettings: psp2LiveAreaTrialPath: psp2PatchChangeInfoPath: psp2PatchOriginalPackage: - psp2PackagePassword: F69AzBlax3CF3EDNhm3soLBPh71Yexui + psp2PackagePassword: fa37JncCHryDsbzayy4cBWDxS22JjzhM psp2KeystoneFile: psp2MemoryExpansionMode: 0 psp2DRMType: 0 @@ -328,9 +552,40 @@ PlayerSettings: psp2UseLibLocation: 0 psp2InfoBarOnStartup: 0 psp2InfoBarColor: 0 + psp2ScriptOptimizationLevel: 0 psmSplashimage: {fileID: 0} + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} spritePackerPolicy: DefaultPackerPolicy + webGLMemorySize: 256 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLDataCaching: 0 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLUseWasm: 0 + webGLCompressionFormat: 1 scriptingDefineSymbols: {} + platformArchitecture: + iPhone: 2 + scriptingBackend: + Android: 1 + Standalone: 0 + WP8: 2 + WebGL: 1 + Windows Store Apps: 2 + iPhone: 1 + incrementalIl2cppBuild: + iPhone: 0 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + apiCompatibilityLevelPerPlatform: {} + m_RenderingPath: 1 + m_MobileRenderingPath: 1 metroPackageName: unity-the-hedgehog metroPackageVersion: metroCertificatePath: @@ -356,29 +611,14 @@ PlayerSettings: metroFTAFileTypes: [] metroProtocolName: metroCompilationOverrides: 1 - blackberryDeviceAddress: - blackberryDevicePassword: - blackberryTokenPath: - blackberryTokenExires: - blackberryTokenAuthor: - blackberryTokenAuthorId: - blackberryCskPassword: - blackberrySaveLogPath: - blackberrySharedPermissions: 0 - blackberryCameraPermissions: 0 - blackberryGPSPermissions: 0 - blackberryDeviceIDPermissions: 0 - blackberryMicrophonePermissions: 0 - blackberryGamepadSupport: 0 - blackberryBuildId: 0 - blackberryLandscapeSplashScreen: {fileID: 0} - blackberryPortraitSplashScreen: {fileID: 0} - blackberrySquareSplashScreen: {fileID: 0} tizenProductDescription: tizenProductURL: tizenSigningProfileName: tizenGPSPermissions: 0 tizenMicrophonePermissions: 0 + tizenDeploymentTarget: + tizenDeploymentTargetType: -1 + tizenMinOSVersion: 1 n3dsUseExtSaveData: 0 n3dsCompressStaticMem: 1 n3dsExtSaveDataNumber: 0x12345 @@ -390,12 +630,6 @@ PlayerSettings: n3dsTitle: GameName n3dsProductCode: n3dsApplicationId: 0xFF3FF - stvDeviceAddress: - stvProductDescription: - stvProductAuthor: - stvProductAuthorEmail: - stvProductLink: - stvProductCategory: 0 XboxOneProductId: XboxOneUpdateKey: XboxOneSandboxId: @@ -408,52 +642,28 @@ PlayerSettings: XboxOnePackageEncryption: 0 XboxOnePackageUpdateGranularity: 2 XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} XboxOneIsContentPackage: 0 XboxOneEnableGPUVariability: 0 XboxOneSockets: {} XboxOneSplashScreen: {fileID: 0} XboxOneAllowedProductIds: [] XboxOnePersistentLocalStorageSize: 0 - intPropertyNames: - - Android::ScriptingBackend - - Metro::ScriptingBackend - - Standalone::ScriptingBackend - - WP8::ScriptingBackend - - WebGL::ScriptingBackend - - WebGL::audioCompressionFormat - - WebGL::exceptionSupport - - WebGL::memorySize - - iOS::Architecture - - iOS::EnableIncrementalBuildSupportForIl2cpp - - iOS::ScriptingBackend - Android::ScriptingBackend: 0 - Metro::ScriptingBackend: 2 - Standalone::ScriptingBackend: 0 - WP8::ScriptingBackend: 2 - WebGL::ScriptingBackend: 1 - WebGL::audioCompressionFormat: 4 - WebGL::exceptionSupport: 1 - WebGL::memorySize: 256 - iOS::Architecture: 2 - iOS::EnableIncrementalBuildSupportForIl2cpp: 0 - iOS::ScriptingBackend: 1 - boolPropertyNames: - - WebGL::analyzeBuildSize - - WebGL::dataCaching - - WebGL::useEmbeddedResources - - XboxOne::enus - WebGL::analyzeBuildSize: 0 - WebGL::dataCaching: 0 - WebGL::useEmbeddedResources: 0 - XboxOne::enus: 1 - stringPropertyNames: - - WebGL::emscriptenArgs - - WebGL::template - - additionalIl2CppArgs::additionalIl2CppArgs - WebGL::emscriptenArgs: - WebGL::template: APPLICATION:Default - additionalIl2CppArgs::additionalIl2CppArgs: + XboxOneXTitleMemory: 8 + xboxOneScriptCompiler: 0 + vrEditorSettings: + daydream: + daydreamIconForeground: {fileID: 0} + daydreamIconBackground: {fileID: 0} + cloudServicesEnabled: {} + facebookSdkVersion: 7.9.4 + apiCompatibilityLevel: 3 cloudProjectId: projectName: organizationId: cloudEnabled: 0 + enableNativePlatformBackendsForNewInputSystem: 0 + disableOldInputManagerSupport: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index 6809209..09b1172 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1 @@ -m_EditorVersion: 5.3.3p1 -m_StandardAssetsVersion: 0 +m_EditorVersion: 2017.4.39f1 diff --git a/ProjectSettings/UnityAdsSettings.asset b/ProjectSettings/UnityAdsSettings.asset deleted file mode 100644 index 224050c..0000000 --- a/ProjectSettings/UnityAdsSettings.asset +++ /dev/null @@ -1,11 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!292 &1 -UnityAdsSettings: - m_ObjectHideFlags: 0 - m_Enabled: 0 - m_InitializeOnStartup: 1 - m_TestMode: 0 - m_EnabledPlatforms: 4294967295 - m_IosGameId: - m_AndroidGameId: diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset index 9b7a578..319213f 100644 --- a/ProjectSettings/UnityConnectSettings.asset +++ b/ProjectSettings/UnityConnectSettings.asset @@ -3,6 +3,16 @@ --- !u!310 &1 UnityConnectSettings: m_ObjectHideFlags: 0 + m_Enabled: 1 + m_TestMode: 0 + m_TestEventUrl: + m_TestConfigUrl: + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate + m_Enabled: 0 + m_CaptureEditorExceptions: 1 UnityPurchasingSettings: m_Enabled: 0 m_TestMode: 0 @@ -12,3 +22,13 @@ UnityConnectSettings: m_TestMode: 0 m_TestEventUrl: m_TestConfigUrl: + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + 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 da1b1a9..1da8c9d 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,10 @@ A 2D Sonic development kit for Unity 5 Personal/Pro. Master is updated for releases only, the [develop](https://github.com/mdechatech/Sonic-Realms/tree/develop) branch sees commits much more frequently. + +[![Build Status](https://travis-ci.org/humbertodias/Sonic-Realms.svg?branch=master)]( +https://travis-ci.org/humbertodias/Sonic-Realms) + +[Play](http://humbertodias.github.io/Sonic-Realms) + +[Releases](https://github.com/humbertodias/Sonic-Realms/releases) diff --git a/Scripts/build.sh b/Scripts/build.sh new file mode 100755 index 0000000..62cd4e3 --- /dev/null +++ b/Scripts/build.sh @@ -0,0 +1,159 @@ +#! /bin/sh + +project="sonic-realms" + +echo "whoami: $(whoami)" +ls -lha $(pwd) + +buildWindows(){ + + echo "Attempting to build $project for Windows" + $UNITY \ + -batchmode \ + -nographics \ + -silent-crashes \ + -logFile $(pwd)/unity.log \ + -projectPath $(pwd) \ + -buildWindowsPlayer "$(pwd)/Build/windows/$project.exe" \ + -quit + + echo 'Attempting to windows zip builds' + pushd $(pwd)/Build + zip -9 -r windows.zip windows/ + popd + +} + +buildLinux(){ + + echo "Attempting to build $project for Linux" + $UNITY \ + -batchmode \ + -nographics \ + -silent-crashes \ + -logFile $(pwd)/unity.log \ + -projectPath $(pwd) \ + -buildLinuxUniversalPlayer "$(pwd)/Build/linux/$project.exe" \ + -quit + + echo 'Attempting to Linux zip builds' + pushd $(pwd)/Build + zip -9 -r linux.zip linux/ + popd + +} + +buildOSX(){ + echo "Attempting to build $project for OS X" + $UNITY \ + -batchmode \ + -nographics \ + -silent-crashes \ + -logFile $(pwd)/unity.log \ + -projectPath $(pwd) \ + -buildOSXUniversalPlayer "$(pwd)/Build/osx/$project.app" \ + -quit + + echo 'Attempting to OSX zip builds' + pushd $(pwd)/Build + zip -9 -r osx.zip osx/ + popd +} + +buildWegGL(){ + echo "Attempting to build $project for WebGL" + $UNITY \ + -batchmode \ + -nographics \ + -silent-crashes \ + -logFile $(pwd)/unity.log \ + -projectPath $(pwd) \ + -executeMethod PerformBuild.CommandLineBuildWebGL \ + +buildlocation "$(pwd)/Build/webgl/$project" \ + -quit + + if [ $? = 0 ] ; then + echo "Building WebGL completed successfully." + echo "Zipping..." + pushd $(pwd)/Build + zip -9 -r webgl.zip webgl/ + popd + error_code=0 + else + echo "Building WebGL failed. Exited with $?." + error_code=1 + fi +} + +buildAndroid(){ + + # export JAVA_HOME=$(/usr/libexec/java_home -version 1.8) + # avoiding error : java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema + # export JAVA_OPTS='-XX:+IgnoreUnrecognizedVMOptions --add-modules java.se.ee' + + echo "ANDROID_SDK_ROOT: $ANDROID_SDK_ROOT" + echo "ANDROID_NDK_ROOT: $ANDROID_NDK_ROOT" + echo "JAVA_HOME: $JAVA_HOME" + + echo "Attempting to build $project for Android" + $UNITY \ + -batchmode \ + -nographics \ + -silent-crashes \ + -logFile $(pwd)/unity.log \ + -projectPath $(pwd) \ + -executeMethod PerformBuild.CommandLineBuildAndroid \ + +buildlocation "$(pwd)/Build/android/$project.apk" \ + -quit + + if [ $? = 0 ] ; then + echo "Building Android binaries completed successfully." + error_code=0 + else + echo "Building Android binaries failed. Exited with $?." + error_code=1 + fi + + #rm $(pwd)/Build/android/*.zip + +} + +buildiOS(){ + echo "Attempting to build $project for iOS" + $UNITY \ + -batchmode \ + -nographics \ + -silent-crashes \ + -force-free \ + -logFile $(pwd)/unity.log \ + -projectPath $(pwd) \ + -executeMethod PerformBuild.CommandLineBuildiOS \ + +buildlocation "$(pwd)/Build/ios/$project.ipa" \ + -quit + + if [ $? = 0 ] ; then + echo "Building iOS binaries completed successfully." + echo "Zipping binaries..." + zip -9 -r ios.zip . -i "$(pwd)/Build/ios" + error_code=0 + else + echo "Building iOS binaries failed. Exited with $?." + error_code=1 + fi + +} + +export EVENT_NOKQUEUE=1 + +[ -z "$UNITY" ] && echo "UNITY path wasn't set" || echo "echo $UNITY path" +[ -z "$SKIP_IOS" ] && buildiOS || echo "Skipping build for iOS" +[ -z "$SKIP_ANDROID" ] && buildAndroid || echo "Skipping build for Android" +[ -z "$SKIP_WINDOWS" ] && buildWindows || echo "Skipping build for Windows" +[ -z "$SKIP_LINUX" ] && buildLinux || echo "Skipping build for Linux" +[ -z "$SKIP_OSX" ] && buildOSX || echo "Skipping build for OSX" +[ -z "$SKIP_WEBGL" ] && buildWegGL || echo "Skipping build for WebGL" + +tree $(pwd)/Build + +echo 'Logs from build' +cat $(pwd)/unity.log diff --git a/Scripts/install.sh b/Scripts/install.sh new file mode 100755 index 0000000..aece6f2 --- /dev/null +++ b/Scripts/install.sh @@ -0,0 +1,146 @@ +#! /bin/sh + +BASE_URL=http://netstorage.unity3d.com/unity + +#HASH=649f48bbbf0f +#VERSION=5.4.1f1 + +HASH=21ae32b5a9cb +VERSION=2017.4.3f1 + +#HASH=d4d99f31acba +#VERSION=2018.1.0f2 + +#HASH=b8cbb5de9840 +#VERSION=2018.1.1f1 + +#HASH=292b93d75a2c +#VERSION=2019.1.0f2 + +#HASH=d4ddf0d95db9 +#VERSION=2019.13.3f1 + + +download() { + file=$1 + url="$BASE_URL/$HASH/$package" + + echo "Downloading from $url: " + curl -o `basename "$package"` "$url" +} + +install() { + package=$1 + download "$package" + + echo "Installing "`basename "$package"` + sudo installer -dumplog -package `basename "$package"` -target / +} + +installFromBrew() { + package=$1 + brew install $package +} + +installUnityEditor(){ + + # See $BASE_URL/$HASH/unity-$VERSION-$PLATFORM.ini for complete list + # of available packages, where PLATFORM is `osx` or `win` + + # http://netstorage.unity3d.com/unity/21ae32b5a9cb/unity-2017.4.3f1-osx.ini + + + # http://netstorage.unity3d.com/unity/947131c5be7e/unity-2017.4.39-osx.ini + + # http://netstorage.unity3d.com/unity/d4d99f31acba/unity-2018.1.0f2-osx.ini + # http://netstorage.unity3d.com/unity/b8cbb5de9840/unity-2018.1.1f1-osx.ini + # http://netstorage.unity3d.com/unity/292b93d75a2c/unity-2019.1.0f2-osx.ini + # http://netstorage.unity3d.com/unity/d4ddf0d95db9/unity-2019.3.13f1-osx.ini + + install "MacEditorInstaller/Unity-$VERSION.pkg" + + # Scripting Backend + install "MacEditorTargetInstaller/UnitySetup-Mac-IL2CPP-Support-for-Editor-$VERSION.pkg" + install "MacEditorTargetInstaller/UnitySetup-Windows-Mono-Support-for-Editor-$VERSION.pkg" + + # Cleanup + rm *.pkg + +} + +installAndroid(){ + # Oracle JDK - now is paid + #brew cask install homebrew/cask-versions/java8 + brew cask install adoptopenjdk/openjdk/adoptopenjdk8 + + # Aditionals + installFromBrew gradle + installFromBrew p7zip + installFromBrew ant + + install "MacEditorTargetInstaller/UnitySetup-Android-Support-for-Editor-$VERSION.pkg" + + export JAVA_HOME=$(/usr/libexec/java_home -version 1.8) + # avoiding error : java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema + # export JAVA_OPTS='-XX:+IgnoreUnrecognizedVMOptions --add-modules java.se.ee' + + brew cask install android-sdk + export ANDROID_HOME=/usr/local/share/android-sdk + export ANDROID_SDK_ROOT=/usr/local/share/android-sdk + export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin + export PATH=$PATH:$ANDROID_HOME/platform-tools + + brew tap homebrew/cask && brew cask install android-ndk + curl -o android-ndk-r13b-darwin-x86_64.zip https://dl.google.com/android/repository/android-ndk-r13b-darwin-x86_64.zip + unzip -qq android-ndk-r13b-darwin-x86_64.zip -d /usr/local/share/ + ln -s /usr/local/share/android-ndk-r13b /usr/local/share/android-ndk + export ANDROID_NDK_ROOT=/usr/local/share/android-ndk + + mkdir "$ANDROID_HOME/licenses"; + echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"; + echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"; + echo y | sdkmanager "platform-tools"; + echo y | sdkmanager "build-tools;25.0.2"; + echo y | android update sdk --no-ui --all --filter tool,platform-tool,android-24,build-tools-25.0.2 + + gradle -v + java -version + sdkmanager --version + echo "JAVA_HOME=$JAVA_HOME" + echo "ANDROID_HOME=$ANDROID_HOME" + echo "ANDROID_SDK_ROOT=$ANDROID_SDK_ROOT" + echo "ANDROID_NDK_ROOT=$ANDROID_NDK_ROOT" +} + +installiOS(){ + install "MacEditorTargetInstaller/UnitySetup-iOS-Support-for-Editor-$VERSION.pkg" +} + +installWebGL(){ + install "MacEditorTargetInstaller/UnitySetup-WebGL-Support-for-Editor-$VERSION.pkg" +} + +installWindows(){ + install "MacEditorTargetInstaller/UnitySetup-Windows-Support-for-Editor-$VERSION.pkg" +} + +installLinux(){ + install "MacEditorTargetInstaller/UnitySetup-Linux-Support-for-Editor-$VERSION.pkg" +} + +installOSX(){ + echo Not Required for MacOSX + #install "MacEditorTargetInstaller/UnitySetup-Mac-Support-for-Editor-$VERSION.pkg" +} + +export EVENT_NOKQUEUE=1 + +installFromBrew tree +installUnityEditor + +[ -z "$SKIP_IOS" ] && installiOS || echo "Skipping install for iOS" +[ -z "$SKIP_ANDROID" ] && installAndroid || echo "Skipping install for Android" +[ -z "$SKIP_WINDOWS" ] && installWindows || echo "Skipping install for Windows" +[ -z "$SKIP_LINUX" ] && installLinux || echo "Skipping install for Linux" +[ -z "$SKIP_OSX" ] && installOSX || echo "Skipping install for OSX" +[ -z "$SKIP_WEBGL" ] && installWebGL || echo "Skipping Install for WebGL" diff --git a/UnityPackageManager/manifest.json b/UnityPackageManager/manifest.json new file mode 100644 index 0000000..526aca6 --- /dev/null +++ b/UnityPackageManager/manifest.json @@ -0,0 +1,4 @@ +{ + "dependencies": { + } +} diff --git a/android.keystore b/android.keystore new file mode 100644 index 0000000..be76da4 Binary files /dev/null and b/android.keystore differ