├── .gitattributes ├── .gitignore ├── Assets ├── Earth.meta ├── Earth.unity ├── Earth.unity.meta ├── Earth │ ├── Earth.mat │ ├── Earth.mat.meta │ ├── Earth.metamesh │ ├── Earth.metamesh.meta │ ├── Earth.shadergraph │ ├── Earth.shadergraph.meta │ ├── EarthSunlightSetter.cs │ ├── EarthSunlightSetter.cs.meta │ ├── Textures.meta │ └── Textures │ │ ├── Earth Base.jpg │ │ ├── Earth Base.jpg.meta │ │ ├── Earth Bathymetry.jpg │ │ ├── Earth Bathymetry.jpg.meta │ │ ├── Earth Cloud.jpg │ │ ├── Earth Cloud.jpg.meta │ │ ├── Earth Lights.png │ │ ├── Earth Lights.png.meta │ │ ├── Earth Topography.png │ │ └── Earth Topography.png.meta ├── Moon.meta ├── Moon.unity ├── Moon.unity.meta └── Moon │ ├── Moon.mat │ ├── Moon.mat.meta │ ├── Moon.metamesh │ ├── Moon.metamesh.meta │ ├── Moon.shadergraph │ ├── Moon.shadergraph.meta │ ├── Textures.meta │ └── Textures │ ├── Moon Color.png │ ├── Moon Color.png.meta │ ├── Moon Normal.png │ └── Moon Normal.png.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── boot.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Earth.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth.meta -------------------------------------------------------------------------------- /Assets/Earth.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth.unity -------------------------------------------------------------------------------- /Assets/Earth.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth.unity.meta -------------------------------------------------------------------------------- /Assets/Earth/Earth.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Earth.mat -------------------------------------------------------------------------------- /Assets/Earth/Earth.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Earth.mat.meta -------------------------------------------------------------------------------- /Assets/Earth/Earth.metamesh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Earth/Earth.metamesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Earth.metamesh.meta -------------------------------------------------------------------------------- /Assets/Earth/Earth.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Earth.shadergraph -------------------------------------------------------------------------------- /Assets/Earth/Earth.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Earth.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Earth/EarthSunlightSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/EarthSunlightSetter.cs -------------------------------------------------------------------------------- /Assets/Earth/EarthSunlightSetter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/EarthSunlightSetter.cs.meta -------------------------------------------------------------------------------- /Assets/Earth/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures.meta -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Base.jpg -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Base.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Base.jpg.meta -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Bathymetry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Bathymetry.jpg -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Bathymetry.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Bathymetry.jpg.meta -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Cloud.jpg -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Cloud.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Cloud.jpg.meta -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Lights.png -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Lights.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Lights.png.meta -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Topography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Topography.png -------------------------------------------------------------------------------- /Assets/Earth/Textures/Earth Topography.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Earth/Textures/Earth Topography.png.meta -------------------------------------------------------------------------------- /Assets/Moon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon.meta -------------------------------------------------------------------------------- /Assets/Moon.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon.unity -------------------------------------------------------------------------------- /Assets/Moon.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon.unity.meta -------------------------------------------------------------------------------- /Assets/Moon/Moon.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Moon.mat -------------------------------------------------------------------------------- /Assets/Moon/Moon.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Moon.mat.meta -------------------------------------------------------------------------------- /Assets/Moon/Moon.metamesh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Moon/Moon.metamesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Moon.metamesh.meta -------------------------------------------------------------------------------- /Assets/Moon/Moon.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Moon.shadergraph -------------------------------------------------------------------------------- /Assets/Moon/Moon.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Moon.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Moon/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Textures.meta -------------------------------------------------------------------------------- /Assets/Moon/Textures/Moon Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Textures/Moon Color.png -------------------------------------------------------------------------------- /Assets/Moon/Textures/Moon Color.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Textures/Moon Color.png.meta -------------------------------------------------------------------------------- /Assets/Moon/Textures/Moon Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Textures/Moon Normal.png -------------------------------------------------------------------------------- /Assets/Moon/Textures/Moon Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Assets/Moon/Textures/Moon Normal.png.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/MoonAndEarth/HEAD/README.md --------------------------------------------------------------------------------