├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── README.md ├── .gitignore ├── Assembly-CSharp-Editor.csproj ├── Assets ├── Blender.meta ├── Blender │ ├── Spaceship.fbx │ └── Spaceship.fbx.meta ├── Graphics.meta ├── Graphics │ ├── LW.asset │ ├── LW.asset.meta │ ├── Planet Mat.mat │ ├── Planet Mat.mat.meta │ ├── Planet.shadergraph │ ├── Planet.shadergraph.meta │ ├── Ship Mat.mat │ ├── Ship Mat.mat.meta │ ├── Ship.shadergraph │ └── Ship.shadergraph.meta ├── Lens Flares.meta ├── Lens Flares │ ├── 35mm Lens.flare │ ├── 35mm Lens.flare.meta │ ├── 6 Blade Aperture.flare │ ├── 6 Blade Aperture.flare.meta │ ├── 85mm Lens.flare │ ├── 85mm Lens.flare.meta │ ├── Art Assets.meta │ ├── Art Assets │ │ ├── 35mmflare.psd │ │ ├── 35mmflare.psd.meta │ │ ├── 85mmflare.psd │ │ ├── 85mmflare.psd.meta │ │ ├── cheap plastic.psd │ │ ├── cheap plastic.psd.meta │ │ ├── clearsun.psd │ │ ├── clearsun.psd.meta │ │ ├── concert.psd │ │ ├── concert.psd.meta │ │ ├── digicam.psd │ │ ├── digicam.psd.meta │ │ ├── halogen.psd │ │ ├── halogen.psd.meta │ │ ├── laser.psd │ │ ├── laser.psd.meta │ │ ├── spacesun.psd │ │ ├── spacesun.psd.meta │ │ ├── subtle.psd │ │ ├── subtle.psd.meta │ │ ├── weld.psd │ │ └── weld.psd.meta │ ├── Cheap Plastic Lens.flare │ ├── Cheap Plastic Lens.flare.meta │ ├── Cold Clear Sun.flare │ ├── Cold Clear Sun.flare.meta │ ├── Concert.flare │ ├── Concert.flare.meta │ ├── Digicam Lens.flare │ ├── Digicam Lens.flare.meta │ ├── Digital Camera.flare │ ├── Digital Camera.flare.meta │ ├── Halogen Bulb.flare │ ├── Halogen Bulb.flare.meta │ ├── Laser.flare │ ├── Laser.flare.meta │ ├── Subtle1.flare │ ├── Subtle1.flare.meta │ ├── Subtle2.flare │ ├── Subtle2.flare.meta │ ├── Subtle3.flare │ ├── Subtle3.flare.meta │ ├── Subtle4.flare │ ├── Subtle4.flare.meta │ ├── Sun (from space).flare │ ├── Sun (from space).flare.meta │ ├── Welding.flare │ └── Welding.flare.meta ├── Ove Melaa - Heaven Sings.mp3 ├── Ove Melaa - Heaven Sings.mp3.meta ├── Resources.meta ├── Resources │ ├── Materials.meta │ ├── Materials │ │ ├── Planet.mat │ │ ├── Planet.mat.meta │ │ ├── Player.mat │ │ ├── Player.mat.meta │ │ ├── Skybox.mat │ │ ├── Skybox.mat.meta │ │ ├── Terrain.mat │ │ └── Terrain.mat.meta │ ├── Physics Materials.meta │ ├── Physics Materials │ │ ├── Terrain.physicMaterial │ │ └── Terrain.physicMaterial.meta │ ├── Prefabs.meta │ └── Prefabs │ │ ├── Player.prefab │ │ └── Player.prefab.meta ├── Reticle.png ├── Reticle.png.meta ├── Scenes.meta ├── Scenes │ ├── Main.unity │ ├── Main.unity.meta │ ├── Main_Profiles.meta │ ├── Main_Profiles │ │ ├── Front Camera Profile.asset │ │ └── Front Camera Profile.asset.meta │ ├── Menu.unity │ └── Menu.unity.meta ├── Scripts.meta ├── Scripts │ ├── CameraFlightFollow.cs │ ├── CameraFlightFollow.cs.meta │ ├── CustomPointer.cs │ ├── CustomPointer.cs.meta │ ├── DebugManager.cs │ ├── DebugManager.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── ConditionalHidePropertyDrawer.cs │ │ ├── ConditionalHidePropertyDrawer.cs.meta │ │ ├── FlightSysEditor.cs │ │ ├── FlightSysEditor.cs.meta │ │ ├── ObjectBuilderEditor.cs │ │ ├── ObjectBuilderEditor.cs.meta │ │ ├── PlanetEditor.cs │ │ └── PlanetEditor.cs.meta │ ├── Ellipse.cs │ ├── Ellipse.cs.meta │ ├── MenuHandler.cs │ ├── MenuHandler.cs.meta │ ├── OrbitMotion.cs │ ├── OrbitMotion.cs.meta │ ├── Planet.meta │ ├── Planet │ │ ├── ColourGenerator.cs │ │ ├── ColourGenerator.cs.meta │ │ ├── ColourSettings.cs │ │ ├── ColourSettings.cs.meta │ │ ├── ConditionalHideAttribute.cs │ │ ├── ConditionalHideAttribute.cs.meta │ │ ├── INoiseFilter.cs │ │ ├── INoiseFilter.cs.meta │ │ ├── MinMax.cs │ │ ├── MinMax.cs.meta │ │ ├── Noise.cs │ │ ├── Noise.cs.meta │ │ ├── NoiseFilterFactory.cs │ │ ├── NoiseFilterFactory.cs.meta │ │ ├── NoiseSettings.cs │ │ ├── NoiseSettings.cs.meta │ │ ├── Planet.cs │ │ ├── Planet.cs.meta │ │ ├── RigidNoiseFilter.cs │ │ ├── RigidNoiseFilter.cs.meta │ │ ├── ShapeGenerator.cs │ │ ├── ShapeGenerator.cs.meta │ │ ├── ShapeSettings.cs │ │ ├── ShapeSettings.cs.meta │ │ ├── SimpleNoiseFilter.cs │ │ ├── SimpleNoiseFilter.cs.meta │ │ ├── TerrainFace.cs │ │ └── TerrainFace.cs.meta │ ├── Player.meta │ ├── Player │ │ ├── EngineEffect.cs │ │ ├── EngineEffect.cs.meta │ │ ├── Player.cs │ │ ├── Player.cs.meta │ │ ├── PlayerSettings.cs │ │ ├── PlayerSettings.cs.meta │ │ ├── SpaceshipController.cs │ │ └── SpaceshipController.cs.meta │ ├── Unused.meta │ └── Unused │ │ ├── CameraController.cs │ │ ├── CameraController.cs.meta │ │ ├── ChunkLoader.cs │ │ ├── ChunkLoader.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ ├── CubeMeshData.cs │ │ ├── CubeMeshData.cs.meta │ │ ├── NoiseData.cs │ │ ├── NoiseData.cs.meta │ │ ├── VoxelData.cs │ │ └── VoxelData.cs.meta │ │ ├── Procedural.meta │ │ ├── Procedural │ │ ├── ProceduralCube.cs │ │ ├── ProceduralCube.cs.meta │ │ ├── ProceduralCubeGrid.cs │ │ ├── ProceduralCubeGrid.cs.meta │ │ ├── ProceduralGrid.cs │ │ └── ProceduralGrid.cs.meta │ │ ├── RenderChunk.cs │ │ ├── RenderChunk.cs.meta │ │ ├── World.meta │ │ └── World │ │ ├── World.cs │ │ └── World.cs.meta ├── Settings.meta └── Settings │ ├── Colour.asset │ ├── Colour.asset.meta │ ├── Shape.asset │ └── Shape.asset.meta ├── LICENSE └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- 1 | ![Preview](https://i.gyazo.com/779ad37e142bf6fa269e34f462239c26.png) 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/.gitignore -------------------------------------------------------------------------------- /Assembly-CSharp-Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assembly-CSharp-Editor.csproj -------------------------------------------------------------------------------- /Assets/Blender.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Blender.meta -------------------------------------------------------------------------------- /Assets/Blender/Spaceship.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Blender/Spaceship.fbx -------------------------------------------------------------------------------- /Assets/Blender/Spaceship.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Blender/Spaceship.fbx.meta -------------------------------------------------------------------------------- /Assets/Graphics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics.meta -------------------------------------------------------------------------------- /Assets/Graphics/LW.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/LW.asset -------------------------------------------------------------------------------- /Assets/Graphics/LW.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/LW.asset.meta -------------------------------------------------------------------------------- /Assets/Graphics/Planet Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Planet Mat.mat -------------------------------------------------------------------------------- /Assets/Graphics/Planet Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Planet Mat.mat.meta -------------------------------------------------------------------------------- /Assets/Graphics/Planet.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Planet.shadergraph -------------------------------------------------------------------------------- /Assets/Graphics/Planet.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Planet.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Graphics/Ship Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Ship Mat.mat -------------------------------------------------------------------------------- /Assets/Graphics/Ship Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Ship Mat.mat.meta -------------------------------------------------------------------------------- /Assets/Graphics/Ship.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Ship.shadergraph -------------------------------------------------------------------------------- /Assets/Graphics/Ship.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Graphics/Ship.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Lens Flares.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/35mm Lens.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/35mm Lens.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/35mm Lens.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/35mm Lens.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/6 Blade Aperture.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/6 Blade Aperture.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/6 Blade Aperture.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/6 Blade Aperture.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/85mm Lens.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/85mm Lens.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/85mm Lens.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/85mm Lens.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/35mmflare.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/35mmflare.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/35mmflare.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/35mmflare.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/85mmflare.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/85mmflare.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/85mmflare.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/85mmflare.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/cheap plastic.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/cheap plastic.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/cheap plastic.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/cheap plastic.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/clearsun.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/clearsun.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/clearsun.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/clearsun.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/concert.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/concert.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/concert.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/concert.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/digicam.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/digicam.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/digicam.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/digicam.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/halogen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/halogen.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/halogen.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/halogen.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/laser.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/laser.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/laser.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/laser.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/spacesun.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/spacesun.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/spacesun.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/spacesun.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/subtle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/subtle.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/subtle.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/subtle.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/weld.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/weld.psd -------------------------------------------------------------------------------- /Assets/Lens Flares/Art Assets/weld.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Art Assets/weld.psd.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Cheap Plastic Lens.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Cheap Plastic Lens.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Cheap Plastic Lens.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Cheap Plastic Lens.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Cold Clear Sun.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Cold Clear Sun.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Cold Clear Sun.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Cold Clear Sun.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Concert.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Concert.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Concert.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Concert.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Digicam Lens.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Digicam Lens.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Digicam Lens.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Digicam Lens.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Digital Camera.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Digital Camera.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Digital Camera.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Digital Camera.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Halogen Bulb.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Halogen Bulb.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Halogen Bulb.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Halogen Bulb.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Laser.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Laser.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Laser.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Laser.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle1.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle1.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle1.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle1.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle2.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle2.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle2.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle2.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle3.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle3.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle3.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle3.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle4.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle4.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Subtle4.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Subtle4.flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Sun (from space).flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Sun (from space).flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Sun (from space).flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Sun (from space).flare.meta -------------------------------------------------------------------------------- /Assets/Lens Flares/Welding.flare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Welding.flare -------------------------------------------------------------------------------- /Assets/Lens Flares/Welding.flare.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Lens Flares/Welding.flare.meta -------------------------------------------------------------------------------- /Assets/Ove Melaa - Heaven Sings.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Ove Melaa - Heaven Sings.mp3 -------------------------------------------------------------------------------- /Assets/Ove Melaa - Heaven Sings.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Ove Melaa - Heaven Sings.mp3.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials.meta -------------------------------------------------------------------------------- /Assets/Resources/Materials/Planet.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Planet.mat -------------------------------------------------------------------------------- /Assets/Resources/Materials/Planet.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Planet.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Materials/Player.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Player.mat -------------------------------------------------------------------------------- /Assets/Resources/Materials/Player.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Player.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Materials/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Skybox.mat -------------------------------------------------------------------------------- /Assets/Resources/Materials/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Materials/Terrain.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Terrain.mat -------------------------------------------------------------------------------- /Assets/Resources/Materials/Terrain.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Materials/Terrain.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Physics Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Physics Materials.meta -------------------------------------------------------------------------------- /Assets/Resources/Physics Materials/Terrain.physicMaterial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Physics Materials/Terrain.physicMaterial -------------------------------------------------------------------------------- /Assets/Resources/Physics Materials/Terrain.physicMaterial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Physics Materials/Terrain.physicMaterial.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Prefabs/Player.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Resources/Prefabs/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/Reticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Reticle.png -------------------------------------------------------------------------------- /Assets/Reticle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Reticle.png.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main_Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Main_Profiles.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main_Profiles/Front Camera Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Main_Profiles/Front Camera Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Main_Profiles/Front Camera Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Main_Profiles/Front Camera Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Menu.unity -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scenes/Menu.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/CameraFlightFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/CameraFlightFollow.cs -------------------------------------------------------------------------------- /Assets/Scripts/CameraFlightFollow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/CameraFlightFollow.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/CustomPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/CustomPointer.cs -------------------------------------------------------------------------------- /Assets/Scripts/CustomPointer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/CustomPointer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/DebugManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/DebugManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/DebugManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/DebugManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/ConditionalHidePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/ConditionalHidePropertyDrawer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/ConditionalHidePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/ConditionalHidePropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/FlightSysEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/FlightSysEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/FlightSysEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/FlightSysEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/ObjectBuilderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/ObjectBuilderEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/ObjectBuilderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/ObjectBuilderEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PlanetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/PlanetEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PlanetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Editor/PlanetEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Ellipse.cs -------------------------------------------------------------------------------- /Assets/Scripts/Ellipse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Ellipse.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/MenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/MenuHandler.cs -------------------------------------------------------------------------------- /Assets/Scripts/MenuHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/MenuHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/OrbitMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/OrbitMotion.cs -------------------------------------------------------------------------------- /Assets/Scripts/OrbitMotion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/OrbitMotion.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ColourGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ColourGenerator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ColourGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ColourGenerator.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ColourSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ColourSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ColourSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ColourSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ConditionalHideAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ConditionalHideAttribute.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ConditionalHideAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ConditionalHideAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/INoiseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/INoiseFilter.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/INoiseFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/INoiseFilter.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/MinMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/MinMax.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/MinMax.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/MinMax.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/Noise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/Noise.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/Noise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/Noise.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/NoiseFilterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/NoiseFilterFactory.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/NoiseFilterFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/NoiseFilterFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/NoiseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/NoiseSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/NoiseSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/NoiseSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/Planet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/Planet.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/Planet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/Planet.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/RigidNoiseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/RigidNoiseFilter.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/RigidNoiseFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/RigidNoiseFilter.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ShapeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ShapeGenerator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ShapeGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ShapeGenerator.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ShapeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ShapeSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/ShapeSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/ShapeSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/SimpleNoiseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/SimpleNoiseFilter.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/SimpleNoiseFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/SimpleNoiseFilter.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Planet/TerrainFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/TerrainFace.cs -------------------------------------------------------------------------------- /Assets/Scripts/Planet/TerrainFace.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Planet/TerrainFace.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player.meta -------------------------------------------------------------------------------- /Assets/Scripts/Player/EngineEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/EngineEffect.cs -------------------------------------------------------------------------------- /Assets/Scripts/Player/EngineEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/EngineEffect.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Player/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/Player.cs -------------------------------------------------------------------------------- /Assets/Scripts/Player/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/Player.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Player/PlayerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/PlayerSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Player/PlayerSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/PlayerSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Player/SpaceshipController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/SpaceshipController.cs -------------------------------------------------------------------------------- /Assets/Scripts/Player/SpaceshipController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Player/SpaceshipController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/CameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/CameraController.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/CameraController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/CameraController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/ChunkLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/ChunkLoader.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/ChunkLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/ChunkLoader.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data/CubeMeshData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data/CubeMeshData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data/CubeMeshData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data/CubeMeshData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data/NoiseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data/NoiseData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data/NoiseData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data/NoiseData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data/VoxelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data/VoxelData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Data/VoxelData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Data/VoxelData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural/ProceduralCube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural/ProceduralCube.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural/ProceduralCube.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural/ProceduralCube.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural/ProceduralCubeGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural/ProceduralCubeGrid.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural/ProceduralCubeGrid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural/ProceduralCubeGrid.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural/ProceduralGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural/ProceduralGrid.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/Procedural/ProceduralGrid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/Procedural/ProceduralGrid.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/RenderChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/RenderChunk.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/RenderChunk.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/RenderChunk.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/World.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/World.meta -------------------------------------------------------------------------------- /Assets/Scripts/Unused/World/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/World/World.cs -------------------------------------------------------------------------------- /Assets/Scripts/Unused/World/World.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Scripts/Unused/World/World.cs.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/Colour.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Settings/Colour.asset -------------------------------------------------------------------------------- /Assets/Settings/Colour.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Settings/Colour.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/Shape.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Settings/Shape.asset -------------------------------------------------------------------------------- /Assets/Settings/Shape.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/Assets/Settings/Shape.asset.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valks-Games/Space-RPG-Game/HEAD/ProjectSettings/XRSettings.asset --------------------------------------------------------------------------------