├── .github └── FUNDING.yml ├── .gitignore ├── .vsconfig ├── Assets ├── LlamAcademy.meta └── LlamAcademy │ ├── LightLOD.meta │ └── LightLOD │ ├── Demo.meta │ ├── Demo │ ├── Camera.controller │ ├── Camera.controller.meta │ ├── Materials.meta │ ├── Materials │ │ ├── BlueGridMaterial.mat │ │ ├── BlueGridMaterial.mat.meta │ │ ├── PinkGridMaterial.mat │ │ ├── PinkGridMaterial.mat.meta │ │ ├── YellowGridMaterial.mat │ │ └── YellowGridMaterial.mat.meta │ ├── Recording.anim │ ├── Recording.anim.meta │ ├── Textures.meta │ ├── Textures │ │ ├── Emissive.png │ │ ├── Emissive.png.meta │ │ ├── Navy.png │ │ ├── Navy.png.meta │ │ ├── Pink.png │ │ ├── Pink.png.meta │ │ ├── Yellow.png │ │ └── Yellow.png.meta │ ├── demo-2-many-lights.unity │ ├── demo-2-many-lights.unity.meta │ ├── demo-multi-camera.unity │ ├── demo-multi-camera.unity.meta │ ├── demo.unity │ └── demo.unity.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── Aggressive Scaling Light.prefab │ ├── Aggressive Scaling Light.prefab.meta │ ├── Conservative Scaling Light.prefab │ ├── Conservative Scaling Light.prefab.meta │ ├── Moderate Scaling Light.prefab │ ├── Moderate Scaling Light.prefab.meta │ ├── Very Aggressive Scaling Light.prefab │ └── Very Aggressive Scaling Light.prefab.meta │ ├── Scripts.meta │ └── Scripts │ ├── Editor.meta │ ├── FreeCamera.cs │ ├── FreeCamera.cs.meta │ ├── LODAdjustment.cs │ ├── LODAdjustment.cs.meta │ ├── LightLOD.cs │ ├── LightLOD.cs.meta │ ├── LightLODCamera.cs │ ├── LightLODCamera.cs.meta │ ├── Sample.meta │ └── Sample │ ├── CameraDisabler.cs │ ├── CameraDisabler.cs.meta │ ├── CameraSwapper.cs │ └── CameraSwapper.cs.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── boot.config ├── README.md ├── UIElementsSchema ├── UIElements.xsd ├── Unity.Cloud.Collaborate.Components.ChangeListEntries.xsd ├── Unity.Cloud.Collaborate.Components.xsd ├── Unity.Cloud.Collaborate.Views.xsd ├── Unity.Profiling.Editor.xsd ├── Unity.UI.Builder.xsd ├── UnityEditor.Experimental.GraphView.xsd ├── UnityEditor.Overlays.xsd ├── UnityEditor.PackageManager.UI.Internal.xsd ├── UnityEditor.Search.xsd ├── UnityEditor.ShortcutManagement.xsd ├── UnityEditor.UIElements.Debugger.xsd ├── UnityEditor.UIElements.xsd └── UnityEngine.UIElements.xsd ├── UserSettings ├── EditorUserSettings.asset ├── Layouts │ └── default-2021.dwlt └── Search.settings └── Video Screenshot.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/LlamAcademy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Camera.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Camera.controller -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Camera.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Camera.controller.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials/BlueGridMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials/BlueGridMaterial.mat -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials/BlueGridMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials/BlueGridMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials/PinkGridMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials/PinkGridMaterial.mat -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials/PinkGridMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials/PinkGridMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials/YellowGridMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials/YellowGridMaterial.mat -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Materials/YellowGridMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Materials/YellowGridMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Recording.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Recording.anim -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Recording.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Recording.anim.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Emissive.png -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Emissive.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Emissive.png.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Navy.png -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Navy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Navy.png.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Pink.png -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Pink.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Pink.png.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Yellow.png -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/Textures/Yellow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/Textures/Yellow.png.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/demo-2-many-lights.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/demo-2-many-lights.unity -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/demo-2-many-lights.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/demo-2-many-lights.unity.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/demo-multi-camera.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/demo-multi-camera.unity -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/demo-multi-camera.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/demo-multi-camera.unity.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/demo.unity -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Demo/demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Demo/demo.unity.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Aggressive Scaling Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Aggressive Scaling Light.prefab -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Aggressive Scaling Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Aggressive Scaling Light.prefab.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Conservative Scaling Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Conservative Scaling Light.prefab -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Conservative Scaling Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Conservative Scaling Light.prefab.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Moderate Scaling Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Moderate Scaling Light.prefab -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Moderate Scaling Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Moderate Scaling Light.prefab.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Very Aggressive Scaling Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Very Aggressive Scaling Light.prefab -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Prefabs/Very Aggressive Scaling Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Prefabs/Very Aggressive Scaling Light.prefab.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/FreeCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/FreeCamera.cs -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/FreeCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/FreeCamera.cs.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/LODAdjustment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/LODAdjustment.cs -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/LODAdjustment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/LODAdjustment.cs.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/LightLOD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/LightLOD.cs -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/LightLOD.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/LightLOD.cs.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/LightLODCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/LightLODCamera.cs -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/LightLODCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/LightLODCamera.cs.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/Sample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/Sample.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraDisabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraDisabler.cs -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraDisabler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraDisabler.cs.meta -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraSwapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraSwapper.cs -------------------------------------------------------------------------------- /Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraSwapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Assets/LlamAcademy/LightLOD/Scripts/Sample/CameraSwapper.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/README.md -------------------------------------------------------------------------------- /UIElementsSchema/UIElements.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UIElements.xsd -------------------------------------------------------------------------------- /UIElementsSchema/Unity.Cloud.Collaborate.Components.ChangeListEntries.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/Unity.Cloud.Collaborate.Components.ChangeListEntries.xsd -------------------------------------------------------------------------------- /UIElementsSchema/Unity.Cloud.Collaborate.Components.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/Unity.Cloud.Collaborate.Components.xsd -------------------------------------------------------------------------------- /UIElementsSchema/Unity.Cloud.Collaborate.Views.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/Unity.Cloud.Collaborate.Views.xsd -------------------------------------------------------------------------------- /UIElementsSchema/Unity.Profiling.Editor.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/Unity.Profiling.Editor.xsd -------------------------------------------------------------------------------- /UIElementsSchema/Unity.UI.Builder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/Unity.UI.Builder.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Experimental.GraphView.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.Experimental.GraphView.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Overlays.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.Overlays.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.PackageManager.UI.Internal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.PackageManager.UI.Internal.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Search.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.Search.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.ShortcutManagement.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.ShortcutManagement.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.UIElements.Debugger.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.UIElements.Debugger.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.UIElements.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEditor.UIElements.xsd -------------------------------------------------------------------------------- /UIElementsSchema/UnityEngine.UIElements.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UIElementsSchema/UnityEngine.UIElements.xsd -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /UserSettings/Layouts/default-2021.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/UserSettings/Layouts/default-2021.dwlt -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Video Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamacademy/light-lod/HEAD/Video Screenshot.jpg --------------------------------------------------------------------------------