├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .idea ├── .idea.Assembly-CSharp │ └── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── .idea.Project PLANETS V2 │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml └── .idea.Unity-Planets │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ ├── misc.xml │ └── vcs.xml ├── .vsconfig ├── Assets ├── Boxey.meta ├── Boxey │ ├── Attributes.meta │ ├── Attributes │ │ ├── ButtonDrawer.cs │ │ ├── ButtonDrawer.cs.meta │ │ ├── EnumButtonDrawer.cs │ │ ├── EnumButtonDrawer.cs.meta │ │ ├── FoldableInspectorAttribute.cs │ │ ├── FoldableInspectorAttribute.cs.meta │ │ ├── LabelDrawer.cs │ │ ├── LabelDrawer.cs.meta │ │ ├── LineDrawer.cs │ │ ├── LineDrawer.cs.meta │ │ ├── OnChangedDrawer.cs │ │ ├── OnChangedDrawer.cs.meta │ │ ├── RequiredDrawer.cs │ │ ├── RequiredDrawer.cs.meta │ │ ├── ShowIfDrawer.cs │ │ ├── ShowIfDrawer.cs.meta │ │ ├── ShowOnlyDrawer.cs │ │ └── ShowOnlyDrawer.cs.meta │ ├── Planets.meta │ └── Planets │ │ ├── Core.meta │ │ ├── Core │ │ ├── 3rd Party.meta │ │ ├── 3rd Party │ │ │ ├── Atmosphere.meta │ │ │ ├── Atmosphere │ │ │ │ ├── Atmosphere.asmdef │ │ │ │ ├── Atmosphere.asmdef.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── Atmosphere.Editor.asmdef │ │ │ │ │ ├── Atmosphere.Editor.asmdef.meta │ │ │ │ │ ├── AtmosphereEffectEditor.cs │ │ │ │ │ ├── AtmosphereEffectEditor.cs.meta │ │ │ │ │ ├── AtmosphereProfileEditor.cs │ │ │ │ │ └── AtmosphereProfileEditor.cs.meta │ │ │ │ ├── LINK.txt │ │ │ │ ├── LINK.txt.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── DepthStack.meta │ │ │ │ │ ├── DepthStack │ │ │ │ │ ├── DepthStack.asmdef │ │ │ │ │ ├── DepthStack.asmdef.meta │ │ │ │ │ ├── Includes.meta │ │ │ │ │ ├── Includes │ │ │ │ │ │ ├── Common.hlsl │ │ │ │ │ │ ├── Common.hlsl.meta │ │ │ │ │ │ ├── CompositeDepth.hlsl │ │ │ │ │ │ └── CompositeDepth.hlsl.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── DepthStackRenderFeature.cs │ │ │ │ │ │ ├── DepthStackRenderFeature.cs.meta │ │ │ │ │ │ ├── DepthStackRenderPass.cs │ │ │ │ │ │ └── DepthStackRenderPass.cs.meta │ │ │ │ │ ├── Shader.meta │ │ │ │ │ └── Shader │ │ │ │ │ │ ├── CopyDepth.mat │ │ │ │ │ │ ├── CopyDepth.mat.meta │ │ │ │ │ │ ├── EncodeDepth.shader │ │ │ │ │ │ └── EncodeDepth.shader.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── AtmosphereEffect.cs │ │ │ │ │ ├── AtmosphereEffect.cs.meta │ │ │ │ │ ├── AtmosphereProfile.cs │ │ │ │ │ ├── AtmosphereProfile.cs.meta │ │ │ │ │ ├── AtmosphereRenderFeature.cs │ │ │ │ │ ├── AtmosphereRenderFeature.cs.meta │ │ │ │ │ ├── AtmosphereRenderPass.cs │ │ │ │ │ ├── AtmosphereRenderPass.cs.meta │ │ │ │ │ ├── BlitUtility.cs │ │ │ │ │ └── BlitUtility.cs.meta │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ └── Shaders │ │ │ │ │ ├── Atmosphere.shader │ │ │ │ │ ├── Atmosphere.shader.meta │ │ │ │ │ ├── BlueNoise.png │ │ │ │ │ ├── BlueNoise.png.meta │ │ │ │ │ ├── Glow.shader │ │ │ │ │ ├── Glow.shader.meta │ │ │ │ │ ├── Includes.meta │ │ │ │ │ ├── Includes │ │ │ │ │ ├── Atmosphere.hlsl │ │ │ │ │ ├── Atmosphere.hlsl.meta │ │ │ │ │ ├── Common.hlsl │ │ │ │ │ ├── Common.hlsl.meta │ │ │ │ │ ├── Math.hlsl │ │ │ │ │ └── Math.hlsl.meta │ │ │ │ │ ├── OpticalDepth.compute │ │ │ │ │ └── OpticalDepth.compute.meta │ │ │ ├── noise.meta │ │ │ └── noise │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ ├── Runtime │ │ │ │ ├── DomainWarp.meta │ │ │ │ ├── DomainWarp │ │ │ │ │ ├── BasicGridWarp.cs │ │ │ │ │ ├── BasicGridWarp.cs.meta │ │ │ │ │ ├── DomainWarpFractalIndependent.cs │ │ │ │ │ ├── DomainWarpFractalIndependent.cs.meta │ │ │ │ │ ├── DomainWarpFractalProgressive.cs │ │ │ │ │ ├── DomainWarpFractalProgressive.cs.meta │ │ │ │ │ ├── DomainWarpSingle.cs │ │ │ │ │ ├── DomainWarpSingle.cs.meta │ │ │ │ │ ├── OpenSimplex2ReducedWarp.cs │ │ │ │ │ ├── OpenSimplex2ReducedWarp.cs.meta │ │ │ │ │ ├── OpenSimplex2Warp.cs │ │ │ │ │ └── OpenSimplex2Warp.cs.meta │ │ │ │ ├── Fractal.meta │ │ │ │ ├── Fractal │ │ │ │ │ ├── FractalBillow.cs │ │ │ │ │ ├── FractalBillow.cs.meta │ │ │ │ │ ├── FractalFBM.cs │ │ │ │ │ ├── FractalFBM.cs.meta │ │ │ │ │ ├── FractalPingPong.cs │ │ │ │ │ ├── FractalPingPong.cs.meta │ │ │ │ │ ├── FractalRiged.cs │ │ │ │ │ └── FractalRiged.cs.meta │ │ │ │ ├── FractalDeriv.meta │ │ │ │ ├── FractalDeriv │ │ │ │ │ ├── FractalBillowDeriv.cs │ │ │ │ │ ├── FractalBillowDeriv.cs.meta │ │ │ │ │ ├── FractalFBMDeriv.cs │ │ │ │ │ ├── FractalFBMDeriv.cs.meta │ │ │ │ │ ├── FractalPingPongDeriv.cs │ │ │ │ │ ├── FractalPingPongDeriv.cs.meta │ │ │ │ │ ├── FractalRigedDeriv.cs │ │ │ │ │ └── FractalRigedDeriv.cs.meta │ │ │ │ ├── IDomainWarp3D.cs │ │ │ │ ├── IDomainWarp3D.cs.meta │ │ │ │ ├── INoise3D.cs │ │ │ │ ├── INoise3D.cs.meta │ │ │ │ ├── NoiseExtensions.cs │ │ │ │ ├── NoiseExtensions.cs.meta │ │ │ │ ├── Single.meta │ │ │ │ ├── Single │ │ │ │ │ ├── Cellular3D.cs │ │ │ │ │ ├── Cellular3D.cs.meta │ │ │ │ │ ├── OpenSimplex2.cs │ │ │ │ │ ├── OpenSimplex2.cs.meta │ │ │ │ │ ├── OpenSimplex2S.cs │ │ │ │ │ ├── OpenSimplex2S.cs.meta │ │ │ │ │ ├── Perlin3D.cs │ │ │ │ │ ├── Perlin3D.cs.meta │ │ │ │ │ ├── Value3D.cs │ │ │ │ │ ├── Value3D.cs.meta │ │ │ │ │ ├── ValueCubic3D.cs │ │ │ │ │ └── ValueCubic3D.cs.meta │ │ │ │ ├── Unbegames.Noise.asmdef │ │ │ │ ├── Unbegames.Noise.asmdef.meta │ │ │ │ ├── Utils.cs │ │ │ │ └── Utils.cs.meta │ │ │ │ ├── Third Party Notices.md │ │ │ │ ├── Third Party Notices.md.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ ├── Classes.meta │ │ ├── Classes │ │ │ ├── Batcher.cs │ │ │ ├── Batcher.cs.meta │ │ │ ├── Node.cs │ │ │ ├── Node.cs.meta │ │ │ ├── NodeMarching.cs │ │ │ ├── NodeMarching.cs.meta │ │ │ ├── NoiseSettings.cs │ │ │ ├── NoiseSettings.cs.meta │ │ │ ├── PlanetData.cs │ │ │ ├── PlanetData.cs.meta │ │ │ ├── Reporter.cs │ │ │ └── Reporter.cs.meta │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── LightRotator.cs │ │ │ ├── LightRotator.cs.meta │ │ │ ├── PlanetaryDecoration.cs │ │ │ ├── PlanetaryDecoration.cs.meta │ │ │ ├── PlanetaryGravity.cs │ │ │ ├── PlanetaryGravity.cs.meta │ │ │ ├── PlanetaryObject.cs │ │ │ ├── PlanetaryObject.cs.meta │ │ │ ├── PlanetaryWindController.cs │ │ │ ├── PlanetaryWindController.cs.meta │ │ │ ├── SpinPlanet.cs │ │ │ ├── SpinPlanet.cs.meta │ │ │ ├── Terraformer.cs │ │ │ └── Terraformer.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── HideScriptFieldInspector.cs │ │ │ ├── HideScriptFieldInspector.cs.meta │ │ │ ├── HierarchyIconFromInspector.cs │ │ │ ├── HierarchyIconFromInspector.cs.meta │ │ │ ├── Icons.meta │ │ │ └── Icons │ │ │ │ ├── Inspector.meta │ │ │ │ ├── Inspector │ │ │ │ ├── Planet Inspector Icon.png │ │ │ │ ├── Planet Inspector Icon.png.meta │ │ │ │ ├── Player Inspector Icon.png │ │ │ │ ├── Player Inspector Icon.png.meta │ │ │ │ ├── Settings Inspector Icon.png │ │ │ │ └── Settings Inspector Icon.png.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── Decoration Icon.png │ │ │ │ ├── Decoration Icon.png.meta │ │ │ │ ├── Gravity Icon.png │ │ │ │ ├── Gravity Icon.png.meta │ │ │ │ ├── Planet Icon.png │ │ │ │ ├── Planet Icon.png.meta │ │ │ │ ├── Planet Rotator Icon.png │ │ │ │ ├── Planet Rotator Icon.png.meta │ │ │ │ ├── Settings Icon.png │ │ │ │ ├── Settings Icon.png.meta │ │ │ │ ├── Sun Rotator Icon.png │ │ │ │ ├── Sun Rotator Icon.png.meta │ │ │ │ ├── Terraformer Icon.png │ │ │ │ ├── Terraformer Icon.png.meta │ │ │ │ ├── Wind Controller Icon.png │ │ │ │ └── Wind Controller Icon.png.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Gray Scale 1.png │ │ │ ├── Gray Scale 1.png.meta │ │ │ ├── Planet Coulds.shader │ │ │ ├── Planet Coulds.shader.meta │ │ │ ├── Planet Shader.shader │ │ │ ├── Planet Shader.shader.meta │ │ │ ├── WireFrame.shader │ │ │ ├── WireFrame.shader.meta │ │ │ ├── colors.png │ │ │ └── colors.png.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Boxey.meta │ │ │ ├── Boxey │ │ │ │ ├── Cube.prefab │ │ │ │ ├── Cube.prefab.meta │ │ │ │ ├── Grass.prefab │ │ │ │ ├── Grass.prefab.meta │ │ │ │ ├── Node Prefab.prefab │ │ │ │ ├── Node Prefab.prefab.meta │ │ │ │ ├── Sun.mat │ │ │ │ ├── Sun.mat.meta │ │ │ │ ├── Wire Material.mat │ │ │ │ └── Wire Material.mat.meta │ │ │ ├── Computes.meta │ │ │ └── Computes │ │ │ │ ├── FastNoiseLite.hlsl │ │ │ │ ├── FastNoiseLite.hlsl.meta │ │ │ │ ├── FoliageCompute.compute │ │ │ │ ├── FoliageCompute.compute.meta │ │ │ │ ├── PlanetNoise.compute │ │ │ │ └── PlanetNoise.compute.meta │ │ ├── Static.meta │ │ └── Static │ │ │ ├── ComputeShader.txt │ │ │ ├── ComputeShader.txt.meta │ │ │ ├── Helpers.cs │ │ │ ├── Helpers.cs.meta │ │ │ ├── JobManager.cs │ │ │ ├── JobManager.cs.meta │ │ │ ├── UpdateCalls.cs │ │ │ ├── UpdateCalls.cs.meta │ │ │ ├── VoxelJobs.cs │ │ │ ├── VoxelJobs.cs.meta │ │ │ ├── VoxelTables.cs │ │ │ └── VoxelTables.cs.meta │ │ ├── Extras.meta │ │ └── Extras │ │ ├── Logo.png │ │ ├── Logo.png.meta │ │ ├── Planet Settings.meta │ │ ├── Planet Settings │ │ ├── Mountains.asset │ │ ├── Mountains.asset.meta │ │ ├── Normal.asset │ │ ├── Normal.asset.meta │ │ ├── P1.meta │ │ ├── P1 │ │ │ ├── Atmosphere Profile.asset │ │ │ ├── Atmosphere Profile.asset.meta │ │ │ ├── P1 Clouds.mat │ │ │ ├── P1 Clouds.mat.meta │ │ │ ├── P1 Surface.mat │ │ │ ├── P1 Surface.mat.meta │ │ │ ├── Planet.asset │ │ │ └── Planet.asset.meta │ │ ├── P2.meta │ │ ├── P2 │ │ │ ├── Atmosphere Profile 2.asset │ │ │ ├── Atmosphere Profile 2.asset.meta │ │ │ ├── P2 Surface.mat │ │ │ ├── P2 Surface.mat.meta │ │ │ ├── Planet 2.asset │ │ │ └── Planet 2.asset.meta │ │ ├── Plat.asset │ │ ├── Plat.asset.meta │ │ ├── Test.meta │ │ └── Test │ │ │ ├── Atmosphere Profile.asset │ │ │ ├── Atmosphere Profile.asset.meta │ │ │ ├── Test Planet.asset │ │ │ ├── Test Planet.asset.meta │ │ │ ├── Test Surface.mat │ │ │ └── Test Surface.mat.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ ├── Demo Scene.unity │ │ ├── Demo Scene.unity.meta │ │ ├── ExampleScene.meta │ │ ├── ExampleScene │ │ │ ├── LightingData.asset │ │ │ ├── LightingData.asset.meta │ │ │ ├── ReflectionProbe-0.exr │ │ │ ├── ReflectionProbe-0.exr.meta │ │ │ ├── ReflectionProbe-1.exr │ │ │ ├── ReflectionProbe-1.exr.meta │ │ │ ├── Sun Light Lens Flare (SRP).asset │ │ │ └── Sun Light Lens Flare (SRP).asset.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ │ ├── SampleSceneProfile.asset │ │ │ ├── SampleSceneProfile.asset.meta │ │ │ ├── URP-Balanced-Renderer.asset │ │ │ ├── URP-Balanced-Renderer.asset.meta │ │ │ ├── URP-Balanced.asset │ │ │ ├── URP-Balanced.asset.meta │ │ │ ├── URP-HighFidelity-Renderer.asset │ │ │ ├── URP-HighFidelity-Renderer.asset.meta │ │ │ ├── URP-HighFidelity.asset │ │ │ ├── URP-HighFidelity.asset.meta │ │ │ ├── URP-Performant-Renderer.asset │ │ │ ├── URP-Performant-Renderer.asset.meta │ │ │ ├── URP-Performant.asset │ │ │ ├── URP-Performant.asset.meta │ │ │ ├── UniversalRenderPipelineGlobalSettings.asset │ │ │ └── UniversalRenderPipelineGlobalSettings.asset.meta │ │ ├── VolumeProfile.preset │ │ └── VolumeProfile.preset.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ ├── Movement.meta │ │ └── Movement │ │ │ ├── CameraMovement.cs │ │ │ ├── CameraMovement.cs.meta │ │ │ ├── PlayerMovement.cs │ │ │ └── PlayerMovement.cs.meta │ │ ├── Skybox.meta │ │ └── Skybox │ │ ├── Skybox2_8.mat │ │ ├── Skybox2_8.mat.meta │ │ ├── SkyboxX+.png │ │ ├── SkyboxX+.png.meta │ │ ├── SkyboxX-.png │ │ ├── SkyboxX-.png.meta │ │ ├── SkyboxY+.png │ │ ├── SkyboxY+.png.meta │ │ ├── SkyboxY-.png │ │ ├── SkyboxY-.png.meta │ │ ├── SkyboxZ+.png │ │ ├── SkyboxZ+.png.meta │ │ ├── SkyboxZ-.png │ │ └── SkyboxZ-.png.meta ├── Plugins.meta └── Plugins │ ├── Graphy - Ultimate Stats Monitor.meta │ ├── Graphy - Ultimate Stats Monitor │ ├── Changelog.txt │ ├── Changelog.txt.meta │ ├── Editor.meta │ ├── Editor │ │ ├── GraphyDebuggerEditor.cs │ │ ├── GraphyDebuggerEditor.cs.meta │ │ ├── GraphyEditorStyle.cs │ │ ├── GraphyEditorStyle.cs.meta │ │ ├── GraphyManagerEditor.cs │ │ ├── GraphyManagerEditor.cs.meta │ │ ├── GraphyMenuItem.cs │ │ ├── GraphyMenuItem.cs.meta │ │ ├── Tayx.Graphy.Editor.asmdef │ │ └── Tayx.Graphy.Editor.asmdef.meta │ ├── Font.meta │ ├── Font │ │ ├── Northwest-Bold.meta │ │ ├── Northwest-Bold │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta │ │ │ ├── NORTHWEST-B.otf │ │ │ └── NORTHWEST-B.otf.meta │ │ ├── Roboto.meta │ │ └── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ ├── Roboto-Regular.ttf │ │ │ └── Roboto-Regular.ttf.meta │ ├── GUI.meta │ ├── GUI │ │ ├── GraphyGUISkin.guiskin │ │ └── GraphyGUISkin.guiskin.meta │ ├── Graphy_CustomizationScene.unitypackage.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Audio_Spectrum_Graph.mat │ │ ├── Audio_Spectrum_Graph.mat.meta │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat.meta │ │ ├── FPS_Graph.mat │ │ ├── FPS_Graph.mat.meta │ │ ├── RAM_Allocated_Graph.mat │ │ ├── RAM_Allocated_Graph.mat.meta │ │ ├── RAM_Mono_Graph.mat │ │ ├── RAM_Mono_Graph.mat.meta │ │ ├── RAM_Reserved_Graph.mat │ │ └── RAM_Reserved_Graph.mat.meta │ ├── Prefab.meta │ ├── Prefab │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── ADVANCED - Module.prefab │ │ │ ├── ADVANCED - Module.prefab.meta │ │ │ ├── AUDIO - Module.prefab │ │ │ ├── AUDIO - Module.prefab.meta │ │ │ ├── FPS - Module.prefab │ │ │ ├── FPS - Module.prefab.meta │ │ │ ├── RAM - Module.prefab │ │ │ └── RAM - Module.prefab.meta │ │ ├── [Graphy] VR.prefab │ │ ├── [Graphy] VR.prefab.meta │ │ ├── [Graphy].prefab │ │ └── [Graphy].prefab.meta │ ├── README.md │ ├── README.md.meta │ ├── Readme! - Graphy - Documentation.pdf │ ├── Readme! - Graphy - Documentation.pdf.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Advanced.meta │ │ ├── Advanced │ │ │ ├── G_AdvancedData.cs │ │ │ └── G_AdvancedData.cs.meta │ │ ├── Audio.meta │ │ ├── Audio │ │ │ ├── G_AudioGraph.cs │ │ │ ├── G_AudioGraph.cs.meta │ │ │ ├── G_AudioManager.cs │ │ │ ├── G_AudioManager.cs.meta │ │ │ ├── G_AudioMonitor.cs │ │ │ ├── G_AudioMonitor.cs.meta │ │ │ ├── G_AudioText.cs │ │ │ └── G_AudioText.cs.meta │ │ ├── Fps.meta │ │ ├── Fps │ │ │ ├── G_FpsGraph.cs │ │ │ ├── G_FpsGraph.cs.meta │ │ │ ├── G_FpsManager.cs │ │ │ ├── G_FpsManager.cs.meta │ │ │ ├── G_FpsMonitor.cs │ │ │ ├── G_FpsMonitor.cs.meta │ │ │ ├── G_FpsText.cs │ │ │ └── G_FpsText.cs.meta │ │ ├── Graph.meta │ │ ├── Graph │ │ │ ├── G_Graph.cs │ │ │ └── G_Graph.cs.meta │ │ ├── GraphyDebugger.cs │ │ ├── GraphyDebugger.cs.meta │ │ ├── GraphyManager.cs │ │ ├── GraphyManager.cs.meta │ │ ├── Ram.meta │ │ ├── Ram │ │ │ ├── G_RamGraph.cs │ │ │ ├── G_RamGraph.cs.meta │ │ │ ├── G_RamManager.cs │ │ │ ├── G_RamManager.cs.meta │ │ │ ├── G_RamMonitor.cs │ │ │ ├── G_RamMonitor.cs.meta │ │ │ ├── G_RamText.cs │ │ │ └── G_RamText.cs.meta │ │ ├── Shader.meta │ │ ├── Shader │ │ │ ├── G_GraphShader.cs │ │ │ └── G_GraphShader.cs.meta │ │ ├── Tayx.Graphy.asmdef │ │ ├── Tayx.Graphy.asmdef.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── G_SafeArea.cs │ │ │ ├── G_SafeArea.cs.meta │ │ │ ├── IModifiableState.cs │ │ │ ├── IModifiableState.cs.meta │ │ │ ├── IMovable.cs │ │ │ └── IMovable.cs.meta │ │ ├── Util.meta │ │ └── Util │ │ │ ├── G_ExtensionMethods.cs │ │ │ ├── G_ExtensionMethods.cs.meta │ │ │ ├── G_FloatString.cs │ │ │ ├── G_FloatString.cs.meta │ │ │ ├── G_Intstring.cs │ │ │ ├── G_Intstring.cs.meta │ │ │ ├── G_Singleton.cs │ │ │ └── G_Singleton.cs.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── GraphMobile.shader │ │ ├── GraphMobile.shader.meta │ │ ├── GraphStandard.shader │ │ └── GraphStandard.shader.meta │ ├── Textures.meta │ ├── Textures │ │ ├── 2x2_Texture.png │ │ ├── 2x2_Texture.png.meta │ │ ├── Debugger_Logo_Dark.png │ │ ├── Debugger_Logo_Dark.png.meta │ │ ├── Debugger_Logo_White.png │ │ ├── Debugger_Logo_White.png.meta │ │ ├── Manager_Logo_Dark.png │ │ ├── Manager_Logo_Dark.png.meta │ │ ├── Manager_Logo_White.png │ │ ├── Manager_Logo_White.png.meta │ │ ├── Rounded_Rect_10px.png │ │ └── Rounded_Rect_10px.png.meta │ ├── package.json │ └── package.json.meta │ ├── Packages.meta │ ├── Packages │ ├── Point-Grass-Renderer.meta │ └── Point-Grass-Renderer │ │ ├── Point Grass Renderer - Documentation.pdf │ │ ├── Point Grass Renderer - Documentation.pdf.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ ├── Demo.meta │ │ ├── Demo │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── PGDemo_Base.mat │ │ │ ├── PGDemo_Base.mat.meta │ │ │ ├── PGDemo_BaseGrass.mat │ │ │ ├── PGDemo_BaseGrass.mat.meta │ │ │ ├── PGDemo_Blade.mat │ │ │ ├── PGDemo_Blade.mat.meta │ │ │ ├── PGDemo_MeshBlades.mat │ │ │ ├── PGDemo_MeshBlades.mat.meta │ │ │ ├── PGDemo_MeshBlades_Brightened.mat │ │ │ ├── PGDemo_MeshBlades_Brightened.mat.meta │ │ │ ├── PGDemo_MeshBlades_Coloured.mat │ │ │ └── PGDemo_MeshBlades_Coloured.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── PointGrass_EXAMPLE_Models.fbx │ │ │ ├── PointGrass_EXAMPLE_Models.fbx.meta │ │ │ ├── PointGrass_EXAMPLE_ProjectorModels.fbx │ │ │ ├── PointGrass_EXAMPLE_ProjectorModels.fbx.meta │ │ │ ├── PointGrass_EXAMPLE_SurfaceModels.fbx │ │ │ └── PointGrass_EXAMPLE_SurfaceModels.fbx.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Ground Textures.meta │ │ │ ├── Ground Textures │ │ │ ├── PG_EXAMPLE_Dirt.png │ │ │ ├── PG_EXAMPLE_Dirt.png.meta │ │ │ ├── PG_EXAMPLE_Grass.png │ │ │ ├── PG_EXAMPLE_Grass.png.meta │ │ │ ├── PG_EXAMPLE_Sand.png │ │ │ └── PG_EXAMPLE_Sand.png.meta │ │ │ ├── PG_EXAMPLE_Models_Albedo.png │ │ │ ├── PG_EXAMPLE_Models_Albedo.png.meta │ │ │ ├── PG_EXAMPLE_TuftMask.png │ │ │ └── PG_EXAMPLE_TuftMask.png.meta │ │ ├── Shaders.meta │ │ └── Shaders │ │ ├── Include Files.meta │ │ ├── Include Files │ │ ├── PG_AlignedVectorMatrix.hlsl │ │ ├── PG_AlignedVectorMatrix.hlsl.meta │ │ ├── PG_DisplacementInclude.hlsl │ │ ├── PG_DisplacementInclude.hlsl.meta │ │ ├── PG_MeshBuilding.hlsl │ │ ├── PG_MeshBuilding.hlsl.meta │ │ ├── PG_ProceduralInclude.hlsl │ │ ├── PG_ProceduralInclude.hlsl.meta │ │ ├── PG_RetrieveProceduralData.hlsl │ │ ├── PG_RetrieveProceduralData.hlsl.meta │ │ ├── PG_SimplexNoise.hlsl │ │ └── PG_SimplexNoise.hlsl.meta │ │ ├── PointGrass_SHAD.shadergraph │ │ ├── PointGrass_SHAD.shadergraph.meta │ │ ├── Subgraphs.meta │ │ └── Subgraphs │ │ ├── PG_BladeVertOffset.shadersubgraph │ │ ├── PG_BladeVertOffset.shadersubgraph.meta │ │ ├── PG_CalculateBladeNormal.shadersubgraph │ │ ├── PG_CalculateBladeNormal.shadersubgraph.meta │ │ ├── PG_CalculateObjDisplacements.shadersubgraph │ │ ├── PG_CalculateObjDisplacements.shadersubgraph.meta │ │ ├── PG_MeshTransformation.shadersubgraph │ │ ├── PG_MeshTransformation.shadersubgraph.meta │ │ ├── PG_RetrieveProceduralInstanceData.shadersubgraph │ │ ├── PG_RetrieveProceduralInstanceData.shadersubgraph.meta │ │ ├── PG_SampleAlbedo.shadersubgraph │ │ ├── PG_SampleAlbedo.shadersubgraph.meta │ │ ├── PG_SimplexNoise.shadersubgraph │ │ ├── PG_SimplexNoise.shadersubgraph.meta │ │ ├── PG_UnpackWind.shadersubgraph │ │ ├── PG_UnpackWind.shadersubgraph.meta │ │ ├── PG_VertexCommon.shadersubgraph │ │ ├── PG_VertexCommon.shadersubgraph.meta │ │ ├── PG_Wind.shadersubgraph │ │ └── PG_Wind.shadersubgraph.meta │ ├── TextMesh Pro.meta │ └── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ ├── TextMesh Pro User Guide 2016.pdf │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ ├── LiberationSans - OFL.txt │ ├── LiberationSans - OFL.txt.meta │ ├── LiberationSans.ttf │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ ├── Fonts & Materials.meta │ ├── Fonts & Materials │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ ├── LiberationSans SDF - Fallback.asset │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ ├── LiberationSans SDF - Outline.mat │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ ├── LiberationSans SDF.asset │ │ └── LiberationSans SDF.asset.meta │ ├── LineBreaking Following Characters.txt │ ├── LineBreaking Following Characters.txt.meta │ ├── LineBreaking Leading Characters.txt │ ├── LineBreaking Leading Characters.txt.meta │ ├── Sprite Assets.meta │ ├── Sprite Assets │ │ ├── EmojiOne.asset │ │ └── EmojiOne.asset.meta │ ├── Style Sheets.meta │ ├── Style Sheets │ │ ├── Default Style Sheet.asset │ │ └── Default Style Sheet.asset.meta │ ├── TMP Settings.asset │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ ├── TMP_Bitmap-Custom-Atlas.shader │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ ├── TMP_Bitmap-Mobile.shader │ ├── TMP_Bitmap-Mobile.shader.meta │ ├── TMP_Bitmap.shader │ ├── TMP_Bitmap.shader.meta │ ├── TMP_SDF Overlay.shader │ ├── TMP_SDF Overlay.shader.meta │ ├── TMP_SDF SSD.shader │ ├── TMP_SDF SSD.shader.meta │ ├── TMP_SDF-Mobile Masking.shader │ ├── TMP_SDF-Mobile Masking.shader.meta │ ├── TMP_SDF-Mobile Overlay.shader │ ├── TMP_SDF-Mobile Overlay.shader.meta │ ├── TMP_SDF-Mobile SSD.shader │ ├── TMP_SDF-Mobile SSD.shader.meta │ ├── TMP_SDF-Mobile.shader │ ├── TMP_SDF-Mobile.shader.meta │ ├── TMP_SDF-Surface-Mobile.shader │ ├── TMP_SDF-Surface-Mobile.shader.meta │ ├── TMP_SDF-Surface.shader │ ├── TMP_SDF-Surface.shader.meta │ ├── TMP_SDF.shader │ ├── TMP_SDF.shader.meta │ ├── TMP_Sprite.shader │ ├── TMP_Sprite.shader.meta │ ├── TMPro.cginc │ ├── TMPro.cginc.meta │ ├── TMPro_Mobile.cginc │ ├── TMPro_Mobile.cginc.meta │ ├── TMPro_Properties.cginc │ ├── TMPro_Properties.cginc.meta │ ├── TMPro_Surface.cginc │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ ├── EmojiOne Attribution.txt │ ├── EmojiOne Attribution.txt.meta │ ├── EmojiOne.json │ ├── EmojiOne.json.meta │ ├── EmojiOne.png │ └── EmojiOne.png.meta ├── CONTRIBUTING.md ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AmplifyShaderEditor.asset ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Assembly-CSharp/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Assembly-CSharp/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Assembly-CSharp/.idea/.name: -------------------------------------------------------------------------------- 1 | Assembly-CSharp -------------------------------------------------------------------------------- /.idea/.idea.Assembly-CSharp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Assembly-CSharp/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Assembly-CSharp/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Assembly-CSharp/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.Assembly-CSharp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Assembly-CSharp/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.Project PLANETS V2/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Project PLANETS V2/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Project PLANETS V2/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Project PLANETS V2/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Project PLANETS V2/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Project PLANETS V2/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.Project PLANETS V2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Project PLANETS V2/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.Unity-Planets/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Unity-Planets/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Unity-Planets/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Unity-Planets/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Unity-Planets/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Unity-Planets/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.Unity-Planets/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Unity-Planets/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/.idea.Unity-Planets/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.idea/.idea.Unity-Planets/.idea/vcs.xml -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/Boxey.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/ButtonDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/ButtonDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/ButtonDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/ButtonDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/EnumButtonDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/EnumButtonDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/EnumButtonDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/EnumButtonDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/FoldableInspectorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/FoldableInspectorAttribute.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/FoldableInspectorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 067c2297ea7f4b948b235b3987f34bef 3 | timeCreated: 1719123639 -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/LabelDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/LabelDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/LabelDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/LabelDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/LineDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/LineDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/LineDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/LineDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/OnChangedDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/OnChangedDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/OnChangedDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/OnChangedDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/RequiredDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/RequiredDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/RequiredDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/RequiredDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/ShowIfDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/ShowIfDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/ShowIfDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/ShowIfDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/ShowOnlyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/ShowOnlyDrawer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Attributes/ShowOnlyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Attributes/ShowOnlyDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Atmosphere.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Atmosphere.asmdef -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Atmosphere.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Atmosphere.asmdef.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/Atmosphere.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/Atmosphere.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/Atmosphere.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/Atmosphere.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereEffectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereEffectEditor.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereEffectEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereEffectEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereProfileEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereProfileEditor.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereProfileEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Editor/AtmosphereProfileEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/sinnwrig/URP-Atmosphere?tab=readme-ov-file -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/LINK.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/LINK.txt.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/DepthStack.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/DepthStack.asmdef -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/DepthStack.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/DepthStack.asmdef.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/Common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/Common.hlsl -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/Common.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/Common.hlsl.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/CompositeDepth.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/CompositeDepth.hlsl -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/CompositeDepth.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Includes/CompositeDepth.hlsl.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderFeature.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderFeature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderFeature.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderPass.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderPass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Scripts/DepthStackRenderPass.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/CopyDepth.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/CopyDepth.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/CopyDepth.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/CopyDepth.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/EncodeDepth.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/EncodeDepth.shader -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/EncodeDepth.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/DepthStack/Shader/EncodeDepth.shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereEffect.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereEffect.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereProfile.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereProfile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereProfile.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderFeature.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderFeature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderFeature.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderPass.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderPass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/AtmosphereRenderPass.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/BlitUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/BlitUtility.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/BlitUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Scripts/BlitUtility.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Atmosphere.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Atmosphere.shader -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Atmosphere.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Atmosphere.shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/BlueNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/BlueNoise.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/BlueNoise.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/BlueNoise.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Glow.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Glow.shader -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Glow.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Glow.shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Atmosphere.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Atmosphere.hlsl -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Atmosphere.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Atmosphere.hlsl.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Common.hlsl -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Common.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Common.hlsl.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Math.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Math.hlsl -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Math.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/Includes/Math.hlsl.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/OpticalDepth.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/OpticalDepth.compute -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/OpticalDepth.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/Atmosphere/Runtime/Shaders/OpticalDepth.compute.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/README.md -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/README.md.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/BasicGridWarp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/BasicGridWarp.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/BasicGridWarp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/BasicGridWarp.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalIndependent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalIndependent.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalIndependent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalIndependent.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalProgressive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalProgressive.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalProgressive.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpFractalProgressive.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpSingle.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpSingle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/DomainWarpSingle.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2ReducedWarp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2ReducedWarp.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2ReducedWarp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2ReducedWarp.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2Warp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2Warp.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2Warp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/DomainWarp/OpenSimplex2Warp.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalBillow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalBillow.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalBillow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalBillow.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalFBM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalFBM.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalFBM.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalFBM.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalPingPong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalPingPong.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalPingPong.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalPingPong.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalRiged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalRiged.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalRiged.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Fractal/FractalRiged.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalBillowDeriv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalBillowDeriv.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalBillowDeriv.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalBillowDeriv.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalFBMDeriv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalFBMDeriv.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalFBMDeriv.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalFBMDeriv.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalPingPongDeriv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalPingPongDeriv.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalPingPongDeriv.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalPingPongDeriv.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalRigedDeriv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalRigedDeriv.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalRigedDeriv.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/FractalDeriv/FractalRigedDeriv.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/IDomainWarp3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/IDomainWarp3D.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/IDomainWarp3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/IDomainWarp3D.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/INoise3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/INoise3D.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/INoise3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/INoise3D.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/NoiseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/NoiseExtensions.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/NoiseExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/NoiseExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Cellular3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Cellular3D.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Cellular3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Cellular3D.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2S.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2S.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2S.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/OpenSimplex2S.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Perlin3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Perlin3D.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Perlin3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Perlin3D.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Value3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Value3D.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Value3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/Value3D.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/ValueCubic3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/ValueCubic3D.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/ValueCubic3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Single/ValueCubic3D.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Unbegames.Noise.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Unbegames.Noise.asmdef -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Unbegames.Noise.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Unbegames.Noise.asmdef.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Utils.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Utils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Runtime/Utils.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Third Party Notices.md -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/Third Party Notices.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/Third Party Notices.md.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/package.json -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/3rd Party/noise/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/3rd Party/noise/package.json.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/Batcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/Batcher.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/Batcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cd223ce096847e69504ff4cef09ab36 3 | timeCreated: 1726441816 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/Node.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/Node.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/Node.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/NodeMarching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/NodeMarching.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/NodeMarching.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/NodeMarching.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/NoiseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/NoiseSettings.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/NoiseSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41edf3b302394a1aa720551cbc5bdea1 3 | timeCreated: 1725322401 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/PlanetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/PlanetData.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/PlanetData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/PlanetData.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Classes/Reporter.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Classes/Reporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e79c3ddfd86453c84338f02cd8f1c7b 3 | timeCreated: 1726279299 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/LightRotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/LightRotator.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/LightRotator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/LightRotator.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryDecoration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryDecoration.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryDecoration.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryDecoration.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryGravity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryGravity.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryGravity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryGravity.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryObject.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryObject.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryWindController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryWindController.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/PlanetaryWindController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/PlanetaryWindController.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/SpinPlanet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/SpinPlanet.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/SpinPlanet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/SpinPlanet.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/Terraformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/Terraformer.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Components/Terraformer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Components/Terraformer.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/HideScriptFieldInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/HideScriptFieldInspector.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/HideScriptFieldInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 422f5b2afd1c435b88bc21a5d695782a 3 | timeCreated: 1719771740 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/HierarchyIconFromInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/HierarchyIconFromInspector.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/HierarchyIconFromInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47f6a6872bd4447e81cc063e2321e67e 3 | timeCreated: 1725323511 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Planet Inspector Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Planet Inspector Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Planet Inspector Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Planet Inspector Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Player Inspector Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Player Inspector Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Player Inspector Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Player Inspector Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Settings Inspector Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Settings Inspector Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Settings Inspector Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Inspector/Settings Inspector Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Decoration Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Decoration Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Decoration Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Decoration Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Gravity Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Gravity Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Gravity Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Gravity Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Rotator Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Rotator Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Rotator Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Planet Rotator Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Settings Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Settings Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Settings Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Settings Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Sun Rotator Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Sun Rotator Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Sun Rotator Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Sun Rotator Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Terraformer Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Terraformer Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Terraformer Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Terraformer Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Wind Controller Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Wind Controller Icon.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Wind Controller Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Editor/Icons/Scripts/Wind Controller Icon.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/Gray Scale 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/Gray Scale 1.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/Gray Scale 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/Gray Scale 1.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/Planet Coulds.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/Planet Coulds.shader -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/Planet Coulds.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/Planet Coulds.shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/Planet Shader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/Planet Shader.shader -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/Planet Shader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/Planet Shader.shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/WireFrame.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/WireFrame.shader -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/WireFrame.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/WireFrame.shader.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/colors.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Materials/colors.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Materials/colors.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Cube.prefab -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Cube.prefab.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Grass.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Grass.prefab -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Grass.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Grass.prefab.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Node Prefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Node Prefab.prefab -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Node Prefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Node Prefab.prefab.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Sun.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Sun.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Sun.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Sun.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Wire Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Wire Material.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Boxey/Wire Material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Boxey/Wire Material.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes/FastNoiseLite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes/FastNoiseLite.hlsl -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes/FastNoiseLite.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes/FastNoiseLite.hlsl.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes/FoliageCompute.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes/FoliageCompute.compute -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes/FoliageCompute.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes/FoliageCompute.compute.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes/PlanetNoise.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes/PlanetNoise.compute -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Resources/Computes/PlanetNoise.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Resources/Computes/PlanetNoise.compute.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/ComputeShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/ComputeShader.txt -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/ComputeShader.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83cc81ab87f749de8945e322df7dca07 3 | timeCreated: 1726088504 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/Helpers.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/Helpers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/Helpers.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/JobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/JobManager.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/JobManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/JobManager.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/UpdateCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/UpdateCalls.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/UpdateCalls.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7762d89ad274401686162dbfd08808f5 3 | timeCreated: 1725322455 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/VoxelJobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/VoxelJobs.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/VoxelJobs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85f1dab56265415b928104c72316281f 3 | timeCreated: 1711650230 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/VoxelTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/VoxelTables.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Core/Static/VoxelTables.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Core/Static/VoxelTables.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Logo.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Logo.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Mountains.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Mountains.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Mountains.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Mountains.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Normal.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Normal.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Normal.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Normal.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/Atmosphere Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/Atmosphere Profile.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/Atmosphere Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/Atmosphere Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Clouds.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Clouds.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Clouds.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Clouds.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Surface.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Surface.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Surface.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/P1 Surface.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/Planet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/Planet.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P1/Planet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P1/Planet.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2/Atmosphere Profile 2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2/Atmosphere Profile 2.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2/Atmosphere Profile 2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2/Atmosphere Profile 2.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2/P2 Surface.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2/P2 Surface.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2/P2 Surface.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2/P2 Surface.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2/Planet 2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2/Planet 2.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/P2/Planet 2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/P2/Planet 2.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Plat.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Plat.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Plat.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Plat.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test/Atmosphere Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test/Atmosphere Profile.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test/Atmosphere Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test/Atmosphere Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Planet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Planet.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Planet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Planet.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Surface.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Surface.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Surface.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Planet Settings/Test/Test Surface.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Demo Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Demo Scene.unity -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Demo Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Demo Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/LightingData.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-1.exr -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-1.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/ReflectionProbe-1.exr.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/Sun Light Lens Flare (SRP).asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/Sun Light Lens Flare (SRP).asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/ExampleScene/Sun Light Lens Flare (SRP).asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/ExampleScene/Sun Light Lens Flare (SRP).asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/SampleSceneProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/SampleSceneProfile.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/SampleSceneProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced-Renderer.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Balanced.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity-Renderer.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-HighFidelity.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant-Renderer.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/URP-Performant.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/Settings/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/Settings/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/VolumeProfile.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/VolumeProfile.preset -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scenes/VolumeProfile.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scenes/VolumeProfile.preset.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scripts.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scripts/Movement.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scripts/Movement.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scripts/Movement/CameraMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scripts/Movement/CameraMovement.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scripts/Movement/CameraMovement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scripts/Movement/CameraMovement.cs.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scripts/Movement/PlayerMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Scripts/Movement/PlayerMovement.cs -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Scripts/Movement/PlayerMovement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d7888e3e36b43aa85cf75a84831af42 3 | timeCreated: 1719800511 -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/Skybox2_8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/Skybox2_8.mat -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/Skybox2_8.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/Skybox2_8.mat.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxX+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxX+.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxX+.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxX+.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxX-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxX-.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxX-.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxX-.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxY+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxY+.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxY+.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxY+.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxY-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxY-.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxY-.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxY-.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxZ+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxZ+.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxZ+.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxZ+.png.meta -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxZ-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxZ-.png -------------------------------------------------------------------------------- /Assets/Boxey/Planets/Extras/Skybox/SkyboxZ-.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Boxey/Planets/Extras/Skybox/SkyboxZ-.png.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Changelog.txt -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Changelog.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Changelog.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyDebuggerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyDebuggerEditor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyDebuggerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyDebuggerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyEditorStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyEditorStyle.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyEditorStyle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyEditorStyle.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyManagerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyManagerEditor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyManagerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyManagerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyMenuItem.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyMenuItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/GraphyMenuItem.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/Tayx.Graphy.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/Tayx.Graphy.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/Tayx.Graphy.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Editor/Tayx.Graphy.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/NORTHWEST-B.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/NORTHWEST-B.otf -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/NORTHWEST-B.otf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Northwest-Bold/NORTHWEST-B.otf.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Bold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Bold.ttf.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Font/Roboto/Roboto-Regular.ttf.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/GUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/GUI.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/GUI/GraphyGUISkin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/GUI/GraphyGUISkin.guiskin -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/GUI/GraphyGUISkin.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/GUI/GraphyGUISkin.guiskin.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Graphy_CustomizationScene.unitypackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Graphy_CustomizationScene.unitypackage.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/LICENSE -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/LICENSE.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Graph.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Graph.mat -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Graph.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Graph.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Highest_Values_Graph.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Highest_Values_Graph.mat -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Highest_Values_Graph.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/Audio_Spectrum_Highest_Values_Graph.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/FPS_Graph.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/FPS_Graph.mat -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/FPS_Graph.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/FPS_Graph.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Allocated_Graph.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Allocated_Graph.mat -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Allocated_Graph.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Allocated_Graph.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Mono_Graph.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Mono_Graph.mat -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Mono_Graph.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Mono_Graph.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Reserved_Graph.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Reserved_Graph.mat -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Reserved_Graph.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Materials/RAM_Reserved_Graph.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/ADVANCED - Module.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/ADVANCED - Module.prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/ADVANCED - Module.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/ADVANCED - Module.prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/AUDIO - Module.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/AUDIO - Module.prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/AUDIO - Module.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/AUDIO - Module.prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/FPS - Module.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/FPS - Module.prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/FPS - Module.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/FPS - Module.prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/RAM - Module.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/RAM - Module.prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/RAM - Module.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/Internal/RAM - Module.prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy] VR.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy] VR.prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy] VR.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy] VR.prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy].prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy].prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy].prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Prefab/[Graphy].prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/README.md -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/README.md.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Readme! - Graphy - Documentation.pdf.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Advanced.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Advanced.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Advanced/G_AdvancedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Advanced/G_AdvancedData.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Advanced/G_AdvancedData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Advanced/G_AdvancedData.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioGraph.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioGraph.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioMonitor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioText.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Audio/G_AudioText.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsGraph.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsGraph.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsMonitor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsText.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Fps/G_FpsText.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Graph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Graph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Graph/G_Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Graph/G_Graph.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Graph/G_Graph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Graph/G_Graph.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyDebugger.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyDebugger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyDebugger.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/GraphyManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamGraph.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamGraph.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamManager.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamManager.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamMonitor.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamText.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Ram/G_RamText.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Shader/G_GraphShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Shader/G_GraphShader.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Shader/G_GraphShader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Shader/G_GraphShader.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Tayx.Graphy.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Tayx.Graphy.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Tayx.Graphy.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Tayx.Graphy.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/G_SafeArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/G_SafeArea.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/G_SafeArea.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/G_SafeArea.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IModifiableState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IModifiableState.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IModifiableState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IModifiableState.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IMovable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IMovable.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IMovable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/UI/IMovable.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_ExtensionMethods.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_ExtensionMethods.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_ExtensionMethods.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_FloatString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_FloatString.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_FloatString.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_FloatString.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Intstring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Intstring.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Intstring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Intstring.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Singleton.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Singleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Runtime/Util/G_Singleton.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphMobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphMobile.shader -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphMobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphMobile.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphStandard.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphStandard.shader -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphStandard.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Shaders/GraphStandard.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/2x2_Texture.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_Dark.png -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_Dark.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_White.png -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_White.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Debugger_Logo_White.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_Dark.png -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_Dark.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_White.png -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_White.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Manager_Logo_White.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Rounded_Rect_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Rounded_Rect_10px.png -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Rounded_Rect_10px.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/Textures/Rounded_Rect_10px.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/package.json -------------------------------------------------------------------------------- /Assets/Plugins/Graphy - Ultimate Stats Monitor/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Graphy - Ultimate Stats Monitor/package.json.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Point Grass Renderer - Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Point Grass Renderer - Documentation.pdf -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Point Grass Renderer - Documentation.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Point Grass Renderer - Documentation.pdf.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Base.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Base.mat -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Base.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Base.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_BaseGrass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_BaseGrass.mat -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_BaseGrass.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_BaseGrass.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Blade.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Blade.mat -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Blade.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_Blade.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades.mat -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Brightened.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Brightened.mat -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Brightened.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Brightened.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Coloured.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Coloured.mat -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Coloured.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Materials/PGDemo_MeshBlades_Coloured.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_Models.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_Models.fbx -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_Models.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_Models.fbx.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_ProjectorModels.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_ProjectorModels.fbx -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_ProjectorModels.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_ProjectorModels.fbx.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_SurfaceModels.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_SurfaceModels.fbx -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_SurfaceModels.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Models/PointGrass_EXAMPLE_SurfaceModels.fbx.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Dirt.png -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Dirt.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Dirt.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Grass.png -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Grass.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Grass.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Sand.png -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Sand.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/Ground Textures/PG_EXAMPLE_Sand.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_Models_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_Models_Albedo.png -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_Models_Albedo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_Models_Albedo.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_TuftMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_TuftMask.png -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_TuftMask.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Demo/Textures/PG_EXAMPLE_TuftMask.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_AlignedVectorMatrix.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_AlignedVectorMatrix.hlsl -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_AlignedVectorMatrix.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_AlignedVectorMatrix.hlsl.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_DisplacementInclude.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_DisplacementInclude.hlsl -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_DisplacementInclude.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_DisplacementInclude.hlsl.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_MeshBuilding.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_MeshBuilding.hlsl -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_MeshBuilding.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_MeshBuilding.hlsl.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_ProceduralInclude.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_ProceduralInclude.hlsl -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_ProceduralInclude.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_ProceduralInclude.hlsl.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_RetrieveProceduralData.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_RetrieveProceduralData.hlsl -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_RetrieveProceduralData.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_RetrieveProceduralData.hlsl.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_SimplexNoise.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_SimplexNoise.hlsl -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_SimplexNoise.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Include Files/PG_SimplexNoise.hlsl.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/PointGrass_SHAD.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/PointGrass_SHAD.shadergraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/PointGrass_SHAD.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/PointGrass_SHAD.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_BladeVertOffset.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_BladeVertOffset.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_BladeVertOffset.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_BladeVertOffset.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateBladeNormal.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateBladeNormal.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateBladeNormal.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateBladeNormal.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateObjDisplacements.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateObjDisplacements.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateObjDisplacements.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_CalculateObjDisplacements.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_MeshTransformation.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_MeshTransformation.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_MeshTransformation.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_MeshTransformation.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_RetrieveProceduralInstanceData.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_RetrieveProceduralInstanceData.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_RetrieveProceduralInstanceData.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_RetrieveProceduralInstanceData.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SampleAlbedo.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SampleAlbedo.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SampleAlbedo.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SampleAlbedo.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SimplexNoise.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SimplexNoise.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SimplexNoise.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_SimplexNoise.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_UnpackWind.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_UnpackWind.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_UnpackWind.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_UnpackWind.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_VertexCommon.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_VertexCommon.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_VertexCommon.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_VertexCommon.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_Wind.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_Wind.shadersubgraph -------------------------------------------------------------------------------- /Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_Wind.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/Packages/Point-Grass-Renderer/Runtime/Shaders/Subgraphs/PG_Wind.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Assets/Plugins/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AmplifyShaderEditor.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/AmplifyShaderEditor.asset -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B0XEY/Unity-Planets/HEAD/README.md --------------------------------------------------------------------------------