├── .gitignore ├── Assets ├── LightProbeTools.meta └── LightProbeTools │ ├── Editor.meta │ ├── Editor │ ├── LightProbeBakedWeightTool.cs │ ├── LightProbeBakedWeightTool.cs.meta │ ├── SHWeightSettings.cs │ └── SHWeightSettings.cs.meta │ ├── Samples.meta │ └── Samples │ ├── Materials.meta │ ├── Materials │ ├── 02 - Default.mat │ ├── 02 - Default.mat.meta │ ├── 03 - Default.mat │ ├── 03 - Default.mat.meta │ ├── 07 - Default.mat │ ├── 07 - Default.mat.meta │ ├── 08 - Default.mat │ ├── 08 - Default.mat.meta │ ├── Box.mat │ ├── Box.mat.meta │ ├── Material #26.mat │ ├── Material #26.mat.meta │ ├── Material #27.mat │ ├── Material #27.mat.meta │ ├── Material #30.mat │ ├── Material #30.mat.meta │ ├── No Name.mat │ ├── No Name.mat.meta │ ├── RoomBase.mat │ ├── RoomBase.mat.meta │ ├── SkullMat.mat │ ├── SkullMat.mat.meta │ ├── Torus.mat │ └── Torus.mat.meta │ ├── Mesh.meta │ ├── Mesh │ ├── Baked_normal.png │ ├── Baked_normal.png.meta │ ├── Baked_occlusion.png │ ├── Baked_occlusion.png.meta │ ├── BaseOpenSpace.FBX │ ├── BaseOpenSpace.FBX.meta │ ├── TorusKnot.FBX │ ├── TorusKnot.FBX.meta │ ├── freeskull1.OBJ │ └── freeskull1.OBJ.meta │ ├── SampleScene.meta │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── SampleScene │ ├── LightingData.asset │ ├── LightingData.asset.meta │ ├── Lightmap-0_comp_dir.png │ ├── Lightmap-0_comp_dir.png.meta │ ├── Lightmap-0_comp_light.exr │ ├── Lightmap-0_comp_light.exr.meta │ ├── Lightmap-0_comp_shadowmask.png │ ├── Lightmap-0_comp_shadowmask.png.meta │ ├── ReflectionProbe-0.exr │ ├── ReflectionProbe-0.exr.meta │ ├── SampleScene_LP.xml │ ├── SampleScene_LP.xml.meta │ ├── SampleScene_LPW.asset │ └── SampleScene_LPW.asset.meta │ ├── Textures.meta │ └── Textures │ ├── 1m.tif │ └── 1m.tif.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | # =============== # 2 | # Unity generated # 3 | # =============== # 4 | [Tt]emp/ 5 | [Oo]bj/ 6 | [Bb]uild 7 | /[Bb]uilds/ 8 | /[Ll]ibrary/ 9 | sysinfo.txt 10 | *.stackdump 11 | /Assets/AssetStoreTools* 12 | *.apk 13 | *.unitypackage 14 | 15 | # ===================================== # 16 | # Visual Studio / MonoDevelop generated # 17 | # ===================================== # 18 | [Ee]xported[Oo]bj/ 19 | .vs/ 20 | /*.userprefs 21 | /*.csproj 22 | /*.pidb 23 | *.pidb.meta 24 | /*.suo 25 | /*.sln* 26 | /*.user 27 | /*.unityproj 28 | /*.booproj 29 | .consulo/ 30 | /*.tmp 31 | /*.svd 32 | 33 | # ============ # 34 | # OS generated # 35 | # ============ # 36 | .DS_Store* 37 | ._* 38 | .Spotlight-V100 39 | .Trashes 40 | Icon? 41 | ehthumbs.db 42 | [Tt]humbs.db 43 | [Dd]esktop.ini 44 | Corridor/Library/ShaderCache/ 45 | Corridor/Library/metadata/ 46 | -------------------------------------------------------------------------------- /Assets/LightProbeTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e95c6b901526ad42acda92a91f7657d 3 | folderAsset: yes 4 | timeCreated: 1497431827 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdd79aed80c11a449a5d6edfcad12b59 3 | folderAsset: yes 4 | timeCreated: 1461548919 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Editor/LightProbeBakedWeightTool.cs: -------------------------------------------------------------------------------- 1 | //2016.4.10 2 | //Authored by leegoonz.(Lee JungPyo / 李正彪) 3 | //contact via leegoon73@gmail.com (EN) / leegoonz@163.com(CN) 4 | //http://www.leegoonz.com 5 | 6 | using System; 7 | using UnityEngine; 8 | using UnityEditor; 9 | using UnityEngine.Rendering; 10 | using System.Xml; 11 | using System.Collections.Generic; 12 | using UnityEngine.SceneManagement; 13 | 14 | //Author JP.Lee Feb/29/2016 15 | namespace TIANYUUNITY { 16 | class LightProbeBakedWeightTool : EditorWindow { 17 | #region Public Variables 18 | 19 | private string GIDataname; 20 | private string sHSettingsName; 21 | private TextAsset bakedGIData; 22 | private SHWeightSettings sHWeightSettings; 23 | private float bakedGIWeight = 1; 24 | private float[] bakedProbeWeight; 25 | private string curSceneName; 26 | const string headerTile = "LIGHT PROBES WEIGHT TOOL Ver.1.0"; 27 | const string headerMessage = "Baked lightprobes Spherical Harmonic 27 baked data value have store into the text assets.While editing to light scenes be sure that able to flexable correction to probes values through stored lightprobes sh_27 data with blending of weight data."; 28 | 29 | #endregion 30 | 31 | #region Private Variables 32 | 33 | readonly GUIStyle headerStyle = new GUIStyle("LODLevelNotifyText");// new GUIStyle("TL Selection H2"); 34 | readonly GUIStyle footerStyle = new GUIStyle("GUIEditor.BreadcrumbLeft"); 35 | 36 | const float BAKED_PROBE_WEIGHT_ENTRY_HEIGHT = 25.0f; 37 | private int bakedProbeViewIdx; 38 | Vector2 bakedProbeWeightScrollPos; 39 | 40 | GUIStyle probeButtonActive; 41 | readonly GUILayoutOption probeBtnWidth = GUILayout.Width(100); 42 | readonly GUILayoutOption weightWidth = GUILayout.Width(130); 43 | readonly GUILayoutOption labelWidth = GUILayout.Width(150); 44 | readonly GUILayoutOption titleHeight = GUILayout.Height(30); 45 | readonly private GUIContent labeCopyright = new GUIContent("COPYRIGHT ALL RIGHT RESERVED JP.LEE / leegoonz@163.com"); 46 | GUILayoutOption copyrightWidth; 47 | #endregion 48 | 49 | [MenuItem("Pangu/Artist Tools/Light Probe Weight Window %1", priority = 1)] 50 | //& is alt , % is ctrl , # is shift 51 | static void ShowLightProbeBakedWeightWindow() { 52 | var lightProbeBakedWindow = EditorWindow.GetWindow("Probe Window"); 53 | lightProbeBakedWindow.minSize = Vector2.one * 460; 54 | lightProbeBakedWindow.Show(); 55 | } 56 | 57 | void OnEnable() { 58 | curSceneName = SceneManager.GetSceneAt(0).name; 59 | GenerateStyles(); 60 | 61 | // Initialize baked probe weight data 62 | { 63 | bakedProbeWeight = new float[LightmapSettings.lightProbes.count]; 64 | for (int i = 0; i < bakedProbeWeight.Length; ++i) { 65 | bakedProbeWeight[i] = 1.0f; 66 | } 67 | bakedProbeViewIdx = -1; 68 | bakedProbeWeightScrollPos = new Vector2(0.0f, 0.0f); 69 | SceneView.RepaintAll(); 70 | } 71 | 72 | SceneView.onSceneGUIDelegate += OnSceneGUI; 73 | } 74 | 75 | void OnDestroy() { 76 | SceneView.onSceneGUIDelegate -= OnSceneGUI; 77 | } 78 | 79 | void OnSceneGUI(SceneView sceneView) { 80 | if (bakedProbeWeight != null) { 81 | int[] ids = new int[bakedProbeWeight.Length]; 82 | for (int i = 0; i < ids.Length; ++i) { 83 | ids[i] = GUIUtility.GetControlID(FocusType.Passive); 84 | } 85 | 86 | if (Event.current.type == EventType.Repaint || Event.current.type == EventType.Layout) { 87 | for (int i = 0; i < bakedProbeWeight.Length; ++i) { 88 | Vector3 lightProbeToViewPos = LightmapSettings.lightProbes.positions[i]; 89 | Color lightProbeToViewCol = Color.yellow * bakedProbeWeight[i] / 2.0f + Color.red * (2 - bakedProbeWeight[i]) / 2.0f; 90 | lightProbeToViewCol.a = bakedProbeViewIdx == i ? 0.7f : 0.3f; 91 | 92 | Handles.color = lightProbeToViewCol; 93 | Handles.SphereHandleCap(ids[i], lightProbeToViewPos, Quaternion.identity, 0.15f, Event.current.type); 94 | } 95 | } else if (Event.current.type == EventType.MouseDown && Event.current.button == 0) { 96 | for (int i = 0; i < bakedProbeWeight.Length; ++i) { 97 | if (HandleUtility.nearestControl == ids[i]) { 98 | if (bakedProbeViewIdx != i) { 99 | bakedProbeViewIdx = i; 100 | bakedProbeWeightScrollPos.y = BAKED_PROBE_WEIGHT_ENTRY_HEIGHT * bakedProbeViewIdx; 101 | SceneView.RepaintAll(); 102 | } 103 | 104 | Vector3 lightProbeToViewPos = LightmapSettings.lightProbes.positions[bakedProbeViewIdx]; 105 | SceneView.lastActiveSceneView.LookAt(lightProbeToViewPos); 106 | break; 107 | } 108 | } 109 | } 110 | } 111 | } 112 | 113 | void OnGUI() { 114 | OnGUI_Header(); 115 | OnGUI_TopMenu(); 116 | 117 | if (bakedProbeWeight != null) { 118 | OnGUI_Body_Top(); 119 | OnGUI_Body_ProbeList(); 120 | OnGUI_Body_Bottom(); 121 | } 122 | 123 | OnGUI_Footer(); 124 | Repaint(); 125 | } 126 | 127 | private void OnGUI_Header() { 128 | EditorGUILayout.LabelField(headerTile, headerStyle, titleHeight); 129 | EditorGUILayout.HelpBox(headerMessage, MessageType.Info); 130 | } 131 | 132 | private void OnGUI_TopMenu() { 133 | EditorGUILayout.BeginHorizontal(); 134 | { 135 | GUILayout.Space(10.0f); 136 | EditorGUILayout.LabelField("SAVE SH DATA:", labelWidth); 137 | 138 | GIDataname = EditorGUILayout.TextField(curSceneName + "_LP"); 139 | 140 | if (GUILayout.Button("SAVE")) { 141 | Debug.Log("Pressed SaveProbeData to XML btn"); 142 | if (GIDataname == string.Empty) { 143 | Debug.LogWarning("There is no baked GI name defined, add name to save"); 144 | } else { 145 | saveProbeDataXml(getSavePath(GIDataname, "xml")); 146 | AssetDatabase.Refresh(); 147 | 148 | // Initialize baked probe weight data 149 | { 150 | Array.Resize(ref bakedProbeWeight, LightmapSettings.lightProbes.count); 151 | bakedProbeViewIdx = -1; 152 | bakedProbeWeightScrollPos = new Vector2(0.0f, 0.0f); 153 | SceneView.RepaintAll(); 154 | } 155 | } 156 | } 157 | } 158 | EditorGUILayout.EndHorizontal(); 159 | 160 | EditorGUILayout.BeginHorizontal(); 161 | { 162 | GUILayout.Space(10.0f); 163 | EditorGUILayout.LabelField("STORED SH DATA:", labelWidth); 164 | bakedGIData = EditorGUILayout.ObjectField(bakedGIData, typeof(TextAsset), false) as TextAsset; 165 | } 166 | EditorGUILayout.EndHorizontal(); 167 | 168 | if (GUILayout.Button("RESTORE ORIGINAL SH", GUILayout.Height(48))) { 169 | Debug.Log("Restore Original SH"); 170 | calculateProbes(1.0f); 171 | } 172 | 173 | EditorGUILayout.BeginHorizontal(); 174 | { 175 | GUILayout.Space(10.0f); 176 | EditorGUILayout.LabelField("SH WEIGHT:", weightWidth); 177 | bakedGIWeight = GUILayout.HorizontalSlider(bakedGIWeight, 0.0f, 2.0f); 178 | GUILayout.Box("", GUIStyle.none, GUILayout.Width(16)); 179 | } 180 | EditorGUILayout.EndHorizontal(); 181 | } 182 | 183 | private void OnGUI_Body_Top() { 184 | EditorGUILayout.BeginHorizontal(); 185 | { 186 | GUILayout.Space(10.0f); 187 | EditorGUILayout.LabelField("SH WEIGHT PER PROBE:", labelWidth); 188 | if (GUILayout.Button("RESET")) { 189 | for (int i = 0; i < bakedProbeWeight.Length; ++i) { 190 | bakedProbeWeight[i] = 1.0f; 191 | } 192 | bakedProbeViewIdx = -1; 193 | bakedProbeWeightScrollPos = new Vector2(0.0f, 0.0f); 194 | SceneView.RepaintAll(); 195 | } 196 | GUILayout.Box("", GUIStyle.none, GUILayout.Width(16)); 197 | } 198 | EditorGUILayout.EndHorizontal(); 199 | } 200 | 201 | private void OnGUI_Body_ProbeList() { 202 | bakedProbeWeightScrollPos = EditorGUILayout.BeginScrollView(bakedProbeWeightScrollPos); 203 | { 204 | for (int i = 0; i < bakedProbeWeight.Length; ++i) { 205 | EditorGUILayout.BeginHorizontal(); 206 | { 207 | GUILayout.Space(10.0f); 208 | if (bakedProbeViewIdx != i) { 209 | if (GUILayout.Button("PROBE " + i.ToString(), probeBtnWidth, GUILayout.Height(BAKED_PROBE_WEIGHT_ENTRY_HEIGHT))) { 210 | bakedProbeViewIdx = i; 211 | Vector3 lightProbeToViewPos = LightmapSettings.lightProbes.positions[bakedProbeViewIdx]; 212 | SceneView.lastActiveSceneView.LookAt(lightProbeToViewPos); 213 | SceneView.RepaintAll(); 214 | } 215 | } else { 216 | if (GUILayout.Button("PROBE " + i.ToString(), probeButtonActive, probeBtnWidth, GUILayout.Height(BAKED_PROBE_WEIGHT_ENTRY_HEIGHT))) { 217 | Vector3 lightProbeToViewPos = LightmapSettings.lightProbes.positions[bakedProbeViewIdx]; 218 | SceneView.lastActiveSceneView.LookAt(lightProbeToViewPos); 219 | SceneView.RepaintAll(); 220 | } 221 | } 222 | GUILayout.Space(30.0f); 223 | float newSliderValue = GUILayout.HorizontalSlider(bakedProbeWeight[i], 0.0f, 2.0f); 224 | if (Math.Abs(bakedProbeWeight[i] - newSliderValue) > float.Epsilon) { 225 | if (bakedProbeViewIdx != i) { 226 | bakedProbeViewIdx = i; 227 | Vector3 lightProbeToViewPos = LightmapSettings.lightProbes.positions[bakedProbeViewIdx]; 228 | SceneView.lastActiveSceneView.LookAt(lightProbeToViewPos); 229 | } 230 | 231 | bakedProbeWeight[i] = newSliderValue; 232 | SceneView.RepaintAll(); 233 | } 234 | } 235 | EditorGUILayout.EndHorizontal(); 236 | } 237 | } 238 | EditorGUILayout.EndScrollView(); 239 | } 240 | 241 | private void OnGUI_Body_Bottom() { 242 | EditorGUILayout.BeginHorizontal(); 243 | { 244 | GUILayout.Space(10.0f); 245 | EditorGUILayout.LabelField("SAVE SH WEIGHT:", labelWidth); 246 | sHSettingsName = EditorGUILayout.TextField(curSceneName + "_LPW", GUILayout.Width(163)); 247 | if (GUILayout.Button("SAVE")) { 248 | SHWeightSettings sHSettingsAsset = AssetDatabase.LoadAssetAtPath(getSavePath(sHSettingsName, "asset"), typeof(SHWeightSettings)) as SHWeightSettings; 249 | if (sHSettingsAsset == null) { 250 | SHWeightSettings asset = CreateInstance(); 251 | asset.bakedGIWeight = bakedGIWeight; 252 | asset.bakedProbeWeight = new float[bakedProbeWeight.Length]; 253 | Array.Copy(bakedProbeWeight, asset.bakedProbeWeight, bakedProbeWeight.Length); 254 | AssetDatabase.CreateAsset(asset, getSavePath(sHSettingsName, "asset")); 255 | } else { 256 | sHSettingsAsset.bakedGIWeight = bakedGIWeight; 257 | sHSettingsAsset.bakedProbeWeight = new float[bakedProbeWeight.Length]; 258 | Array.Copy(bakedProbeWeight, sHSettingsAsset.bakedProbeWeight, bakedProbeWeight.Length); 259 | } 260 | AssetDatabase.SaveAssets(); 261 | AssetDatabase.Refresh(); 262 | } 263 | } 264 | EditorGUILayout.EndHorizontal(); 265 | 266 | EditorGUILayout.BeginHorizontal(); 267 | { 268 | GUILayout.Space(10.0f); 269 | EditorGUILayout.LabelField("STORED SH WEIGHT:", labelWidth); 270 | sHWeightSettings = EditorGUILayout.ObjectField(sHWeightSettings, typeof(SHWeightSettings), false, GUILayout.Width(163)) as SHWeightSettings; 271 | if (GUILayout.Button("LOAD")) { 272 | bakedGIWeight = sHWeightSettings.bakedGIWeight; 273 | bakedProbeWeight = new float[sHWeightSettings.bakedProbeWeight.Length]; 274 | Array.Copy(sHWeightSettings.bakedProbeWeight, bakedProbeWeight, sHWeightSettings.bakedProbeWeight.Length); 275 | bakedProbeViewIdx = -1; 276 | bakedProbeWeightScrollPos = new Vector2(0.0f, 0.0f); 277 | SceneView.RepaintAll(); 278 | } 279 | } 280 | EditorGUILayout.EndHorizontal(); 281 | } 282 | 283 | private void OnGUI_Footer() { 284 | //process original sh with multiply GI Weight 285 | if (GUILayout.Button("LIGHT PROBES WEIGHT PROCESS", GUILayout.Height(48))) { 286 | calculateProbes(bakedGIWeight, bakedProbeWeight); 287 | } 288 | 289 | if (GUI.changed) { 290 | EditorUtility.SetDirty(this); 291 | } 292 | 293 | //Draw Footer Image 294 | 295 | EditorGUILayout.LabelField(labeCopyright, footerStyle, copyrightWidth); 296 | } 297 | 298 | void calculateProbes(float bakedGIWeight, float[] bakedGIWeightPerProbe = null) { 299 | 300 | SphericalHarmonicsL2[] bakedProbes = LightmapSettings.lightProbes.bakedProbes; 301 | int probesCount = LightmapSettings.lightProbes.count; 302 | for (int i = 0; i < probesCount; i++) { 303 | bakedProbes[i].Clear(); 304 | } 305 | if (bakedGIData == null) { 306 | Debug.LogError("null reference for baked GI data"); 307 | return; 308 | } 309 | bakedProbes = assignData2bakedProbe(loadProbeDataXml(AssetDatabase.GetAssetPath(bakedGIData)), bakedGIWeight, bakedGIWeightPerProbe, bakedProbes, probesCount); 310 | LightmapSettings.lightProbes.bakedProbes = bakedProbes; 311 | } 312 | 313 | static void GetProbeInformation(List> probedata) { 314 | SphericalHarmonicsL2[] bakedProbes = LightmapSettings.lightProbes.bakedProbes; 315 | 316 | int probeCount = LightmapSettings.lightProbes.count; 317 | //get all the coeffiencts 318 | for (int i = 0; i < probeCount; i++) { 319 | List probeCoefficient = new List(); 320 | for (int j = 0; j < 3; j++) { 321 | for (int k = 0; k < 9; k++) { 322 | probeCoefficient.Add(bakedProbes[i][j, k]); 323 | } 324 | } 325 | probedata.Add(probeCoefficient); 326 | } 327 | } 328 | 329 | public static void saveProbeDataXml(string filepath) { 330 | List> probedata = new List>(); 331 | GetProbeInformation(probedata); 332 | //string filepath = Application.dataPath+@"/probeData/test_green.xml"; 333 | XmlDocument xmldoc = new XmlDocument(); 334 | XmlElement rootNode = xmldoc.CreateElement("probedata"); 335 | xmldoc.AppendChild(rootNode); 336 | for (int i = 0; i < probedata.Count; i++) { 337 | string probename = "probe" + i.ToString(); 338 | XmlElement probeNode = xmldoc.CreateElement(probename); // create the rotation node. 339 | rootNode.AppendChild(probeNode); 340 | for (int j = 0; j < probedata[i].Count; j++) { 341 | XmlElement coefNode = xmldoc.CreateElement("coefficient"); // create the x node. 342 | coefNode.InnerText = (probedata[i][j]).ToString(); // apply to the node text the values of the variable. 343 | probeNode.AppendChild(coefNode); 344 | } 345 | } 346 | xmldoc.Save(filepath); // save file. 347 | } 348 | 349 | public static List> loadProbeDataXml(string filepath) { 350 | //string filepath = Application.dataPath+@"/probeData/test_blue.xml"; 351 | XmlDocument xmldoc = new XmlDocument(); 352 | List> tempProbeData = new List>(); 353 | xmldoc.Load(filepath); 354 | XmlNodeList rootNodeList = xmldoc.GetElementsByTagName("probedata"); 355 | foreach (XmlNode rootNode in rootNodeList) { 356 | XmlNodeList probeNodeList = rootNode.ChildNodes; 357 | foreach (XmlNode probeNode in probeNodeList) { 358 | List probeCoefficient = new List(); 359 | XmlNodeList coefList = probeNode.ChildNodes; 360 | foreach (XmlNode coefNode in coefList) { 361 | //print (coefNode.InnerText); 362 | float coeffcient = float.Parse(coefNode.InnerText); 363 | probeCoefficient.Add(coeffcient); 364 | } 365 | tempProbeData.Add(probeCoefficient); 366 | } 367 | } 368 | return tempProbeData; 369 | } 370 | 371 | //read data from probeDataXML and assign them to the baked probe 372 | public SphericalHarmonicsL2[] assignData2bakedProbe(List> tempProbeData, float GIweight, float[] GIWeightPerProbe, SphericalHarmonicsL2[] bakedProbes, int probeCount) { 373 | for (int i = 0; i < probeCount; i++) { 374 | for (int j = 0; j < 3; j++) { 375 | for (int k = 0; k < 9; k++) { 376 | bakedProbes[i][j, k] += tempProbeData[i][9 * j + k] * GIweight; 377 | } 378 | } 379 | } 380 | 381 | if (GIWeightPerProbe != null) { 382 | for (int i = 0; i < probeCount; i++) { 383 | for (int j = 0; j < 3; j++) { 384 | for (int k = 0; k < 9; k++) { 385 | bakedProbes[i][j, k] *= GIWeightPerProbe[i]; 386 | } 387 | } 388 | } 389 | } 390 | 391 | return bakedProbes; 392 | } 393 | 394 | void bakedGIList(TextAsset bakedGIData, float bakedGIWeight) { 395 | TextAsset tempbakedGIData = new TextAsset(); 396 | float tempbakedGIWeight = new float(); 397 | bakedGIData = tempbakedGIData; 398 | bakedGIWeight = tempbakedGIWeight; 399 | } 400 | 401 | 402 | string getXMLPath(TextAsset GIdata) { 403 | Debug.Log(AssetDatabase.GetAssetPath(GIdata)); 404 | return (AssetDatabase.GetAssetPath(GIdata)); 405 | //string filepath = Application.dataPath+@"/probeData/test_blue.xml"; 406 | } 407 | 408 | string getSavePath(string GIDataname, string ExtensionName) { 409 | string scenePath = SceneManager.GetSceneAt(0).path; 410 | scenePath = scenePath.Substring(0, scenePath.Length - 6); 411 | string savepath = scenePath + @"/" + GIDataname + "." + ExtensionName; 412 | return savepath; 413 | } 414 | 415 | void GenerateStyles() { 416 | copyrightWidth = GUILayout.Width(footerStyle.CalcSize(labeCopyright).x); 417 | 418 | probeButtonActive = new GUIStyle("button"); 419 | probeButtonActive.normal = probeButtonActive.onActive; 420 | } 421 | } 422 | } -------------------------------------------------------------------------------- /Assets/LightProbeTools/Editor/LightProbeBakedWeightTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c0d82667c961d542a29cb6e3ff6f800 3 | timeCreated: 1461426411 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Editor/SHWeightSettings.cs: -------------------------------------------------------------------------------- 1 | //2016.4.10 2 | //Authored by leegoonz.(Lee JungPyo / 李正彪) 3 | //contact via leegoon73@gmail.com (EN) / leegoonz@163.com(CN) 4 | //http://www.leegoonz.com 5 | 6 | using UnityEngine; 7 | 8 | //Author JP.Lee Feb/29/2016 9 | namespace TIANYUUNITY 10 | { 11 | #pragma warning disable 618 12 | #pragma warning disable 414 13 | class SHWeightSettings : ScriptableObject 14 | { 15 | public float bakedGIWeight; 16 | public float[] bakedProbeWeight; 17 | } 18 | #pragma warning restore 618 19 | #pragma warning restore 414 20 | } 21 | 22 | 23 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Editor/SHWeightSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 426e03dc9ada58041bb0c3574f94ff7a 3 | timeCreated: 1514817219 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d797722b6a7c1ac47b26375e4e15d48f 3 | folderAsset: yes 4 | timeCreated: 1461562776 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bc45c502a421d8448e52f54bd790af8 3 | folderAsset: yes 4 | timeCreated: 1461563835 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/02 - Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Materials/02 - Default.mat -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/02 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d812ae8c53ca3b84491d3747bd6232f9 3 | timeCreated: 1461564058 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/03 - Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Materials/03 - Default.mat -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/03 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39e5da2e80d24bf43b060563fa92cad5 3 | timeCreated: 1461564058 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/07 - Default.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: 07 - Default 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.5 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.9843138, g: 0.9843138, b: 0.9843138, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/07 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba16ae48425cea94db9a086dac5dc1a2 3 | timeCreated: 1461564151 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/08 - Default.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: 08 - Default 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.5 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.24313727, g: 0.45882356, b: 0.08627451, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/08 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 989333d5d6456b040b2d209b6f7569c9 3 | timeCreated: 1461564151 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Box.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: Box 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: _EMISSION 12 | m_LightmapFlags: 1 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0.499, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.7941176, g: 0, b: 0, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Box.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb7cb57971710c4c9cae3faf7cd9384 3 | timeCreated: 1461563865 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Material #26.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: 'Material #26' 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.5 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.588, g: 0.588, b: 0.588, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Material #26.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3783e58bdc02fc4d9aa6695d07ae49e 3 | timeCreated: 1461564057 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Material #27.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: 'Material #27' 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.5 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.588, g: 0.588, b: 0.588, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Material #27.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdf804390d329744f94a2c7cad939704 3 | timeCreated: 1461564058 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Material #30.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: 'Material #30' 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.5 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.588, g: 0.588, b: 0.588, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Material #30.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df2270f9e2696224ab09a6fa152d8abd 3 | timeCreated: 1461564058 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/No Name.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: No Name 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.5 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 1, g: 1, b: 1, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6885651cc2d73a4d8d0763181c751fa 3 | timeCreated: 1461563589 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/RoomBase.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Materials/RoomBase.mat -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/RoomBase.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c116117c141b9f943a11f3bb62877051 3 | timeCreated: 1461563861 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/SkullMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Materials/SkullMat.mat -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/SkullMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e560b6b01f3cb44589d2e52dbe343e2 3 | timeCreated: 1515002488 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Torus.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: Torus 10 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | data: 19 | first: 20 | name: _MainTex 21 | second: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | data: 26 | first: 27 | name: _BumpMap 28 | second: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | data: 33 | first: 34 | name: _DetailNormalMap 35 | second: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | data: 40 | first: 41 | name: _ParallaxMap 42 | second: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | data: 47 | first: 48 | name: _OcclusionMap 49 | second: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | data: 54 | first: 55 | name: _EmissionMap 56 | second: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | data: 61 | first: 62 | name: _DetailMask 63 | second: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | data: 68 | first: 69 | name: _DetailAlbedoMap 70 | second: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | data: 75 | first: 76 | name: _MetallicGlossMap 77 | second: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | m_Floats: 82 | data: 83 | first: 84 | name: _SrcBlend 85 | second: 1 86 | data: 87 | first: 88 | name: _DstBlend 89 | second: 0 90 | data: 91 | first: 92 | name: _Cutoff 93 | second: 0.5 94 | data: 95 | first: 96 | name: _Parallax 97 | second: 0.02 98 | data: 99 | first: 100 | name: _ZWrite 101 | second: 1 102 | data: 103 | first: 104 | name: _Glossiness 105 | second: 0.569 106 | data: 107 | first: 108 | name: _BumpScale 109 | second: 1 110 | data: 111 | first: 112 | name: _OcclusionStrength 113 | second: 1 114 | data: 115 | first: 116 | name: _DetailNormalMapScale 117 | second: 1 118 | data: 119 | first: 120 | name: _UVSec 121 | second: 0 122 | data: 123 | first: 124 | name: _Mode 125 | second: 0 126 | data: 127 | first: 128 | name: _Metallic 129 | second: 0 130 | m_Colors: 131 | data: 132 | first: 133 | name: _EmissionColor 134 | second: {r: 0, g: 0, b: 0, a: 1} 135 | data: 136 | first: 137 | name: _Color 138 | second: {r: 0.5514706, g: 0.5514706, b: 0.5514706, a: 1} 139 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Materials/Torus.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0f408174d927944aa8bebd7d36afb31 3 | timeCreated: 1461563865 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be5b6cbe798663f40988709a4b8cc799 3 | folderAsset: yes 4 | timeCreated: 1461563589 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/Baked_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Mesh/Baked_normal.png -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/Baked_normal.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7444e22dcc6c95949a743cf997420bfc 3 | timeCreated: 1515002512 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 0 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: -1 38 | wrapV: -1 39 | wrapW: -1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 1 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | spriteSheet: 70 | serializedVersion: 2 71 | sprites: [] 72 | outline: [] 73 | physicsShape: [] 74 | spritePackingTag: 75 | userData: 76 | assetBundleName: 77 | assetBundleVariant: 78 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/Baked_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Mesh/Baked_occlusion.png -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/Baked_occlusion.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 093eb63632d5a2a4bbcccfacffca6165 3 | timeCreated: 1515002414 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: -1 38 | wrapV: -1 39 | wrapW: -1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | spriteSheet: 70 | serializedVersion: 2 71 | sprites: [] 72 | outline: [] 73 | physicsShape: [] 74 | spritePackingTag: 75 | userData: 76 | assetBundleName: 77 | assetBundleVariant: 78 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/BaseOpenSpace.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Mesh/BaseOpenSpace.FBX -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/BaseOpenSpace.FBX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a24046a06247e1459d2245c54e93387 3 | timeCreated: 1461563589 4 | licenseType: Pro 5 | ModelImporter: 6 | serializedVersion: 19 7 | fileIDToRecycleName: 8 | 100000: //RootNode 9 | 400000: //RootNode 10 | 2300000: //RootNode 11 | 3300000: //RootNode 12 | 4300000: Box001 13 | materials: 14 | importMaterials: 0 15 | materialName: 0 16 | materialSearch: 1 17 | animations: 18 | legacyGenerateAnimations: 4 19 | bakeSimulation: 0 20 | resampleRotations: 1 21 | optimizeGameObjects: 0 22 | motionNodeName: 23 | animationImportErrors: 24 | animationImportWarnings: 25 | animationRetargetingWarnings: 26 | animationDoRetargetingWarnings: 0 27 | animationCompression: 1 28 | animationRotationError: 0.5 29 | animationPositionError: 0.5 30 | animationScaleError: 0.5 31 | animationWrapMode: 0 32 | extraExposedTransformPaths: [] 33 | clipAnimations: [] 34 | isReadable: 1 35 | meshes: 36 | lODScreenPercentages: [] 37 | globalScale: 1 38 | meshCompression: 0 39 | addColliders: 0 40 | importBlendShapes: 0 41 | swapUVChannels: 0 42 | generateSecondaryUV: 1 43 | useFileUnits: 1 44 | optimizeMeshForGPU: 0 45 | keepQuads: 0 46 | weldVertices: 1 47 | secondaryUVAngleDistortion: 8 48 | secondaryUVAreaDistortion: 15.000001 49 | secondaryUVHardAngle: 88 50 | secondaryUVPackMargin: 4 51 | useFileScale: 1 52 | tangentSpace: 53 | normalSmoothAngle: 18 54 | normalImportMode: 1 55 | tangentImportMode: 3 56 | importAnimation: 0 57 | copyAvatar: 0 58 | humanDescription: 59 | human: [] 60 | skeleton: [] 61 | armTwist: 0.5 62 | foreArmTwist: 0.5 63 | upperLegTwist: 0.5 64 | legTwist: 0.5 65 | armStretch: 0.05 66 | legStretch: 0.05 67 | feetSpacing: 0 68 | rootMotionBoneName: 69 | hasTranslationDoF: 0 70 | lastHumanDescriptionAvatarSource: {instanceID: 0} 71 | animationType: 0 72 | humanoidOversampling: 1 73 | additionalBone: 0 74 | userData: 75 | assetBundleName: 76 | assetBundleVariant: 77 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/TorusKnot.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Mesh/TorusKnot.FBX -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/TorusKnot.FBX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d41c04fe22e7aa4da2997ffd094cdde 3 | timeCreated: 1461563589 4 | licenseType: Pro 5 | ModelImporter: 6 | serializedVersion: 19 7 | fileIDToRecycleName: 8 | 100000: //RootNode 9 | 400000: //RootNode 10 | 2300000: //RootNode 11 | 3300000: //RootNode 12 | 4300000: Torus Knot001 13 | 7400000: Take 001 14 | 9500000: //RootNode 15 | 11100000: //RootNode 16 | materials: 17 | importMaterials: 1 18 | materialName: 0 19 | materialSearch: 1 20 | animations: 21 | legacyGenerateAnimations: 4 22 | bakeSimulation: 0 23 | resampleRotations: 1 24 | optimizeGameObjects: 0 25 | motionNodeName: 26 | animationImportErrors: 27 | animationImportWarnings: 28 | animationRetargetingWarnings: 29 | animationDoRetargetingWarnings: 0 30 | animationCompression: 1 31 | animationRotationError: 0.5 32 | animationPositionError: 0.5 33 | animationScaleError: 0.5 34 | animationWrapMode: 0 35 | extraExposedTransformPaths: [] 36 | clipAnimations: 37 | - serializedVersion: 16 38 | name: Take 001 39 | takeName: Take 001 40 | firstFrame: 0 41 | lastFrame: 300 42 | wrapMode: 2 43 | orientationOffsetY: 0 44 | level: 0 45 | cycleOffset: 0 46 | loop: 0 47 | hasAdditiveReferencePose: 0 48 | loopTime: 0 49 | loopBlend: 0 50 | loopBlendOrientation: 0 51 | loopBlendPositionY: 0 52 | loopBlendPositionXZ: 0 53 | keepOriginalOrientation: 0 54 | keepOriginalPositionY: 1 55 | keepOriginalPositionXZ: 0 56 | heightFromFeet: 0 57 | mirror: 0 58 | bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 59 | curves: [] 60 | events: [] 61 | transformMask: 62 | - path: 63 | weight: 1 64 | maskType: 0 65 | maskSource: {instanceID: 0} 66 | additiveReferencePoseFrame: 0 67 | isReadable: 1 68 | meshes: 69 | lODScreenPercentages: [] 70 | globalScale: 1 71 | meshCompression: 0 72 | addColliders: 0 73 | importBlendShapes: 1 74 | swapUVChannels: 0 75 | generateSecondaryUV: 0 76 | useFileUnits: 1 77 | optimizeMeshForGPU: 1 78 | keepQuads: 0 79 | weldVertices: 1 80 | secondaryUVAngleDistortion: 8 81 | secondaryUVAreaDistortion: 15.000001 82 | secondaryUVHardAngle: 88 83 | secondaryUVPackMargin: 4 84 | useFileScale: 1 85 | tangentSpace: 86 | normalSmoothAngle: 60 87 | normalImportMode: 0 88 | tangentImportMode: 3 89 | importAnimation: 1 90 | copyAvatar: 0 91 | humanDescription: 92 | human: [] 93 | skeleton: [] 94 | armTwist: 0.5 95 | foreArmTwist: 0.5 96 | upperLegTwist: 0.5 97 | legTwist: 0.5 98 | armStretch: 0.05 99 | legStretch: 0.05 100 | feetSpacing: 0 101 | rootMotionBoneName: 102 | hasTranslationDoF: 0 103 | lastHumanDescriptionAvatarSource: {instanceID: 0} 104 | animationType: 1 105 | humanoidOversampling: 1 106 | additionalBone: 0 107 | userData: 108 | assetBundleName: 109 | assetBundleVariant: 110 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Mesh/freeskull1.OBJ.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6245010e104955a4caebb988f901da1d 3 | timeCreated: 1515002435 4 | licenseType: Pro 5 | ModelImporter: 6 | serializedVersion: 22 7 | fileIDToRecycleName: 8 | 100000: //RootNode 9 | 100002: Group60104 10 | 400000: //RootNode 11 | 400002: Group60104 12 | 2100000: Group60104Mat 13 | 2300000: Group60104 14 | 3300000: Group60104 15 | 4300000: Group60104 16 | externalObjects: {} 17 | materials: 18 | importMaterials: 1 19 | materialName: 0 20 | materialSearch: 1 21 | materialLocation: 1 22 | animations: 23 | legacyGenerateAnimations: 4 24 | bakeSimulation: 0 25 | resampleCurves: 1 26 | optimizeGameObjects: 0 27 | motionNodeName: 28 | rigImportErrors: 29 | rigImportWarnings: 30 | animationImportErrors: 31 | animationImportWarnings: 32 | animationRetargetingWarnings: 33 | animationDoRetargetingWarnings: 0 34 | importAnimatedCustomProperties: 0 35 | animationCompression: 1 36 | animationRotationError: 0.5 37 | animationPositionError: 0.5 38 | animationScaleError: 0.5 39 | animationWrapMode: 0 40 | extraExposedTransformPaths: [] 41 | extraUserProperties: [] 42 | clipAnimations: [] 43 | isReadable: 1 44 | meshes: 45 | lODScreenPercentages: [] 46 | globalScale: 1 47 | meshCompression: 0 48 | addColliders: 0 49 | importVisibility: 1 50 | importBlendShapes: 1 51 | importCameras: 1 52 | importLights: 1 53 | swapUVChannels: 0 54 | generateSecondaryUV: 0 55 | useFileUnits: 1 56 | optimizeMeshForGPU: 1 57 | keepQuads: 0 58 | weldVertices: 1 59 | preserveHierarchy: 0 60 | indexFormat: 0 61 | secondaryUVAngleDistortion: 8 62 | secondaryUVAreaDistortion: 15.000001 63 | secondaryUVHardAngle: 88 64 | secondaryUVPackMargin: 4 65 | useFileScale: 1 66 | tangentSpace: 67 | normalSmoothAngle: 60 68 | normalImportMode: 0 69 | tangentImportMode: 3 70 | normalCalculationMode: 4 71 | importAnimation: 1 72 | copyAvatar: 0 73 | humanDescription: 74 | serializedVersion: 2 75 | human: [] 76 | skeleton: [] 77 | armTwist: 0.5 78 | foreArmTwist: 0.5 79 | upperLegTwist: 0.5 80 | legTwist: 0.5 81 | armStretch: 0.05 82 | legStretch: 0.05 83 | feetSpacing: 0 84 | rootMotionBoneName: 85 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 86 | hasTranslationDoF: 0 87 | hasExtraRoot: 0 88 | skeletonHasParents: 1 89 | lastHumanDescriptionAvatarSource: {instanceID: 0} 90 | animationType: 0 91 | humanoidOversampling: 1 92 | additionalBone: 0 93 | userData: 94 | assetBundleName: 95 | assetBundleVariant: 96 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07b523ee36aa1954da7ec541ac6880d3 3 | folderAsset: yes 4 | timeCreated: 1461565039 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/SampleScene.unity -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10ef25d1c7039904ba0d35d250b2b9a6 3 | timeCreated: 1461562777 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/SampleScene/LightingData.asset -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/LightingData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1daf8a537f3fa246bd410f5396529dd 3 | timeCreated: 1514881520 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 25800000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_dir.png -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_dir.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c98998132947e1149977110195ac25f9 3 | timeCreated: 1514881517 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 0 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: 1 35 | aniso: 3 36 | mipBias: 0 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 0 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | spriteSheet: 70 | serializedVersion: 2 71 | sprites: [] 72 | outline: [] 73 | physicsShape: [] 74 | spritePackingTag: 75 | userData: 76 | assetBundleName: 77 | assetBundleVariant: 78 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_light.exr -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_light.exr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 280cc178306a07d489a7925597ffb65f 3 | timeCreated: 1514881517 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: 1 35 | aniso: 3 36 | mipBias: 0 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 0 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 6 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 0 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | spriteSheet: 70 | serializedVersion: 2 71 | sprites: [] 72 | outline: [] 73 | physicsShape: [] 74 | spritePackingTag: 75 | userData: 76 | assetBundleName: 77 | assetBundleVariant: 78 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_shadowmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_shadowmask.png -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/Lightmap-0_comp_shadowmask.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4b79d731c4134740b9069ab297312e7 3 | timeCreated: 1514881517 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 0 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: 1 35 | aniso: 3 36 | mipBias: 0 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 0 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | spriteSheet: 70 | serializedVersion: 2 71 | sprites: [] 72 | outline: [] 73 | physicsShape: [] 74 | spritePackingTag: 75 | userData: 76 | assetBundleName: 77 | assetBundleVariant: 78 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/SampleScene/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eace2235d7b523548be480efce452994 3 | timeCreated: 1514881520 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: 7 | 8900000: generatedCubemap 8 | externalObjects: {} 9 | serializedVersion: 4 10 | mipmaps: 11 | mipMapMode: 0 12 | enableMipMap: 1 13 | sRGBTexture: 1 14 | linearTexture: 0 15 | fadeOut: 0 16 | borderMipMap: 0 17 | mipMapsPreserveCoverage: 0 18 | alphaTestReferenceValue: 0.5 19 | mipMapFadeDistanceStart: 1 20 | mipMapFadeDistanceEnd: 3 21 | bumpmap: 22 | convertToNormalMap: 0 23 | externalNormalMap: 0 24 | heightScale: 0.25 25 | normalMapFilter: 0 26 | isReadable: 0 27 | grayScaleToAlpha: 0 28 | generateCubemap: 6 29 | cubemapConvolution: 1 30 | seamlessCubemap: 1 31 | textureFormat: 1 32 | maxTextureSize: 2048 33 | textureSettings: 34 | serializedVersion: 2 35 | filterMode: 2 36 | aniso: 0 37 | mipBias: 0 38 | wrapU: 1 39 | wrapV: 1 40 | wrapW: 1 41 | nPOTScale: 1 42 | lightmap: 0 43 | compressionQuality: 50 44 | spriteMode: 0 45 | spriteExtrude: 1 46 | spriteMeshType: 1 47 | alignment: 0 48 | spritePivot: {x: 0.5, y: 0.5} 49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 50 | spritePixelsToUnits: 100 51 | alphaUsage: 1 52 | alphaIsTransparency: 0 53 | spriteTessellationDetail: -1 54 | textureType: 0 55 | textureShape: 2 56 | maxTextureSizeSet: 0 57 | compressionQualitySet: 0 58 | textureFormatSet: 0 59 | platformSettings: 60 | - buildTarget: DefaultTexturePlatform 61 | maxTextureSize: 2048 62 | resizeAlgorithm: 0 63 | textureFormat: -1 64 | textureCompression: 0 65 | compressionQuality: 100 66 | crunchedCompression: 0 67 | allowsAlphaSplitting: 0 68 | overridden: 0 69 | androidETC2FallbackOverride: 0 70 | spriteSheet: 71 | serializedVersion: 2 72 | sprites: [] 73 | outline: [] 74 | physicsShape: [] 75 | spritePackingTag: 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/SampleScene_LP.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0.2640502 4 | -0.05250577 5 | 0.01568671 6 | -0.1403643 7 | 0.05083955 8 | -0.004125709 9 | -0.01938869 10 | 0.0190119 11 | 0.0869765 12 | 0.7226117 13 | -0.4910614 14 | -0.05653819 15 | 0.2931098 16 | -0.3426987 17 | 0.04471602 18 | -0.00497184 19 | 0.02929595 20 | 0.0316325 21 | 0.3400081 22 | 0.1110967 23 | -0.01893678 24 | -0.04467229 25 | 0.07197066 26 | 0.03737156 27 | 0.00991453 28 | 0.07480326 29 | 0.05800537 30 | 31 | 32 | 0.2004089 33 | 0.01212351 34 | 0.07809525 35 | -0.1211172 36 | 0.0539908 37 | -0.0351996 38 | -0.005974755 39 | -0.05689073 40 | 0.07399874 41 | 0.3671868 42 | -0.08874401 43 | 0.1633112 44 | -0.001594492 45 | -0.01274861 46 | -0.1001866 47 | 0.01367025 48 | 0.0505636 49 | 0.04620926 50 | 0.316754 51 | 0.1189362 52 | 0.02149606 53 | -0.009538883 54 | 0.05470214 55 | 0.01333534 56 | 0.004923206 57 | 0.02719514 58 | 0.05189584 59 | 60 | 61 | 0.3392298 62 | -0.03486623 63 | 0.01286131 64 | -0.0243344 65 | -0.01222646 66 | -0.006822327 67 | -0.002795828 68 | -0.01526826 69 | 0.1170714 70 | 2.073736 71 | -0.3499968 72 | -0.2230406 73 | 2.034021 74 | -0.2958345 75 | -0.05554555 76 | 0.2133588 77 | -0.1573347 78 | 0.5252193 79 | 0.2318092 80 | 0.06255028 81 | -0.003503795 82 | -0.1502783 83 | -0.008428846 84 | 0.02387549 85 | 0.0103448 86 | 0.03832449 87 | 0.01429116 88 | 89 | 90 | 0.1397845 91 | -0.001076335 92 | 0.1132847 93 | -0.1515782 94 | 0.008864422 95 | 0.002561148 96 | -0.008888002 97 | -0.08232272 98 | 0.06021592 99 | 0.3616827 100 | -0.04153318 101 | 0.2286972 102 | 0.005993357 103 | 0.00447223 104 | -0.0189384 105 | 0.02739412 106 | 0.06157981 107 | 0.04291232 108 | 0.190824 109 | 0.03665903 110 | 0.04961513 111 | -0.0966541 112 | 0.0009661485 113 | 0.03474577 114 | 0.001483828 115 | -0.0320785 116 | 0.00463908 117 | 118 | 119 | 0.4925836 120 | -0.2365702 121 | 0.003926724 122 | -0.4960927 123 | 0.3091222 124 | 0.006288774 125 | -0.05623626 126 | 0.02464763 127 | 0.1755752 128 | 0.5634101 129 | -0.2029021 130 | -0.08516277 131 | -0.1144245 132 | 0.1129806 133 | 0.07146804 134 | -0.03916114 135 | 0.008389777 136 | 0.1794757 137 | 0.42427 138 | 0.02685511 139 | -0.098864 140 | 0.0123846 141 | 0.0419397 142 | 0.09383883 143 | 0.01859913 144 | 0.01704574 145 | 0.05193557 146 | 147 | 148 | 0.34848 149 | -0.1217938 150 | 0.2292892 151 | -0.276288 152 | 0.1838872 153 | -0.133211 154 | -0.006181814 155 | -0.2199063 156 | 0.09560956 157 | 0.436126 158 | -0.1221828 159 | 0.1739137 160 | -0.04112838 161 | 0.06698621 162 | -0.08203992 163 | -0.0157232 164 | -0.04844442 165 | 0.1086071 166 | 0.3950345 167 | 0.02832907 168 | 0.005712644 169 | 0.0183352 170 | 0.03661225 171 | 0.0288886 172 | -0.001349768 173 | 0.01129521 174 | 0.04360907 175 | 176 | 177 | 0.5970406 178 | -0.1113792 179 | -0.01315222 180 | -0.7024543 181 | 0.08801768 182 | 0.02134963 183 | -0.07025108 184 | 0.06677333 185 | 0.2885792 186 | 0.6385761 187 | -0.07146114 188 | -0.1146961 189 | -0.2158136 190 | 0.05254324 191 | 0.03855865 192 | -0.03934062 193 | 0.02228102 194 | 0.2627106 195 | 0.4193614 196 | 0.05258531 197 | -0.09944189 198 | 0.00467594 199 | 0.03627962 200 | 0.04803014 201 | 0.02678676 202 | 0.006406632 203 | 0.05277162 204 | 205 | 206 | 0.3587406 207 | -0.0574199 208 | 0.3183344 209 | -0.3226277 210 | 0.032555 211 | -0.03363201 212 | -0.01182834 213 | -0.2830078 214 | 0.1348443 215 | 0.5447187 216 | -0.05521204 217 | 0.2108905 218 | -0.003849952 219 | 0.007517825 220 | -0.0210317 221 | -0.0461768 222 | -0.08332671 223 | 0.1874423 224 | 0.480279 225 | 0.0146923 226 | 0.01873856 227 | 0.08248111 228 | 0.01438617 229 | 0.03286914 230 | -0.034598 231 | -0.001629199 232 | 0.08734777 233 | 234 | 235 | 0.227461 236 | -0.02262804 237 | -0.03817989 238 | -0.0947409 239 | 0.04253572 240 | 0.01533663 241 | -0.003024024 242 | 0.09901059 243 | 0.06000654 244 | 0.3141539 245 | -0.01550015 246 | -0.1215532 247 | -0.03321599 248 | 0.02249482 249 | 0.08410194 250 | 0.0224799 251 | 0.0561807 252 | 0.04858207 253 | 0.3219619 254 | 0.129015 255 | -0.01172056 256 | 0.006533512 257 | 0.03866071 258 | 0.02701529 259 | 0.01383297 260 | 0.07302046 261 | 0.04836502 262 | 263 | 264 | 0.2259053 265 | -0.006145325 266 | -0.03343889 267 | -0.1069105 268 | 0.0121933 269 | 0.002782537 270 | -0.005144268 271 | 0.1121011 272 | 0.06378169 273 | 0.3122376 274 | 0.02581981 275 | -0.1282848 276 | -0.03403911 277 | 0.01218517 278 | 0.03543539 279 | 0.02808339 280 | 0.05272452 281 | 0.05653582 282 | 0.2973889 283 | 0.1315265 284 | 0.02305419 285 | 0.0007325766 286 | 0.02344281 287 | 0.02436704 288 | 0.008434939 289 | 0.08494841 290 | 0.04156541 291 | 292 | 293 | 0.3013308 294 | -0.08599368 295 | -0.1596102 296 | -0.1463088 297 | 0.09253677 298 | 0.09385666 299 | 0.01789655 300 | 0.1982167 301 | 0.05584051 302 | 0.3632484 303 | -0.03764071 304 | -0.1794799 305 | 0.006477886 306 | 0.02968409 307 | 0.1027408 308 | 0.02273216 309 | 0.0558611 310 | 0.07515367 311 | 0.3397835 312 | 0.113021 313 | -0.0458068 314 | 0.02777202 315 | 0.03011729 316 | 0.04935478 317 | 0.02229184 318 | 0.04849953 319 | 0.04265954 320 | 321 | 322 | 0.316236 323 | -0.02936485 324 | -0.1837426 325 | -0.1822988 326 | 0.02753397 327 | 0.03080349 328 | 0.02331759 329 | 0.2384599 330 | 0.07683259 331 | 0.365157 332 | 0.02224634 333 | -0.1865344 334 | -0.01180905 335 | 0.02094387 336 | 0.03603917 337 | 0.02662732 338 | 0.0702926 339 | 0.08996392 340 | 0.3200893 341 | 0.1249842 342 | -0.02072319 343 | 0.02218605 344 | 0.02828388 345 | 0.03006405 346 | 0.02126454 347 | 0.04312123 348 | 0.03597913 349 | 350 | 351 | 0.233689 352 | -0.02575065 353 | -0.02777175 354 | -0.1259851 355 | 0.05951179 356 | 0.01379736 357 | -0.008318503 358 | 0.08541139 359 | 0.06946526 360 | 0.3779768 361 | -0.0881789 362 | -0.1693188 363 | -0.01332301 364 | -0.01099909 365 | 0.1305335 366 | 0.01842193 367 | 0.01128736 368 | 0.04629073 369 | 0.3268931 370 | 0.1251183 371 | -0.0132512 372 | -0.01746256 373 | 0.05356106 374 | 0.02882174 375 | 0.0138487 376 | 0.0781318 377 | 0.05078682 378 | 379 | 380 | 0.2229753 381 | -0.01011135 382 | -0.02038597 383 | -0.1526764 384 | 0.01456076 385 | 0.004145073 386 | -0.007430494 387 | 0.09695982 388 | 0.06858216 389 | 0.4090213 390 | -0.02510057 391 | -0.2295126 392 | 0.007156407 393 | -0.001409918 394 | 0.05329614 395 | 0.03738867 396 | -0.03155838 397 | 0.0612503 398 | 0.2736371 399 | 0.1023023 400 | 0.03136124 401 | -0.0765621 402 | 0.006781818 403 | 0.03448588 404 | 0.01568688 405 | 0.1074838 406 | 0.02467639 407 | 408 | 409 | 0.3782555 410 | -0.1475871 411 | -0.1892601 412 | -0.2691199 413 | 0.1720641 414 | 0.112272 415 | -0.001671444 416 | 0.2571077 417 | 0.09408974 418 | 0.435355 419 | -0.09572449 420 | -0.2025854 421 | -0.0357254 422 | 0.05975901 423 | 0.1208727 424 | 0.004425799 425 | 0.09351785 426 | 0.1114194 427 | 0.3648566 428 | 0.08949272 429 | -0.06109607 430 | 0.01813157 431 | 0.03531706 432 | 0.06176024 433 | 0.02156652 434 | 0.0543004 435 | 0.04871136 436 | 437 | 438 | 0.4114832 439 | -0.06360319 440 | -0.23032 441 | -0.3308628 442 | 0.03811397 443 | 0.0446426 444 | 0.002527791 445 | 0.3195413 446 | 0.1315306 447 | 0.4528679 448 | -0.01795475 449 | -0.2290204 450 | -0.06122567 451 | 0.02416278 452 | 0.05171749 453 | 0.008960158 454 | 0.1148486 455 | 0.1361131 456 | 0.3469529 457 | 0.09145527 458 | -0.04423508 459 | 0.0181363 460 | 0.02844293 461 | 0.0423841 462 | 0.0227949 463 | 0.0508137 464 | 0.03543643 465 | 466 | 467 | 0.2329497 468 | -0.02053239 469 | 0.06175221 470 | -0.1353622 471 | 0.05259317 472 | -0.0276481 473 | -0.01456059 474 | -0.01431612 475 | 0.08215223 476 | 0.5561635 477 | -0.2996885 478 | 0.1937537 479 | 0.1257437 480 | -0.16894 481 | -0.120221 482 | 0.008366839 483 | 0.1339074 484 | 0.03540312 485 | 0.3374362 486 | 0.1084202 487 | -0.005736186 488 | -0.0431128 489 | 0.07411368 490 | 0.03403662 491 | 0.00611954 492 | 0.05691078 493 | 0.0576272 494 | 495 | 496 | 0.2227501 497 | -0.009179914 498 | 0.1068248 499 | -0.1337339 500 | 0.002194586 501 | -0.006115295 502 | -0.01156183 503 | -0.01548254 504 | 0.0835126 505 | 0.9449871 506 | -0.1479552 507 | 0.5514281 508 | 0.6090487 509 | -0.07824208 510 | -0.05280633 511 | 0.09153274 512 | 0.3773212 513 | 0.1861016 514 | 0.2252636 515 | 0.05472258 516 | 0.00597843 517 | -0.1510901 518 | -0.003720065 519 | 0.02533528 520 | 0.004283117 521 | 0.01535085 522 | 0.01269575 523 | 524 | 525 | 0.4807607 526 | -0.2432616 527 | 0.1523815 528 | -0.4696701 529 | 0.3208937 530 | -0.0818423 531 | -0.05029942 532 | -0.1595437 533 | 0.1585438 534 | 0.5768892 535 | -0.2375053 536 | 0.02851815 537 | -0.1093913 538 | 0.1253684 539 | 0.02189923 540 | -0.04335451 541 | -0.0558248 542 | 0.1692574 543 | 0.4636491 544 | -0.02136057 545 | -0.09467454 546 | 0.02317728 547 | 0.03738324 548 | 0.1071713 549 | 0.004696302 550 | -0.003588189 551 | 0.06091683 552 | 553 | 554 | 0.5359889 555 | -0.09562392 556 | 0.1773708 557 | -0.5629337 558 | 0.05786534 559 | -0.004372616 560 | -0.0563797 561 | -0.2078428 562 | 0.2453295 563 | 0.7154901 564 | -0.09412217 565 | -0.06980713 566 | -0.08780305 567 | 0.01677501 568 | 0.02881744 569 | -0.03819706 570 | -0.1068903 571 | 0.2885213 572 | 0.5507322 573 | 0.01731376 574 | -0.2090325 575 | 0.08231559 576 | 0.02458443 577 | 0.06308983 578 | 0.01741705 579 | -0.04462999 580 | 0.1164376 581 | 582 | 583 | 0.2407038 584 | 0.06356045 585 | 0.02414774 586 | -0.1214737 587 | 0.007920661 588 | 0.006622629 589 | -0.01645733 590 | 0.003277048 591 | 0.07342767 592 | 1.071662 593 | 0.5778394 594 | 0.007712425 595 | 0.6307796 596 | 0.5955043 597 | -0.03425583 598 | 0.03222438 599 | 0.05764328 600 | 0.04074735 601 | 0.202765 602 | 0.0517558 603 | 0.01600502 604 | -0.1182459 605 | -0.05453639 606 | 0.005113611 607 | 0.0114685 608 | 0.01980861 609 | 0.01418068 610 | 611 | 612 | 0.1396491 613 | 0.007917778 614 | 0.09065065 615 | -0.1356362 616 | -0.03561019 617 | 0.03330995 618 | -0.01106417 619 | -0.07024641 620 | 0.05337451 621 | 0.4289045 622 | -0.05578076 623 | 0.1984086 624 | 0.00949415 625 | 0.02863784 626 | 0.08588455 627 | 0.01551282 628 | 0.04278445 629 | 0.01656548 630 | 0.165907 631 | 0.02795894 632 | 0.04266693 633 | -0.07124738 634 | -0.03437509 635 | 0.0232607 636 | 0.003802632 637 | -0.02906241 638 | 0.005913271 639 | 640 | 641 | 0.5658581 642 | 0.107804 643 | -0.00840573 644 | -0.5660108 645 | -0.296746 646 | -0.002637537 647 | -0.05802077 648 | 0.0552755 649 | 0.2174783 650 | 0.6015865 651 | 0.1257127 652 | -0.0793777 653 | -0.1503881 654 | -0.1036631 655 | -0.04018715 656 | -0.03390856 657 | 0.0166279 658 | 0.2053345 659 | 0.3892972 660 | 0.09246602 661 | -0.04746492 662 | 0.01693393 663 | 0.01360723 664 | -0.02484596 665 | 0.02532445 666 | 0.00903142 667 | 0.03330422 668 | 669 | 670 | 0.3746846 671 | -0.00892508 672 | 0.2697849 673 | -0.2867585 674 | -0.1288426 675 | 0.09734558 676 | -0.008668813 677 | -0.2433097 678 | 0.0977515 679 | 0.4643693 680 | 0.03217738 681 | 0.1989243 682 | -0.05020526 683 | -0.02705411 684 | 0.06317303 685 | -0.0164668 686 | -0.06807446 687 | 0.1031726 688 | 0.360014 689 | 0.05882852 690 | 0.0410078 691 | 0.01990298 692 | 0.01954486 693 | 0.01800886 694 | 0.0008382128 695 | 0.004459715 696 | 0.01534004 697 | 698 | 699 | 0.2162841 700 | 0.007636506 701 | -0.02195359 702 | -0.08624496 703 | -0.01945566 704 | -0.006211745 705 | -0.006001727 706 | 0.0911371 707 | 0.0550107 708 | 0.283111 709 | 0.07943162 710 | -0.08266451 711 | -0.02015271 712 | 0.007787128 713 | -0.03588824 714 | 0.01922816 715 | 0.0427813 716 | 0.04849387 717 | 0.2797269 718 | 0.1296366 719 | 0.04848782 720 | 0.01608172 721 | 0.01187231 722 | 0.02518951 723 | 0.004644789 724 | 0.0674926 725 | 0.03837337 726 | 727 | 728 | 0.2845598 729 | 0.04643942 730 | -0.1361162 731 | -0.1527722 732 | -0.06020132 733 | -0.05718804 734 | 0.01602976 735 | 0.1982898 736 | 0.06242324 737 | 0.32469 738 | 0.09384422 739 | -0.129204 740 | -0.006688126 741 | -0.00222065 742 | -0.04865069 743 | 0.01903153 744 | 0.05820932 745 | 0.0730421 746 | 0.2890103 747 | 0.1371047 748 | 0.02324744 749 | 0.02471714 750 | 0.02424456 751 | 0.008808757 752 | 0.01542927 753 | 0.03886338 754 | 0.02879392 755 | 756 | 757 | 0.1939923 758 | 0.02063787 759 | -0.007545437 760 | -0.1218882 761 | -0.02528332 762 | -0.0002157404 763 | -0.00729401 764 | 0.07861828 765 | 0.06382816 766 | 0.4459967 767 | -0.02975639 768 | -0.1541814 769 | 0.01053081 770 | 0.03499456 771 | -0.07246127 772 | 0.02142697 773 | -0.007110999 774 | 0.03355603 775 | 0.2407588 776 | 0.08639996 777 | 0.06461877 778 | -0.04250976 779 | -0.01447687 780 | 0.04085082 781 | 0.0132153 782 | 0.08709437 783 | 0.02874652 784 | 785 | 786 | 0.3996888 787 | 0.01694877 788 | -0.1558959 789 | -0.2623115 790 | -0.132939 791 | -0.06238892 792 | -0.007351687 793 | 0.2418736 794 | 0.1011665 795 | 0.4439859 796 | 0.04229315 797 | -0.1512259 798 | -0.02758613 799 | -0.03376457 800 | -0.04973698 801 | -0.0007338568 802 | 0.08095419 803 | 0.1097855 804 | 0.3384385 805 | 0.07058784 806 | 0.01274144 807 | 0.02920218 808 | 0.01697813 809 | 0.01863766 810 | 0.01718634 811 | 0.04474336 812 | 0.02399 813 | 814 | 815 | 0.1868435 816 | 0.04143715 817 | 0.07000984 818 | -0.135535 819 | -0.01992781 820 | 0.03054757 821 | -0.01538143 822 | -0.02421343 823 | 0.06649449 824 | 0.7464284 825 | 0.2182717 826 | 0.2920972 827 | 0.2861446 828 | 0.2773535 829 | 0.14182 830 | 0.02807192 831 | 0.1777762 832 | 0.03818765 833 | 0.1896177 834 | 0.04532997 835 | 0.02132094 836 | -0.1117525 837 | -0.05428043 838 | 0.006183009 839 | 0.005612832 840 | 0.002522474 841 | 0.01212086 842 | 843 | 844 | 0.538979 845 | 0.07328467 846 | 0.1688015 847 | -0.5085012 848 | -0.2381482 849 | 0.07369804 850 | -0.04598662 851 | -0.1926881 852 | 0.199693 853 | 0.6489353 854 | 0.1281832 855 | 0.02273786 856 | -0.1144764 857 | -0.06652703 858 | -0.02691979 859 | -0.0361722 860 | -0.08069673 861 | 0.2027087 862 | 0.4611924 863 | 0.1205167 864 | -0.08098175 865 | 0.0387098 866 | 0.02696298 867 | -0.07091196 868 | 0.01108199 869 | -0.01973001 870 | 0.04828584 871 | 872 | 873 | 0.2058991 874 | -0.001426653 875 | 0.01357346 876 | -0.1345971 877 | 0.06477734 878 | -0.002495676 879 | -0.01375237 880 | 0.01887035 881 | 0.07730079 882 | 0.3618697 883 | -0.1189088 884 | -0.01011113 885 | -0.09620874 886 | 0.06560275 887 | 0.01505242 888 | 0.001913988 889 | 0.05183705 890 | 0.02279879 891 | 0.3117063 892 | 0.1315139 893 | -0.003599274 894 | -0.03833856 895 | 0.07075316 896 | 0.02654745 897 | 0.006995489 898 | 0.06917923 899 | 0.06485578 900 | 901 | 902 | 0.1810778 903 | 0.0273129 904 | 0.05113772 905 | -0.1045134 906 | 0.04834453 907 | -0.01842136 908 | -0.006423547 909 | -0.04351763 910 | 0.07111537 911 | 0.2780239 912 | -0.00581705 913 | 0.04973391 914 | -0.07224157 915 | 0.05966138 916 | -0.01952649 917 | 0.00062047 918 | -0.008398857 919 | 0.05081993 920 | 0.3016571 921 | 0.1388449 922 | 0.02212179 923 | -0.008540869 924 | 0.05479428 925 | 0.01410576 926 | 0.007054055 927 | 0.03070501 928 | 0.05648118 929 | 930 | 931 | 1.40761 932 | -0.1268267 933 | 0.1148276 934 | 0.06003621 935 | -0.01397907 936 | -0.08119193 937 | 0.4246731 938 | 0.03325592 939 | -0.2427956 940 | 14.99891 941 | -1.476441 942 | 1.098099 943 | 2.612895 944 | -0.1994231 945 | -0.9188901 946 | 5.153698 947 | 0.5144861 948 | -3.5405 949 | 0.1652384 950 | 0.04012196 951 | -0.002546835 952 | -0.1696946 953 | -0.02970496 954 | 0.01032814 955 | 0.002042323 956 | 0.01670176 957 | 0.02588482 958 | 959 | 960 | 0.1007084 961 | -0.001292156 962 | 0.07138448 963 | -0.1411377 964 | 0.001289002 965 | 0.001030061 966 | -0.01089063 967 | -0.0790135 968 | 0.05253143 969 | 0.2176856 970 | -0.04074058 971 | 0.06269716 972 | -0.1339469 973 | 0.01966105 974 | -0.02440484 975 | 0.003397364 976 | -0.05253922 977 | 0.01991843 978 | 0.1209777 979 | 0.02205996 980 | 0.03503203 981 | -0.103076 982 | -0.01694306 983 | 0.02109981 984 | 0.003760454 985 | -0.04756464 986 | 0.009325308 987 | 988 | 989 | 0.2164513 990 | -0.01688789 991 | -0.02359167 992 | -0.07628629 993 | 0.03313988 994 | 0.008833847 995 | -0.00450888 996 | 0.07882636 997 | 0.05655746 998 | 0.2685508 999 | 0.01742163 1000 | -0.04799967 1001 | -0.05012135 1002 | 0.03897441 1003 | 0.03837744 1004 | 0.007624165 1005 | 0.08369235 1006 | 0.04999469 1007 | 0.3190083 1008 | 0.1316002 1009 | -0.006013558 1010 | 0.01038088 1011 | 0.03530549 1012 | 0.02304189 1013 | 0.01195788 1014 | 0.06802399 1015 | 0.05000537 1016 | 1017 | 1018 | 0.2159697 1019 | -0.006606736 1020 | -0.01740864 1021 | -0.08368815 1022 | 0.01050982 1023 | 0.00180642 1024 | -0.007050767 1025 | 0.08302743 1026 | 0.06038081 1027 | 0.2653563 1028 | 0.03142262 1029 | -0.04074763 1030 | -0.05445499 1031 | 0.02170904 1032 | 0.02581246 1033 | 0.00698801 1034 | 0.08457269 1035 | 0.05456934 1036 | 0.3015671 1037 | 0.1321721 1038 | 0.02854018 1039 | 0.01327539 1040 | 0.02621923 1041 | 0.0220448 1042 | 0.004713154 1043 | 0.05930322 1044 | 0.04979669 1045 | 1046 | 1047 | 0.209649 1048 | -0.0002832896 1049 | -0.01188954 1050 | -0.1187031 1051 | 0.05961723 1052 | 0.003826777 1053 | -0.007082819 1054 | 0.07205023 1055 | 0.06833081 1056 | 0.2881404 1057 | -0.001320616 1058 | -0.05323794 1059 | -0.07977328 1060 | 0.05947278 1061 | 0.04897226 1062 | 0.004656672 1063 | 0.08317386 1064 | 0.05386725 1065 | 0.3198607 1066 | 0.1362201 1067 | -0.003120209 1068 | -0.01685975 1069 | 0.05687935 1070 | 0.02348249 1071 | 0.01213067 1072 | 0.07445711 1073 | 0.05698003 1074 | 1075 | 1076 | 0.161094 1077 | -0.005936968 1078 | -0.001233111 1079 | -0.165461 1080 | 0.005988095 1081 | -0.002799361 1082 | -0.006475005 1083 | 0.05917552 1084 | 0.05354407 1085 | 0.2397019 1086 | -0.02195905 1087 | -0.06344522 1088 | -0.1512081 1089 | 0.01172464 1090 | 0.03610209 1091 | 0.01018197 1092 | 0.07160518 1093 | 0.03022301 1094 | 0.1891242 1095 | 0.06818579 1096 | 0.02251776 1097 | -0.1500986 1098 | -0.03736958 1099 | 0.0200303 1100 | 0.01647468 1101 | 0.05510718 1102 | 0.02094237 1103 | 1104 | 1105 | 0.1997855 1106 | 0.01254352 1107 | 0.03884566 1108 | -0.1266971 1109 | 0.06098952 1110 | -0.01286255 1111 | -0.01282532 1112 | -0.01849453 1113 | 0.07779463 1114 | 0.3285923 1115 | -0.06204269 1116 | 0.04847885 1117 | -0.09370835 1118 | 0.07053613 1119 | -0.02163782 1120 | -0.00145216 1121 | 0.02211268 1122 | 0.04148566 1123 | 0.3205187 1124 | 0.1316399 1125 | 0.00864704 1126 | -0.03168621 1127 | 0.07002595 1128 | 0.02121716 1129 | 0.004479199 1130 | 0.05503989 1131 | 0.06417582 1132 | 1133 | 1134 | 0.1451215 1135 | -0.00608327 1136 | 0.0581167 1137 | -0.1757856 1138 | 0.00405616 1139 | -0.001876407 1140 | -0.01299461 1141 | -0.04757513 1142 | 0.05995946 1143 | 0.4020946 1144 | -0.09525147 1145 | 0.1697532 1146 | -0.1461415 1147 | 0.02730325 1148 | -0.02903569 1149 | 0.05104003 1150 | -0.00936394 1151 | -0.0100225 1152 | 0.156453 1153 | 0.03317579 1154 | 0.01928049 1155 | -0.1563152 1156 | -0.02479668 1157 | 0.01722624 1158 | -0.001427027 1159 | -0.005237704 1160 | 0.02241823 1161 | 1162 | 1163 | 0.1615061 1164 | 0.01617532 1165 | 0.01742328 1166 | -0.1518245 1167 | -0.03654763 1168 | 0.007953035 1169 | -0.01351191 1170 | -0.005874224 1171 | 0.04929103 1172 | 0.5164164 1173 | 0.1059615 1174 | 0.02466781 1175 | -0.1326 1176 | 0.008662893 1177 | 0.0159873 1178 | 0.03844514 1179 | 0.01818055 1180 | -0.05588519 1181 | 0.1501608 1182 | 0.0247316 1183 | 0.01340408 1184 | -0.117491 1185 | -0.05893906 1186 | 0.005473444 1187 | 0.002839315 1188 | 0.00149662 1189 | 0.0137803 1190 | 1191 | 1192 | 0.1114811 1193 | -0.007626891 1194 | 0.05894106 1195 | -0.1237495 1196 | -0.02924161 1197 | 0.01896589 1198 | -0.01224459 1199 | -0.06608226 1200 | 0.04480788 1201 | 0.3105493 1202 | -0.1342702 1203 | 0.05736888 1204 | -0.1261309 1205 | -0.01134567 1206 | 0.00632665 1207 | -0.003023982 1208 | -0.04709332 1209 | 0.005571285 1210 | 0.1278046 1211 | 0.003752168 1212 | 0.03337009 1213 | -0.07252813 1214 | -0.0337548 1215 | 0.01946159 1216 | 0.004316334 1217 | -0.03740782 1218 | 0.002061628 1219 | 1220 | 1221 | 0.2085082 1222 | 0.002492368 1223 | -0.008859171 1224 | -0.0678063 1225 | -0.011396 1226 | -0.001622856 1227 | -0.007160543 1228 | 0.06607704 1229 | 0.0531053 1230 | 0.2453281 1231 | 0.05541351 1232 | -0.0134064 1233 | -0.03345525 1234 | 0.0004400344 1235 | -0.002554699 1236 | 0.003804672 1237 | 0.06216688 1238 | 0.05004754 1239 | 0.2901684 1240 | 0.1329637 1241 | 0.04248647 1242 | 0.02945863 1243 | 0.02174458 1244 | 0.02033414 1245 | 0.003707486 1246 | 0.04243404 1247 | 0.04526125 1248 | 1249 | 1250 | 0.1517572 1251 | 0.004333517 1252 | -0.0004665398 1253 | -0.133415 1254 | -0.03605855 1255 | 0.002328015 1256 | -0.006150816 1257 | 0.0499422 1258 | 0.04576151 1259 | 0.3165916 1260 | -0.1121213 1261 | -0.03887215 1262 | -0.1345568 1263 | -0.01831809 1264 | -0.00160033 1265 | 0.0039649 1266 | 0.05306562 1267 | 0.01295447 1268 | 0.176561 1269 | 0.04730113 1270 | 0.04454764 1271 | -0.1057907 1272 | -0.05400842 1273 | 0.02658438 1274 | 0.01427744 1275 | 0.02849459 1276 | 0.01033088 1277 | 1278 | 1279 | 0.1328884 1280 | 0.006230109 1281 | 0.0406752 1282 | -0.1485362 1283 | -0.03672177 1284 | 0.01599146 1285 | -0.01493443 1286 | -0.04129908 1287 | 0.05177073 1288 | 0.3819608 1289 | -0.07297993 1290 | 0.06941998 1291 | -0.1513545 1292 | -0.008847511 1293 | 0.03312178 1294 | 0.007299478 1295 | -0.01352505 1296 | -0.00482395 1297 | 0.1448665 1298 | 0.01944932 1299 | 0.02734105 1300 | -0.1076354 1301 | -0.05276693 1302 | 0.01229647 1303 | 0.0003999016 1304 | -0.01344263 1305 | 0.01053985 1306 | 1307 | 1308 | 0.4323265 1309 | -0.375371 1310 | -0.009017775 1311 | -0.02835415 1312 | 0.04877022 1313 | 0.0253779 1314 | 0.01564034 1315 | 0.02276386 1316 | -0.09074491 1317 | 0.4245585 1318 | -0.2067662 1319 | -0.02655253 1320 | 0.09686922 1321 | -0.009760272 1322 | 0.03681568 1323 | 0.005532892 1324 | 0.004842411 1325 | -0.002886442 1326 | 0.3472284 1327 | 0.07731017 1328 | -0.01676301 1329 | 0.09429786 1330 | -0.01819826 1331 | 0.03754123 1332 | 0.01187681 1333 | 0.01270533 1334 | 0.04276145 1335 | 1336 | 1337 | 0.2578419 1338 | -0.1182285 1339 | 0.1035336 1340 | -0.02034238 1341 | 0.03772301 1342 | -0.09033597 1343 | 0.004633016 1344 | 0.02160553 1345 | -0.001902651 1346 | 0.3260278 1347 | -0.06097192 1348 | 0.06535559 1349 | 0.07113081 1350 | -0.005772388 1351 | -0.03754418 1352 | 0.0006071564 1353 | 0.05469048 1354 | 0.0416247 1355 | 0.3462583 1356 | 0.09359346 1357 | -0.003031163 1358 | 0.06579555 1359 | -0.01310295 1360 | 0.03237319 1361 | 0.01016149 1362 | 0.04299395 1363 | 0.04702801 1364 | 1365 | 1366 | 30.04036 1367 | -5.323981 1368 | -5.808441 1369 | -7.023004 1370 | 0.9872902 1371 | 3.130026 1372 | 9.696885 1373 | 1.083914 1374 | -7.553805 1375 | 18.2138 1376 | -3.199515 1377 | -3.50872 1378 | -4.069067 1379 | 0.6029316 1380 | 1.899805 1381 | 5.834435 1382 | 0.6410546 1383 | -4.508034 1384 | 3.332713 1385 | -0.5087788 1386 | -0.5927587 1387 | -0.5285005 1388 | 0.1522448 1389 | 0.3597377 1390 | 1.019136 1391 | 0.1209818 1392 | -0.7698435 1393 | 1394 | 1395 | 0.3310609 1396 | -0.07730764 1397 | 0.2024267 1398 | -0.09791034 1399 | -0.04020051 1400 | -0.05321844 1401 | 0.004380516 1402 | 0.01754132 1403 | -0.0001666753 1404 | 0.332777 1405 | -0.042455 1406 | 0.1128748 1407 | 0.06956453 1408 | -0.01882178 1409 | -0.02547575 1410 | 0.002361058 1411 | 0.05577102 1412 | 0.02335113 1413 | 0.2271629 1414 | 0.0244361 1415 | 0.007702038 1416 | 0.1639153 1417 | 0.02856633 1418 | 0.02510219 1419 | 0.0122991 1420 | 0.06243533 1421 | 0.000303402 1422 | 1423 | 1424 | 0.206291 1425 | -0.044662 1426 | -0.04254794 1427 | 0.02107324 1428 | -0.002456822 1429 | 0.05087139 1430 | 0.01186872 1431 | 0.009288407 1432 | 0.009972412 1433 | 0.2744308 1434 | 0.008608608 1435 | -0.06015282 1436 | 0.08645707 1437 | -0.01329947 1438 | 0.05088734 1439 | 0.0110943 1440 | -0.03044695 1441 | 0.04430024 1442 | 0.3202611 1443 | 0.126215 1444 | -0.01242216 1445 | 0.05709158 1446 | 0.01366861 1447 | 0.03116284 1448 | 0.01491727 1449 | 0.01311905 1450 | 0.04350195 1451 | 1452 | 1453 | 0.2141891 1454 | -0.03011841 1455 | -0.05775952 1456 | 0.0205465 1457 | -0.004377905 1458 | 0.03325038 1459 | 0.01868109 1460 | 0.007245667 1461 | 0.01464402 1462 | 0.2741714 1463 | 0.02566904 1464 | -0.0557951 1465 | 0.08803386 1466 | 0.001183484 1467 | 0.03222272 1468 | 0.01251221 1469 | -0.03499066 1470 | 0.05041616 1471 | 0.3033704 1472 | 0.124932 1473 | 0.02329875 1474 | 0.0508523 1475 | 0.01877111 1476 | 0.03024229 1477 | 0.00904944 1478 | 0.01265883 1479 | 0.04431919 1480 | 1481 | 1482 | 0.2608876 1483 | -0.1195749 1484 | -0.067493 1485 | -0.007703089 1486 | 0.02497693 1487 | 0.07780719 1488 | 0.00669385 1489 | 0.01264253 1490 | -0.004615019 1491 | 0.3101328 1492 | -0.03649944 1493 | -0.07270166 1494 | 0.08714131 1495 | -0.01012253 1496 | 0.06843831 1497 | 0.005748635 1498 | -0.02878355 1499 | 0.04043781 1500 | 0.319928 1501 | 0.1273889 1502 | -0.01584805 1503 | 0.0743205 1504 | -0.004923389 1505 | 0.0363165 1506 | 0.01542124 1507 | 0.002176818 1508 | 0.04341002 1509 | 1510 | 1511 | 0.3367377 1512 | -0.07411069 1513 | -0.1157175 1514 | -0.05144277 1515 | -0.03378505 1516 | 0.05469226 1517 | 0.01100381 1518 | 0.01572295 1519 | 0.002374103 1520 | 0.318226 1521 | -0.02294344 1522 | -0.08301473 1523 | 0.1084692 1524 | -0.003949909 1525 | 0.05279437 1526 | 0.008992341 1527 | -0.03553719 1528 | 0.03633334 1529 | 0.2300278 1530 | 0.06814308 1531 | 0.02966824 1532 | 0.1795266 1533 | 0.05508111 1534 | 0.04956362 1535 | 0.01686027 1536 | -0.01175999 1537 | 0.0189827 1538 | 1539 | 1540 | 0.3566331 1541 | -0.2563471 1542 | 0.09661836 1543 | -0.02933467 1544 | 0.04505248 1545 | -0.07160521 1546 | 0.00948208 1547 | 0.02460185 1548 | -0.0464755 1549 | 0.3884703 1550 | -0.1413535 1551 | 0.05311964 1552 | 0.08735454 1553 | -0.01138699 1554 | -0.02713404 1555 | -7.418355E-05 1556 | 0.0286364 1557 | 0.02518988 1558 | 0.3525864 1559 | 0.08650203 1560 | 0.001435885 1561 | 0.08376262 1562 | -0.02347184 1563 | 0.02460003 1564 | 0.008652442 1565 | 0.02021939 1566 | 0.05080206 1567 | 1568 | 1569 | 0.7607239 1570 | -0.1717486 1571 | 0.347793 1572 | -0.1700356 1573 | -0.05495531 1574 | 0.02798996 1575 | 0.1273937 1576 | 0.008505035 1577 | -0.1034496 1578 | 0.5832871 1579 | -0.1013751 1580 | 0.2120678 1581 | 0.05485579 1582 | -0.02801411 1583 | 0.0298337 1584 | 0.07008158 1585 | 0.01480907 1586 | -0.02274392 1587 | 0.2593342 1588 | 0.02076058 1589 | 0.05763792 1590 | 0.1961053 1591 | 0.03645548 1592 | 0.03679617 1593 | 0.01696245 1594 | 0.01863813 1595 | 0.005872113 1596 | 1597 | 1598 | 0.8821252 1599 | 0.3708267 1600 | -0.03020805 1601 | -0.1118916 1602 | -0.1461104 1603 | 0.005663236 1604 | 0.09015458 1605 | 0.02952362 1606 | -0.1849432 1607 | 0.6588843 1608 | 0.2265632 1609 | -0.01703448 1610 | 0.06520011 1611 | -0.04031339 1612 | 0.002987514 1613 | 0.04999158 1614 | 0.01748209 1615 | -0.07769698 1616 | 0.2921816 1617 | 0.05049124 1618 | 0.02971455 1619 | 0.1403193 1620 | 0.06620202 1621 | 0.01703496 1622 | 0.01633431 1623 | 0.02731064 1624 | -0.00962251 1625 | 1626 | 1627 | 0.4468605 1628 | -0.1776062 1629 | 0.1499034 1630 | -0.06067245 1631 | -0.06697088 1632 | 0.04848826 1633 | -0.005193844 1634 | 0.01144509 1635 | -0.01334985 1636 | 0.4121259 1637 | -0.1089774 1638 | 0.09341633 1639 | 0.06733368 1640 | -0.003648277 1641 | 0.02392855 1642 | -0.003070244 1643 | 0.04765798 1644 | 0.01063014 1645 | 0.2639042 1646 | -0.02016939 1647 | 0.02306922 1648 | 0.1191776 1649 | 0.05852915 1650 | 0.007464315 1651 | 0.01144052 1652 | 0.05467248 1653 | -0.007943564 1654 | 1655 | 1656 | 0.1924239 1657 | 0.003732413 1658 | -0.02759901 1659 | 0.01022609 1660 | 0.005080689 1661 | -0.01155095 1662 | 0.0131416 1663 | 0.01335235 1664 | 0.01604888 1665 | 0.2512234 1666 | 0.0584982 1667 | -0.02911261 1668 | 0.06848951 1669 | 0.02481153 1670 | -0.007021718 1671 | 0.008579516 1672 | -0.02299332 1673 | 0.04613654 1674 | 0.2857636 1675 | 0.1330163 1676 | 0.03970596 1677 | 0.03167703 1678 | 0.02759898 1679 | 0.01903491 1680 | 0.006772236 1681 | 0.02470267 1682 | 0.03885666 1683 | 1684 | 1685 | 0.4244232 1686 | -0.1464978 1687 | -0.07217421 1688 | -0.02782259 1689 | -0.04825103 1690 | -0.0274983 1691 | 0.002202361 1692 | 0.02253663 1693 | -0.007341266 1694 | 0.381409 1695 | -0.07871422 1696 | -0.04604754 1697 | 0.09836046 1698 | 0.014497 1699 | -0.008229938 1700 | 0.002515167 1701 | -0.01656056 1702 | 0.02237082 1703 | 0.258643 1704 | 0.0198613 1705 | 0.051603 1706 | 0.1410131 1707 | 0.07524336 1708 | 0.03654555 1709 | 0.01307289 1710 | 0.01204669 1711 | 0.007662823 1712 | 1713 | 1714 | 0.6235237 1715 | -0.0161185 1716 | 0.1567683 1717 | -0.07958312 1718 | -0.1025431 1719 | 0.1068386 1720 | 0.0303457 1721 | 0.007919733 1722 | -0.06109038 1723 | 0.5172033 1724 | -0.0176784 1725 | 0.1047039 1726 | 0.07995895 1727 | -0.01585953 1728 | 0.06454879 1729 | 0.01313902 1730 | 0.01920529 1731 | -0.007549574 1732 | 0.2770006 1733 | -0.01132558 1734 | 0.05235497 1735 | 0.1477245 1736 | 0.07091261 1737 | 0.02798519 1738 | 0.009059775 1739 | 0.0301944 1740 | -0.003499012 1741 | 1742 | 1743 | 0.9883605 1744 | -0.914081 1745 | -0.0119682 1746 | -0.8476893 1747 | 0.8335066 1748 | 0.03040866 1749 | -0.01431374 1750 | 0.02474335 1751 | -0.004386713 1752 | 0.7889274 1753 | -0.5525575 1754 | -0.04425601 1755 | -0.3716795 1756 | 0.4527112 1757 | 0.051081 1758 | -0.01264954 1759 | 0.0004307024 1760 | 0.05244455 1761 | 0.4306231 1762 | 0.0007796457 1763 | -0.0353529 1764 | 0.01190148 1765 | 0.0676662 1766 | 0.05197312 1767 | 0.01350944 1768 | 0.002796467 1769 | 0.03997714 1770 | 1771 | 1772 | 0.3961474 1773 | -0.2357961 1774 | 0.3142035 1775 | -0.1775662 1776 | 0.1718538 1777 | -0.2396027 1778 | 0.02929691 1779 | -0.1747935 1780 | 0.001304575 1781 | 0.4244399 1782 | -0.1521882 1783 | 0.1948337 1784 | -0.01257343 1785 | 0.07542315 1786 | -0.130103 1787 | 0.01250331 1788 | -0.04802435 1789 | 0.04303878 1790 | 0.3716615 1791 | 0.05135552 1792 | 0.0122064 1793 | 0.04257735 1794 | 0.01697116 1795 | 0.01589227 1796 | 0.01003051 1797 | 0.03120411 1798 | 0.03553843 1799 | 1800 | 1801 | 2.751725 1802 | -0.4659472 1803 | -0.2612794 1804 | -3.261632 1805 | 0.3421873 1806 | 0.1927917 1807 | 0.174693 1808 | 0.2775058 1809 | 0.7426619 1810 | 1.829523 1811 | -0.2782652 1812 | -0.1888429 1813 | -1.78864 1814 | 0.214316 1815 | 0.1356863 1816 | 0.1034396 1817 | 0.1441332 1818 | 0.4949847 1819 | 0.5488454 1820 | 0.005414702 1821 | -0.03149828 1822 | -0.1622411 1823 | 0.07957602 1824 | 0.06199801 1825 | 0.03496367 1826 | 0.01937258 1827 | 0.08505843 1828 | 1829 | 1830 | 0.4721567 1831 | -0.1298891 1832 | 0.5065681 1833 | -0.2964833 1834 | 0.03066418 1835 | -0.09163305 1836 | 0.05903386 1837 | -0.3110688 1838 | 0.05249527 1839 | 0.4593107 1840 | -0.0801973 1841 | 0.303676 1842 | -0.06761925 1843 | 0.02370097 1844 | -0.04998887 1845 | 0.03136104 1846 | -0.1194417 1847 | 0.06051781 1848 | 0.3133843 1849 | 0.01705659 1850 | 0.04886376 1851 | 0.06868726 1852 | 0.03294509 1853 | 0.02610581 1854 | 0.01366091 1855 | 0.04037096 1856 | 0.0005510535 1857 | 1858 | 1859 | 0.2844765 1860 | -0.09625322 1861 | -0.1695432 1862 | -0.04987477 1863 | 0.04975776 1864 | 0.1245695 1865 | 0.03761357 1866 | 0.108608 1867 | 0.01084123 1868 | 0.3308421 1869 | -0.02743112 1870 | -0.1500288 1871 | 0.05240386 1872 | 0.01351026 1873 | 0.1026092 1874 | 0.02861969 1875 | 0.01865695 1876 | 0.04564441 1877 | 0.3320598 1878 | 0.1202035 1879 | -0.03217702 1880 | 0.05038666 1881 | 0.01832785 1882 | 0.04412124 1883 | 0.01976583 1884 | 0.0206576 1885 | 0.03995015 1886 | 1887 | 1888 | 0.3056366 1889 | -0.04105889 1890 | -0.2200001 1891 | -0.07509419 1892 | 0.01443101 1893 | 0.05066034 1894 | 0.0551222 1895 | 0.1495734 1896 | 0.02641605 1897 | 0.3327106 1898 | 0.01776142 1899 | -0.1665546 1900 | 0.04134541 1901 | 0.01692645 1902 | 0.04505964 1903 | 0.03774142 1904 | 0.0346841 1905 | 0.05463168 1906 | 0.304801 1907 | 0.1225187 1908 | 0.0008556586 1909 | 0.0516606 1910 | 0.03162561 1911 | 0.03472032 1912 | 0.01707426 1913 | 0.01040865 1914 | 0.03363717 1915 | 1916 | 1917 | 0.4122692 1918 | -0.2416496 1919 | -0.2748637 1920 | -0.1746984 1921 | 0.1695878 1922 | 0.2154837 1923 | 0.03204124 1924 | 0.2051375 1925 | 0.008101921 1926 | 0.4210739 1927 | -0.1270641 1928 | -0.2143304 1929 | 0.0005570076 1930 | 0.07239165 1931 | 0.16087 1932 | 0.02210373 1933 | 0.07688306 1934 | 0.05218012 1935 | 0.3534229 1936 | 0.09200718 1937 | -0.04704884 1938 | 0.05294388 1939 | 0.01823596 1940 | 0.05795448 1941 | 0.02022461 1942 | 0.0254006 1943 | 0.04291377 1944 | 1945 | 1946 | 0.5220302 1947 | -0.1366361 1948 | -0.4306322 1949 | -0.2996269 1950 | 0.0534768 1951 | 0.101374 1952 | 0.06199628 1953 | 0.345363 1954 | 0.06468297 1955 | 0.4712002 1956 | -0.05604436 1957 | -0.2934415 1958 | -0.04991585 1959 | 0.04224324 1960 | 0.08369645 1961 | 0.0402033 1962 | 0.1442044 1963 | 0.07977801 1964 | 0.317952 1965 | 0.08400394 1966 | -0.01941091 1967 | 0.08706228 1968 | 0.04669024 1969 | 0.05586783 1970 | 0.02347148 1971 | 0.009354012 1972 | 0.02223752 1973 | 1974 | 1975 | 0.758761 1976 | -0.6487976 1977 | 0.3948489 1978 | -0.5815269 1979 | 0.5663598 1980 | -0.294048 1981 | 0.0023947 1982 | -0.2502695 1983 | 0.003867855 1984 | 0.6539952 1985 | -0.4015471 1986 | 0.2180957 1987 | -0.2190513 1988 | 0.294123 1989 | -0.1487638 1990 | -0.005103036 1991 | -0.1300136 1992 | 0.05640571 1993 | 0.4155787 1994 | 0.01363791 1995 | 0.007261968 1996 | 0.03550956 1997 | 0.03724953 1998 | 0.02045159 1999 | 0.01135527 2000 | -0.004996616 2001 | 0.04328034 2002 | 2003 | 2004 | 1.392466 2005 | -0.2640373 2006 | 0.8664221 2007 | -1.454422 2008 | 0.1032544 2009 | -0.06089246 2010 | 0.09364807 2011 | -0.6432943 2012 | 0.3254946 2013 | 1.01619 2014 | -0.1645335 2015 | 0.5021446 2016 | -0.7044482 2017 | 0.0653767 2018 | -0.02136517 2019 | 0.05203593 2020 | -0.3722795 2021 | 0.2412379 2022 | 0.4089865 2023 | 0.0125351 2024 | 0.07951877 2025 | 0.02872106 2026 | 0.046009 2027 | 0.03293245 2028 | 0.02219784 2029 | -0.0522724 2030 | 0.03859057 2031 | 2032 | 2033 | 1.565777 2034 | 0.8631511 2035 | -0.07431893 2036 | -1.400223 2037 | -1.156163 2038 | -0.06833827 2039 | 0.01580974 2040 | 0.0852405 2041 | 0.1204104 2042 | 1.111766 2043 | 0.5449318 2044 | -0.05894806 2045 | -0.6968514 2046 | -0.6397905 2047 | -0.05042176 2048 | 0.007920996 2049 | 0.04075364 2050 | 0.1166488 2051 | 0.4204385 2052 | 0.1393227 2053 | 0.01389942 2054 | -0.0145625 2055 | -0.03886715 2056 | 0.002639651 2057 | 0.01861452 2058 | 0.01679143 2059 | 0.0202906 2060 | 2061 | 2062 | 0.5980542 2063 | -0.1025141 2064 | 0.4050754 2065 | -0.2346642 2066 | -0.1672405 2067 | 0.1727276 2068 | 0.03127164 2069 | -0.2342481 2070 | 0.01751617 2071 | 0.5335409 2072 | -0.05211867 2073 | 0.2534778 2074 | -0.04964521 2075 | -0.06593757 2076 | 0.09962488 2077 | 0.01684534 2078 | -0.08487614 2079 | 0.03889587 2080 | 0.3280974 2081 | 0.006414118 2082 | 0.05693909 2083 | 0.04697516 2084 | 0.03180253 2085 | 0.02537432 2086 | 0.01441909 2087 | 0.03462342 2088 | 0.001185295 2089 | 2090 | 2091 | 0.2729563 2092 | 0.04982526 2093 | -0.1609405 2094 | -0.06243926 2095 | -0.03390777 2096 | -0.07514529 2097 | 0.04048994 2098 | 0.1232723 2099 | 0.02065983 2100 | 0.3017271 2101 | 0.08681768 2102 | -0.1153401 2103 | 0.04029773 2104 | 0.009699167 2105 | -0.04646308 2106 | 0.02686589 2107 | 0.02722602 2108 | 0.04833429 2109 | 0.282388 2110 | 0.1320099 2111 | 0.03531034 2112 | 0.04416736 2113 | 0.0358525 2114 | 0.01758986 2115 | 0.01111767 2116 | 0.01771171 2117 | 0.03221888 2118 | 2119 | 2120 | 0.5921317 2121 | -0.04953305 2122 | -0.314635 2123 | -0.2107743 2124 | -0.1652901 2125 | -0.161562 2126 | 0.03334771 2127 | 0.2526088 2128 | 0.02103757 2129 | 0.5181709 2130 | -0.006997752 2131 | -0.2054639 2132 | -0.01524047 2133 | -0.05726885 2134 | -0.0925212 2135 | 0.02129044 2136 | 0.1002071 2137 | 0.05133813 2138 | 0.334125 2139 | 0.05604777 2140 | 0.02378079 2141 | 0.07343768 2142 | 0.04270175 2143 | 0.02232435 2144 | 0.01645541 2145 | 0.01175411 2146 | 0.02113952 2147 | 2148 | 2149 | 1.134827 2150 | 0.376614 2151 | 0.4955271 2152 | -0.8254844 2153 | -0.6791617 2154 | 0.2879804 2155 | 0.02848206 2156 | -0.3152812 2157 | 0.06512133 2158 | 0.8681285 2159 | 0.2390241 2160 | 0.2960229 2161 | -0.356942 2162 | -0.3535052 2163 | 0.1627229 2164 | 0.01314964 2165 | -0.1703431 2166 | 0.07993643 2167 | 0.3935334 2168 | 0.06192448 2169 | 0.06881653 2170 | 0.04043593 2171 | 0.008104724 2172 | 0.03369746 2173 | 0.01629081 2174 | -0.01077687 2175 | 0.01082871 2176 | 2177 | 2178 | 0.3123843 2179 | -0.07829311 2180 | 0.008746048 2181 | -0.2364156 2182 | 0.1180211 2183 | -0.0006822186 2184 | -0.03286929 2185 | 0.02956888 2186 | 0.1226214 2187 | 0.5736702 2188 | -0.2264217 2189 | -0.08069609 2190 | 0.1588944 2191 | -0.1329292 2192 | 0.06076223 2193 | -0.04037713 2194 | 0.03059897 2195 | 0.1754144 2196 | 0.3890614 2197 | 0.06555688 2198 | -0.07161815 2199 | -0.04644283 2200 | 0.06947837 2201 | 0.07290407 2202 | 0.01689165 2203 | 0.07066314 2204 | 0.05510401 2205 | 2206 | 2207 | 0.2418736 2208 | -0.0192651 2209 | 0.1128211 2210 | -0.1683865 2211 | 0.08879794 2212 | -0.0539301 2213 | -0.009785397 2214 | -0.09730823 2215 | 0.0877189 2216 | 0.4063413 2217 | -0.09041596 2218 | 0.1705296 2219 | 0.03964867 2220 | -0.01681454 2221 | -0.08112415 2222 | -0.005087864 2223 | 0.08128557 2224 | 0.0981902 2225 | 0.3575546 2226 | 0.07410593 2227 | 0.0004746994 2228 | -0.005901254 2229 | 0.05134432 2230 | 0.02959558 2231 | 0.003215373 2232 | 0.01573138 2233 | 0.04538214 2234 | 2235 | 2236 | 0.3022563 2237 | -0.0212307 2238 | 0.02702562 2239 | -0.2509515 2240 | 0.02544306 2241 | -0.0001392634 2242 | -0.03587328 2243 | 0.02187869 2244 | 0.1362792 2245 | 0.6494896 2246 | -0.05675023 2247 | -0.09052856 2248 | 0.2957208 2249 | -0.01679614 2250 | 0.02475131 2251 | -0.04177995 2252 | 0.0207585 2253 | 0.2765201 2254 | 0.3464838 2255 | 0.07372545 2256 | -0.06123218 2257 | -0.09123996 2258 | 0.02259611 2259 | 0.03844196 2260 | 0.02447336 2261 | 0.07379618 2262 | 0.03176434 2263 | 2264 | 2265 | 0.1932149 2266 | -0.006497594 2267 | 0.1620579 2268 | -0.1913342 2269 | 0.02398368 2270 | -0.000103128 2271 | -0.01300634 2272 | -0.1167042 2273 | 0.08724873 2274 | 0.4047568 2275 | -0.03265825 2276 | 0.2400255 2277 | 0.04900063 2278 | 0.006473397 2279 | -0.01353821 2280 | -0.005450553 2281 | 0.1089259 2282 | 0.120466 2283 | 0.2973952 2284 | 0.04120057 2285 | 0.03792827 2286 | -0.05212907 2287 | 0.02335917 2288 | 0.04409753 2289 | -0.001698652 2290 | -0.01524222 2291 | 0.02036299 2292 | 2293 | 2294 | 0.2542868 2295 | -0.04104589 2296 | -0.07497495 2297 | -0.1238285 2298 | 0.06220695 2299 | 0.03572699 2300 | -8.256239E-05 2301 | 0.1367753 2302 | 0.066436 2303 | 0.3488801 2304 | -0.02666154 2305 | -0.1613922 2306 | 0.003961296 2307 | 0.009268464 2308 | 0.0915555 2309 | 0.02191858 2310 | 0.02075058 2311 | 0.07179389 2312 | 0.3319289 2313 | 0.1211747 2314 | -0.03087464 2315 | 0.01039298 2316 | 0.03770515 2317 | 0.03928464 2318 | 0.01908153 2319 | 0.06883076 2320 | 0.04557338 2321 | 2322 | 2323 | 0.2495111 2324 | -0.009276853 2325 | -0.07166612 2326 | -0.129898 2327 | 0.01351608 2328 | 0.007530625 2329 | 0.0004896006 2330 | 0.1444032 2331 | 0.06795914 2332 | 0.3470592 2333 | 0.02827415 2334 | -0.1696721 2335 | 0.01181675 2336 | 0.008372767 2337 | 0.03102602 2338 | 0.02743809 2339 | 0.004024446 2340 | 0.07827689 2341 | 0.3073608 2342 | 0.1312781 2343 | -0.001928245 2344 | 0.0009935139 2345 | 0.02490892 2346 | 0.02489559 2347 | 0.01692696 2348 | 0.07780264 2349 | 0.03328136 2350 | 2351 | 2352 | 0.27746 2353 | -0.05899771 2354 | -0.06811061 2355 | -0.1699822 2356 | 0.08577176 2357 | 0.03689956 2358 | -0.01209048 2359 | 0.1280523 2360 | 0.0847953 2361 | 0.4230026 2362 | -0.09813393 2363 | -0.1999197 2364 | 0.04485236 2365 | -0.03624116 2366 | 0.129579 2367 | 0.00600356 2368 | -0.02323751 2369 | 0.09598582 2370 | 0.3452744 2371 | 0.1065838 2372 | -0.04555744 2373 | -0.00761884 2374 | 0.04719536 2375 | 0.04940636 2376 | 0.0197903 2377 | 0.07744933 2378 | 0.04440134 2379 | 2380 | 2381 | 0.2809682 2382 | -0.02484876 2383 | -0.0699536 2384 | -0.1999467 2385 | 0.02729217 2386 | 0.01408507 2387 | -0.01314919 2388 | 0.146934 2389 | 0.09787337 2390 | 0.4382308 2391 | -0.01458357 2392 | -0.2202951 2393 | 0.05476084 2394 | 0.004264297 2395 | 0.04788585 2396 | 0.01041207 2397 | -0.04780637 2398 | 0.1269531 2399 | 0.3176964 2400 | 0.1034034 2401 | -0.01474154 2402 | -0.03451451 2403 | 0.02428227 2404 | 0.03590605 2405 | 0.01950765 2406 | 0.08828403 2407 | 0.02988533 2408 | 2409 | 2410 | 0.2879973 2411 | -0.06221112 2412 | 0.06963183 2413 | -0.2078074 2414 | 0.1070838 2415 | -0.02691615 2416 | -0.02764934 2417 | -0.03408328 2418 | 0.1124151 2419 | 0.5512745 2420 | -0.2196939 2421 | 0.07265335 2422 | 0.1190422 2423 | -0.09097069 2424 | -0.00877645 2425 | -0.03637472 2426 | 0.1299492 2427 | 0.158479 2428 | 0.4105726 2429 | 0.03088575 2430 | -0.06357882 2431 | -0.05083479 2432 | 0.07790033 2433 | 0.08748986 2434 | 0.005142484 2435 | 0.05985556 2436 | 0.0601249 2437 | 2438 | 2439 | 0.2786102 2440 | -0.01661557 2441 | 0.0953164 2442 | -0.2563185 2443 | 0.03087395 2444 | -0.002032832 2445 | -0.03153515 2446 | -0.04927067 2447 | 0.1318922 2448 | 0.6270732 2449 | -0.06865262 2450 | 0.09200708 2451 | 0.1637376 2452 | -0.01626656 2453 | 0.006223681 2454 | -0.03108451 2455 | 0.1969202 2456 | 0.2561487 2457 | 0.3817258 2458 | 0.05633257 2459 | -0.08592015 2460 | -0.1364031 2461 | 0.02805794 2462 | 0.0404776 2463 | 0.01370952 2464 | 0.05897245 2465 | 0.05959814 2466 | 2467 | 2468 | 0.2882043 2469 | 0.02496287 2470 | 0.0188772 2471 | -0.2149057 2472 | -0.06053952 2473 | 0.006003217 2474 | -0.03072669 2475 | 0.01908973 2476 | 0.1140533 2477 | 0.6049017 2478 | 0.1623349 2479 | -0.06363601 2480 | 0.2310085 2481 | 0.1857146 2482 | -0.03451693 2483 | -0.03860104 2484 | 0.01197312 2485 | 0.2008067 2486 | 0.3133062 2487 | 0.08331235 2488 | -0.0195802 2489 | -0.0752069 2490 | -0.0256041 2491 | -0.01456915 2492 | 0.02330544 2493 | 0.05243583 2494 | 0.01742682 2495 | 2496 | 2497 | 0.1797457 2498 | 0.02696281 2499 | 0.1312028 2500 | -0.1760293 2501 | -0.05412088 2502 | 0.04813039 2503 | -0.01316065 2504 | -0.1087525 2505 | 0.07446931 2506 | 0.3846183 2507 | 0.04636192 2508 | 0.2044985 2509 | 0.03337832 2510 | 0.039617 2511 | 0.07801303 2512 | -0.003657273 2513 | 0.08104423 2514 | 0.08784056 2515 | 0.2439699 2516 | 0.05810835 2517 | 0.03421227 2518 | -0.04210994 2519 | -0.0146777 2520 | 0.02402167 2521 | 0.006155507 2522 | -0.01806702 2523 | 0.005868875 2524 | 2525 | 2526 | 0.2432983 2527 | 0.01751703 2528 | -0.05970467 2529 | -0.1223596 2530 | -0.03159427 2531 | -0.01919249 2532 | -0.001660423 2533 | 0.1328977 2534 | 0.06498912 2535 | 0.3212303 2536 | 0.09128349 2537 | -0.1280576 2538 | 0.006033261 2539 | 0.02043445 2540 | -0.04831637 2541 | 0.02065065 2542 | 0.008624206 2543 | 0.06980129 2544 | 0.2848376 2545 | 0.132389 2546 | 0.03392581 2547 | 0.006278734 2548 | 0.01206329 2549 | 0.015739 2550 | 0.011763 2551 | 0.06712328 2552 | 0.03253212 2553 | 2554 | 2555 | 0.2664336 2556 | 0.01432171 2557 | -0.04673536 2558 | -0.1639851 2559 | -0.04769175 2560 | -0.01043401 2561 | -0.01292057 2562 | 0.1214967 2563 | 0.08712617 2564 | 0.4377491 2565 | 0.04851508 2566 | -0.1594106 2567 | 0.05323593 2568 | 0.0546313 2569 | -0.05676987 2570 | 0.005770597 2571 | -0.03644409 2572 | 0.1029918 2573 | 0.3090648 2574 | 0.08010962 2575 | 0.03468165 2576 | -0.009590711 2577 | 0.003696687 2578 | 0.02746455 2579 | 0.01600573 2580 | 0.07500114 2581 | 0.02553387 2582 | 2583 | 2584 | 0.2382276 2585 | 0.05842193 2586 | 0.0750179 2587 | -0.2115838 2588 | -0.064269 2589 | 0.02751892 2590 | -0.02650699 2591 | -0.04578398 2592 | 0.1059676 2593 | 0.5716636 2594 | 0.1620602 2595 | 0.09694709 2596 | 0.1388118 2597 | 0.1213079 2598 | 0.01840224 2599 | -0.02940446 2600 | 0.155849 2601 | 0.1760217 2602 | 0.3284561 2603 | 0.1101772 2604 | -0.03841754 2605 | -0.09783762 2606 | -0.04044855 2607 | -0.03838204 2608 | 0.01142387 2609 | 0.03479399 2610 | 0.02584714 2611 | 2612 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/SampleScene_LP.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59ff4c15093aa6b43b357c6450ce886d 3 | timeCreated: 1461568988 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/SampleScene_LPW.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 426e03dc9ada58041bb0c3574f94ff7a, type: 3} 12 | m_Name: SampleScene_LPW 13 | m_EditorClassIdentifier: 14 | bakedGIWeight: 0.98765427 15 | bakedProbeWeight: 16 | - 1 17 | - 1 18 | - 1 19 | - 1 20 | - 1 21 | - 1 22 | - 1 23 | - 1 24 | - 1 25 | - 1 26 | - 1 27 | - 1 28 | - 1 29 | - 1 30 | - 1 31 | - 1 32 | - 1 33 | - 1 34 | - 1 35 | - 1 36 | - 1 37 | - 1 38 | - 1 39 | - 1 40 | - 1 41 | - 1 42 | - 1 43 | - 1 44 | - 1 45 | - 1 46 | - 1 47 | - 1 48 | - 1 49 | - 1 50 | - 1 51 | - 1 52 | - 1 53 | - 1 54 | - 1 55 | - 1 56 | - 1 57 | - 1 58 | - 1 59 | - 1 60 | - 1 61 | - 1 62 | - 1 63 | - 1 64 | - 1 65 | - 1 66 | - 1 67 | - 1 68 | - 1 69 | - 1 70 | - 1 71 | - 1 72 | - 1 73 | - 1 74 | - 1 75 | - 1 76 | - 1 77 | - 1 78 | - 1 79 | - 1 80 | - 1 81 | - 1 82 | - 1 83 | - 1 84 | - 1 85 | - 1 86 | - 1 87 | - 1 88 | - 1 89 | - 1 90 | - 1 91 | - 1 92 | - 1 93 | - 1 94 | - 1 95 | - 1 96 | - 1 97 | - 1 98 | - 1 99 | - 1 100 | - 1 101 | - 1 102 | - 1 103 | - 1 104 | - 1 105 | - 1 106 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/SampleScene/SampleScene_LPW.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07ce54cbca47e3a46b216b3c565b3a55 3 | timeCreated: 1514819697 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f60fdb39a7534da409dc2710d0c98ad7 3 | folderAsset: yes 4 | timeCreated: 1461564414 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Textures/1m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/Assets/LightProbeTools/Samples/Textures/1m.tif -------------------------------------------------------------------------------- /Assets/LightProbeTools/Samples/Textures/1m.tif.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 474c85d30f5a7944b962739533f88c9d 3 | timeCreated: 1461564415 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 jplee 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegoonz/LPWT/bae9e517037df336988a480686bf8d80e23d5f0c/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LPWT 2 | ## Modulate SH Weight Editor. 3 | //2016.4.10 4 | //Authored by leegoonz.(Lee JungPyo / 李正彪) 5 | //contact via leegoon73@gmail.com (EN) / leegoonz@163.com(CN) 6 | //http://www.leegoonz.blog 7 | 8 | ### Version 1 has been completed Light mapping is set up, then confirm the probe data Sometimes you may find that it may be weaker or stronger than you thought, using this function, Artists can visually modify it and then go back to the SphericalHarmonicsL2 probe data later. 9 | ### No more baking to get back to the original data. Multiply the weighting values to the probe data with the set weighting values. The next extended version is to take the selected probes in the probe cout list, receive them into the list and add functions that just imitate them in real time. 10 | 11 | ### Youtube is here. 12 | [![LIGHT PROBE EDITOR](https://i.imgur.com/MtArUFV.png)](https://youtu.be/OoEMVSMuaKE "LIGHT PROBE EDITOR") 13 | 14 | ### Related post here. 15 | https://leegoonz.blog/2020/01/08/light-probe-data-manager-implementation/ 16 | 17 | ![Alt text](https://static.wixstatic.com/media/ba743f_bbf7664329264691b49637492f36900a~mv2_d_1951_1314_s_2.png/v1/fill/w_630,h_424,al_c,usm_0.66_1.00_0.01/ba743f_bbf7664329264691b49637492f36900a~mv2_d_1951_1314_s_2.png "GUI") 18 | 19 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------