├── .gitignore ├── Assets ├── DefaultVolumeProfile.asset ├── DefaultVolumeProfile.asset.meta ├── GlobalEntitiesDependencies.meta ├── GlobalEntitiesDependencies │ ├── GlobalEntitySceneDependency.asset │ └── GlobalEntitySceneDependency.asset.meta ├── Materials.meta ├── Materials │ ├── Building.mat │ ├── Building.mat.meta │ ├── Laser.mat │ ├── Laser.mat.meta │ ├── Moon.mat │ ├── Moon.mat.meta │ ├── Planet.mat │ ├── Planet.mat.meta │ ├── Ship.mat │ ├── Ship.mat.meta │ ├── Sky.mat │ ├── Sky.mat.meta │ ├── Skybox.meta │ └── Skybox │ │ ├── Skybox.mat │ │ ├── Skybox.mat.meta │ │ ├── Skybox.shadergraph │ │ └── Skybox.shadergraph.meta ├── Models.meta ├── Models │ ├── Buildings.meta │ ├── Buildings │ │ ├── FactoryA.fbx │ │ ├── FactoryA.fbx.meta │ │ ├── ResearchA.fbx │ │ ├── ResearchA.fbx.meta │ │ ├── ResearchB.fbx │ │ ├── ResearchB.fbx.meta │ │ ├── ResearchC.fbx │ │ ├── ResearchC.fbx.meta │ │ ├── TurretA.fbx │ │ ├── TurretA.fbx.meta │ │ ├── TurretB.fbx │ │ └── TurretB.fbx.meta │ ├── Ships.meta │ ├── Ships │ │ ├── FighterA.fbx │ │ ├── FighterA.fbx.meta │ │ ├── FighterB.fbx │ │ ├── FighterB.fbx.meta │ │ ├── FighterC.fbx │ │ ├── FighterC.fbx.meta │ │ ├── TraderA.fbx │ │ ├── TraderA.fbx.meta │ │ ├── TraderB.fbx │ │ ├── TraderB.fbx.meta │ │ ├── WorkerA.fbx │ │ ├── WorkerA.fbx.meta │ │ ├── WorkerB.fbx │ │ └── WorkerB.fbx.meta │ ├── VFX.meta │ └── VFX │ │ ├── Laser.fbx │ │ ├── Laser.fbx.meta │ │ ├── Thruster.fbx │ │ └── Thruster.fbx.meta ├── Prefabs.meta ├── Prefabs │ ├── Buildings.meta │ ├── Buildings │ │ ├── FactoryA.prefab │ │ ├── FactoryA.prefab.meta │ │ ├── ResearchA.prefab │ │ ├── ResearchA.prefab.meta │ │ ├── ResearchB.prefab │ │ ├── ResearchB.prefab.meta │ │ ├── ResearchC.prefab │ │ ├── ResearchC.prefab.meta │ │ ├── TurretA.prefab │ │ ├── TurretA.prefab.meta │ │ ├── TurretB.prefab │ │ └── TurretB.prefab.meta │ ├── Config.prefab │ ├── Config.prefab.meta │ ├── GameCamera.prefab │ ├── GameCamera.prefab.meta │ ├── GameSceneObjects.prefab │ ├── GameSceneObjects.prefab.meta │ ├── Laser.prefab │ ├── Laser.prefab.meta │ ├── Moon.prefab │ ├── Moon.prefab.meta │ ├── Planet.prefab │ ├── Planet.prefab.meta │ ├── Ships.meta │ ├── Ships │ │ ├── FighterA.prefab │ │ ├── FighterA.prefab.meta │ │ ├── FighterB.prefab │ │ ├── FighterB.prefab.meta │ │ ├── FighterC.prefab │ │ ├── FighterC.prefab.meta │ │ ├── TraderA.prefab │ │ ├── TraderA.prefab.meta │ │ ├── TraderB.prefab │ │ ├── TraderB.prefab.meta │ │ ├── WorkerA.prefab │ │ ├── WorkerA.prefab.meta │ │ ├── WorkerB.prefab │ │ └── WorkerB.prefab.meta │ ├── SpatialDatabase.prefab │ ├── SpatialDatabase.prefab.meta │ ├── TeamManager.prefab │ ├── TeamManager.prefab.meta │ ├── TeamManagerReferences.prefab │ ├── TeamManagerReferences.prefab.meta │ ├── UI.meta │ └── UI │ │ ├── UI.prefab │ │ └── UI.prefab.meta ├── Resources.meta ├── Resources │ ├── UI.meta │ ├── UI │ │ ├── AdvancedStatsTeamTemplate.uxml │ │ ├── AdvancedStatsTeamTemplate.uxml.meta │ │ ├── FighterSettingsTemplate.uxml │ │ ├── FighterSettingsTemplate.uxml.meta │ │ ├── ShipSettingsTemplate.uxml │ │ ├── ShipSettingsTemplate.uxml.meta │ │ ├── TraderSettingsTemplate.uxml │ │ ├── TraderSettingsTemplate.uxml.meta │ │ ├── WorkerSettingsTemplate.uxml │ │ └── WorkerSettingsTemplate.uxml.meta │ ├── detailedVersion.txt │ └── detailedVersion.txt.meta ├── Scenes.meta ├── Scenes │ ├── Main.meta │ ├── Main.unity │ ├── Main.unity.meta │ └── Main │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── MainSubScene.unity │ │ ├── MainSubScene.unity.meta │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta ├── Scripts.meta ├── Scripts │ ├── ApplyTeamSystem.cs │ ├── ApplyTeamSystem.cs.meta │ ├── Authoring.meta │ ├── Authoring │ │ ├── ActorTypeAuthoring.cs │ │ ├── ActorTypeAuthoring.cs.meta │ │ ├── BlobAuthoring.meta │ │ ├── BlobAuthoring │ │ │ ├── BuildingDataObject.cs │ │ │ ├── BuildingDataObject.cs.meta │ │ │ ├── FighterDataObject.cs │ │ │ ├── FighterDataObject.cs.meta │ │ │ ├── ResearchDataObject.cs │ │ │ ├── ResearchDataObject.cs.meta │ │ │ ├── ShipDataObject.cs │ │ │ ├── ShipDataObject.cs.meta │ │ │ ├── TraderDataObject.cs │ │ │ ├── TraderDataObject.cs.meta │ │ │ ├── TurretDataObject.cs │ │ │ ├── TurretDataObject.cs.meta │ │ │ ├── TurretDataScriptableObject.cs │ │ │ ├── TurretDataScriptableObject.cs.meta │ │ │ ├── WorkerDataObject.cs │ │ │ └── WorkerDataObject.cs.meta │ │ ├── BuildingAuthoring.cs │ │ ├── BuildingAuthoring.cs.meta │ │ ├── ConfigAuthoring.cs │ │ ├── ConfigAuthoring.cs.meta │ │ ├── CopyEntityLocalTransformAsLtWAuthoring.cs │ │ ├── CopyEntityLocalTransformAsLtWAuthoring.cs.meta │ │ ├── EntityNameAuthoring.cs │ │ ├── EntityNameAuthoring.cs.meta │ │ ├── FactoryAuthoring.cs │ │ ├── FactoryAuthoring.cs.meta │ │ ├── FighterAuthoring.cs │ │ ├── FighterAuthoring.cs.meta │ │ ├── GameCameraAuthoring.cs │ │ ├── GameCameraAuthoring.cs.meta │ │ ├── HealthAuthoring.cs │ │ ├── HealthAuthoring.cs.meta │ │ ├── InitializableAuthoring.cs │ │ ├── InitializableAuthoring.cs.meta │ │ ├── LaserAuthoring.cs │ │ ├── LaserAuthoring.cs.meta │ │ ├── MoonAuthoring.cs │ │ ├── MoonAuthoring.cs.meta │ │ ├── PlanetAuthoring.cs │ │ ├── PlanetAuthoring.cs.meta │ │ ├── ResearchAuthoring.cs │ │ ├── ResearchAuthoring.cs.meta │ │ ├── ShipAuthoring.cs │ │ ├── ShipAuthoring.cs.meta │ │ ├── ShipTurretAuthoring.cs │ │ ├── ShipTurretAuthoring.cs.meta │ │ ├── TeamAuthoring.cs │ │ ├── TeamAuthoring.cs.meta │ │ ├── TeamManagerAuthoring.cs │ │ ├── TeamManagerAuthoring.cs.meta │ │ ├── TeamsSingletonAuthoring.cs │ │ ├── TeamsSingletonAuthoring.cs.meta │ │ ├── TraderAuthoring.cs │ │ ├── TraderAuthoring.cs.meta │ │ ├── TurretAuthoring.cs │ │ ├── TurretAuthoring.cs.meta │ │ ├── WorkerAuthoring.cs │ │ └── WorkerAuthoring.cs.meta │ ├── BeginSimulationMainThreadGroup.cs │ ├── BeginSimulationMainThreadGroup.cs.meta │ ├── BuildSpatialDatabasesSystem.cs │ ├── BuildSpatialDatabasesSystem.cs.meta │ ├── BuildingSystem.cs │ ├── BuildingSystem.cs.meta │ ├── Components.meta │ ├── Components │ │ ├── Actor.cs │ │ ├── Actor.cs.meta │ │ ├── Building.cs │ │ ├── Building.cs.meta │ │ ├── Config.cs │ │ ├── Config.cs.meta │ │ ├── CopyTransform.cs │ │ ├── CopyTransform.cs.meta │ │ ├── Game.cs │ │ ├── Game.cs.meta │ │ ├── GameCamera.cs │ │ ├── GameCamera.cs.meta │ │ ├── Health.cs │ │ ├── Health.cs.meta │ │ ├── Laser.cs │ │ ├── Laser.cs.meta │ │ ├── MainCamera.cs │ │ ├── MainCamera.cs.meta │ │ ├── Moon.cs │ │ ├── Moon.cs.meta │ │ ├── Planet.cs │ │ ├── Planet.cs.meta │ │ ├── Ship.cs │ │ ├── Ship.cs.meta │ │ ├── StatsData.cs │ │ ├── StatsData.cs.meta │ │ ├── Team.cs │ │ └── Team.cs.meta │ ├── CopyEntityLocalTransformAsLtWSystem.cs │ ├── CopyEntityLocalTransformAsLtWSystem.cs.meta │ ├── DeathSystem.cs │ ├── DeathSystem.cs.meta │ ├── FinishInitializeSystem.cs │ ├── FinishInitializeSystem.cs.meta │ ├── GameCameraSystem.cs │ ├── GameCameraSystem.cs.meta │ ├── GameInitializeSystem.cs │ ├── GameInitializeSystem.cs.meta │ ├── LaserSystem.cs │ ├── LaserSystem.cs.meta │ ├── MainCameraSystem.cs │ ├── MainCameraSystem.cs.meta │ ├── PlanetSelectionSystem.cs │ ├── PlanetSelectionSystem.cs.meta │ ├── PlanetSystem.cs │ ├── PlanetSystem.cs.meta │ ├── ShipSystem.cs │ ├── ShipSystem.cs.meta │ ├── SimulationRateSystem.cs │ ├── SimulationRateSystem.cs.meta │ ├── TeamAISystem.cs │ ├── TeamAISystem.cs.meta │ ├── UI.meta │ ├── UI │ │ ├── EventRegistry.cs │ │ ├── EventRegistry.cs.meta │ │ ├── Screens.meta │ │ ├── Screens │ │ │ ├── GameStatsScreen.cs │ │ │ ├── GameStatsScreen.cs.meta │ │ │ ├── HUDScreen.cs │ │ │ ├── HUDScreen.cs.meta │ │ │ ├── HomeScreen.cs │ │ │ ├── HomeScreen.cs.meta │ │ │ ├── PlanetStatsScreen.cs │ │ │ ├── PlanetStatsScreen.cs.meta │ │ │ ├── SettingsScreen.cs │ │ │ ├── SettingsScreen.cs.meta │ │ │ ├── SettingsSections.meta │ │ │ └── SettingsSections │ │ │ │ ├── FighterSettingsData.cs │ │ │ │ ├── FighterSettingsData.cs.meta │ │ │ │ ├── ShipSettingData.cs │ │ │ │ ├── ShipSettingData.cs.meta │ │ │ │ ├── TraderSettingsData.cs │ │ │ │ ├── TraderSettingsData.cs.meta │ │ │ │ ├── WorkerSettingsData.cs │ │ │ │ └── WorkerSettingsData.cs.meta │ │ ├── SimulationPresenter.cs │ │ ├── SimulationPresenter.cs.meta │ │ ├── TabMenu.cs │ │ ├── TabMenu.cs.meta │ │ ├── UIEvents.cs │ │ ├── UIEvents.cs.meta │ │ ├── UIInputPresenter.cs │ │ ├── UIInputPresenter.cs.meta │ │ ├── UIManager.cs │ │ ├── UIManager.cs.meta │ │ ├── UIRequests.cs │ │ ├── UIRequests.cs.meta │ │ ├── UIScreen.cs │ │ └── UIScreen.cs.meta │ ├── UISystem.cs │ ├── UISystem.cs.meta │ ├── Utilities.meta │ ├── Utilities │ │ ├── AIProcessor.cs │ │ ├── AIProcessor.cs.meta │ │ ├── BlobAuthoring.cs │ │ ├── BlobAuthoring.cs.meta │ │ ├── CursorUtils.cs │ │ ├── CursorUtils.cs.meta │ │ ├── GameUtilities.cs │ │ ├── GameUtilities.cs.meta │ │ ├── ManagedResources.cs │ │ ├── ManagedResources.cs.meta │ │ ├── MathUtilities.cs │ │ ├── MathUtilities.cs.meta │ │ ├── PlanetAssessmentCollector.cs │ │ ├── PlanetAssessmentCollector.cs.meta │ │ ├── PlanetNavigationGrid.cs │ │ ├── PlanetNavigationGrid.cs.meta │ │ ├── ShipQueryCollector.cs │ │ ├── ShipQueryCollector.cs.meta │ │ ├── SimulationDebug.cs │ │ ├── SimulationDebug.cs.meta │ │ ├── SpatialDatabase.meta │ │ └── SpatialDatabase │ │ │ ├── BuildSpatialDatabaseGroup.cs │ │ │ ├── BuildSpatialDatabaseGroup.cs.meta │ │ │ ├── ClearSpatialDatabaseSystem.cs │ │ │ ├── ClearSpatialDatabaseSystem.cs.meta │ │ │ ├── SpatialDatabase.cs │ │ │ ├── SpatialDatabase.cs.meta │ │ │ ├── SpatialDatabaseAuthoring.cs │ │ │ ├── SpatialDatabaseAuthoring.cs.meta │ │ │ ├── UniformOriginGrid.cs │ │ │ └── UniformOriginGrid.cs.meta │ ├── VFXSystem.cs │ └── VFXSystem.cs.meta ├── Settings.meta ├── Settings │ ├── Build Profiles.meta │ ├── Build Profiles │ │ ├── Windows_Dev.asset │ │ ├── Windows_Dev.asset.meta │ │ ├── Windows_Release.asset │ │ └── Windows_Release.asset.meta │ ├── Game.meta │ ├── Game │ │ ├── TurretData.asset │ │ └── TurretData.asset.meta │ ├── MainLightingSettings.lighting │ ├── MainLightingSettings.lighting.meta │ ├── Renderer.meta │ └── Renderer │ │ ├── SampleSceneProfile.asset │ │ ├── SampleSceneProfile.asset.meta │ │ ├── URP-Renderer.asset │ │ ├── URP-Renderer.asset.meta │ │ ├── URP-Settings.asset │ │ ├── URP-Settings.asset.meta │ │ ├── UniversalRenderPipelineGlobalSettings.asset │ │ └── UniversalRenderPipelineGlobalSettings.asset.meta ├── Textures.meta ├── Textures │ ├── UI.meta │ └── UI │ │ ├── ui-atlas.psd │ │ └── ui-atlas.psd.meta ├── UI.meta ├── UI │ ├── PanelSettings.asset │ ├── PanelSettings.asset.meta │ ├── UnityThemes.meta │ ├── UnityThemes │ │ ├── UnityDefaultRuntimeTheme.tss │ │ └── UnityDefaultRuntimeTheme.tss.meta │ ├── Uss.meta │ ├── Uss │ │ ├── Buttons.uss │ │ ├── Buttons.uss.meta │ │ ├── Common.uss │ │ ├── Common.uss.meta │ │ ├── Controls.uss │ │ ├── Controls.uss.meta │ │ ├── GameStats.uss │ │ ├── GameStats.uss.meta │ │ ├── Settings.uss │ │ ├── Settings.uss.meta │ │ ├── Stats.uss │ │ └── Stats.uss.meta │ ├── Uxml.meta │ └── Uxml │ │ ├── GameStatsScreen.uxml │ │ ├── GameStatsScreen.uxml.meta │ │ ├── HUD.uxml │ │ ├── HUD.uxml.meta │ │ ├── HomeScreen.uxml │ │ ├── HomeScreen.uxml.meta │ │ ├── PlanetStatsScreen.uxml │ │ ├── PlanetStatsScreen.uxml.meta │ │ ├── SettingScreen.uxml │ │ ├── SettingScreen.uxml.meta │ │ ├── UIScreens.uxml │ │ └── UIScreens.uxml.meta ├── UnityDefaultRuntimeTheme.tss ├── UnityDefaultRuntimeTheme.tss.meta ├── VFX.meta └── VFX │ ├── ExplosionsGraph.vfx │ ├── ExplosionsGraph.vfx.meta │ ├── HitSparksGraph.vfx │ ├── HitSparksGraph.vfx.meta │ ├── ShipThrustersGraph.vfx │ └── ShipThrustersGraph.vfx.meta ├── LICENSE.md ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_Android.json ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── EntitiesClientSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── _Documentation ├── Images ├── GalaxySample.gif ├── debug-fighter-actions.png ├── debug-planet-nav-grid.png ├── debug-planet-network.png ├── debug-ship-assessment.png ├── debug-spatial-database.png ├── debug-trader-actions.png ├── debug-worker-actions.png ├── factory-a.png ├── fighter-a.png ├── fighter-b.png ├── fighter-c.png ├── research-a.png ├── research-b.png ├── research-c.png ├── trader-a.png ├── trader-b.png ├── turret-a.png ├── turret-b.png ├── worker-a.png └── worker-b.png ├── code-overview.md ├── debug-views.md └── game-overview.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/DefaultVolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/DefaultVolumeProfile.asset -------------------------------------------------------------------------------- /Assets/DefaultVolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/DefaultVolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/GlobalEntitiesDependencies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/GlobalEntitiesDependencies.meta -------------------------------------------------------------------------------- /Assets/GlobalEntitiesDependencies/GlobalEntitySceneDependency.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/GlobalEntitiesDependencies/GlobalEntitySceneDependency.asset -------------------------------------------------------------------------------- /Assets/GlobalEntitiesDependencies/GlobalEntitySceneDependency.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/GlobalEntitiesDependencies/GlobalEntitySceneDependency.asset.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Building.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Building.mat -------------------------------------------------------------------------------- /Assets/Materials/Building.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Building.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Laser.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Laser.mat -------------------------------------------------------------------------------- /Assets/Materials/Laser.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Laser.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Moon.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Moon.mat -------------------------------------------------------------------------------- /Assets/Materials/Moon.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Moon.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Planet.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Planet.mat -------------------------------------------------------------------------------- /Assets/Materials/Planet.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Planet.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Ship.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Ship.mat -------------------------------------------------------------------------------- /Assets/Materials/Ship.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Ship.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Sky.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Sky.mat -------------------------------------------------------------------------------- /Assets/Materials/Sky.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Sky.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Skybox.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Skybox.meta -------------------------------------------------------------------------------- /Assets/Materials/Skybox/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Skybox/Skybox.mat -------------------------------------------------------------------------------- /Assets/Materials/Skybox/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Skybox/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Skybox/Skybox.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Skybox/Skybox.shadergraph -------------------------------------------------------------------------------- /Assets/Materials/Skybox/Skybox.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Materials/Skybox/Skybox.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings/FactoryA.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/FactoryA.fbx -------------------------------------------------------------------------------- /Assets/Models/Buildings/FactoryA.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/FactoryA.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings/ResearchA.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/ResearchA.fbx -------------------------------------------------------------------------------- /Assets/Models/Buildings/ResearchA.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/ResearchA.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings/ResearchB.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/ResearchB.fbx -------------------------------------------------------------------------------- /Assets/Models/Buildings/ResearchB.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/ResearchB.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings/ResearchC.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/ResearchC.fbx -------------------------------------------------------------------------------- /Assets/Models/Buildings/ResearchC.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/ResearchC.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings/TurretA.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/TurretA.fbx -------------------------------------------------------------------------------- /Assets/Models/Buildings/TurretA.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/TurretA.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Buildings/TurretB.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/TurretB.fbx -------------------------------------------------------------------------------- /Assets/Models/Buildings/TurretB.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Buildings/TurretB.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/FighterA.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/FighterA.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/FighterA.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/FighterA.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/FighterB.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/FighterB.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/FighterB.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/FighterB.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/FighterC.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/FighterC.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/FighterC.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/FighterC.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/TraderA.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/TraderA.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/TraderA.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/TraderA.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/TraderB.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/TraderB.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/TraderB.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/TraderB.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/WorkerA.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/WorkerA.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/WorkerA.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/WorkerA.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Ships/WorkerB.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/WorkerB.fbx -------------------------------------------------------------------------------- /Assets/Models/Ships/WorkerB.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/Ships/WorkerB.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/VFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/VFX.meta -------------------------------------------------------------------------------- /Assets/Models/VFX/Laser.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/VFX/Laser.fbx -------------------------------------------------------------------------------- /Assets/Models/VFX/Laser.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/VFX/Laser.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/VFX/Thruster.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/VFX/Thruster.fbx -------------------------------------------------------------------------------- /Assets/Models/VFX/Thruster.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Models/VFX/Thruster.fbx.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/FactoryA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/FactoryA.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/FactoryA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/FactoryA.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/ResearchA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/ResearchA.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/ResearchA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/ResearchA.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/ResearchB.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/ResearchB.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/ResearchB.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/ResearchB.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/ResearchC.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/ResearchC.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/ResearchC.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/ResearchC.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/TurretA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/TurretA.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/TurretA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/TurretA.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/TurretB.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/TurretB.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Buildings/TurretB.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Buildings/TurretB.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Config.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Config.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Config.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Config.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/GameCamera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/GameCamera.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/GameCamera.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/GameCamera.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/GameSceneObjects.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/GameSceneObjects.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/GameSceneObjects.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/GameSceneObjects.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Laser.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Laser.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Laser.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Laser.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Moon.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Moon.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Moon.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Moon.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Planet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Planet.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Planet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Planet.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/FighterA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/FighterA.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/FighterA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/FighterA.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/FighterB.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/FighterB.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/FighterB.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/FighterB.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/FighterC.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/FighterC.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/FighterC.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/FighterC.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/TraderA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/TraderA.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/TraderA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/TraderA.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/TraderB.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/TraderB.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/TraderB.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/TraderB.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/WorkerA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/WorkerA.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/WorkerA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/WorkerA.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/WorkerB.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/WorkerB.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Ships/WorkerB.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/Ships/WorkerB.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/SpatialDatabase.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/SpatialDatabase.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/SpatialDatabase.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/SpatialDatabase.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/TeamManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/TeamManager.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/TeamManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/TeamManager.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/TeamManagerReferences.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/TeamManagerReferences.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/TeamManagerReferences.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/TeamManagerReferences.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/UI.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UI/UI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/UI/UI.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/UI/UI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Prefabs/UI/UI.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/AdvancedStatsTeamTemplate.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/AdvancedStatsTeamTemplate.uxml -------------------------------------------------------------------------------- /Assets/Resources/UI/AdvancedStatsTeamTemplate.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/AdvancedStatsTeamTemplate.uxml.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/FighterSettingsTemplate.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/FighterSettingsTemplate.uxml -------------------------------------------------------------------------------- /Assets/Resources/UI/FighterSettingsTemplate.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/FighterSettingsTemplate.uxml.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/ShipSettingsTemplate.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/ShipSettingsTemplate.uxml -------------------------------------------------------------------------------- /Assets/Resources/UI/ShipSettingsTemplate.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/ShipSettingsTemplate.uxml.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/TraderSettingsTemplate.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/TraderSettingsTemplate.uxml -------------------------------------------------------------------------------- /Assets/Resources/UI/TraderSettingsTemplate.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/TraderSettingsTemplate.uxml.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/WorkerSettingsTemplate.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/WorkerSettingsTemplate.uxml -------------------------------------------------------------------------------- /Assets/Resources/UI/WorkerSettingsTemplate.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/UI/WorkerSettingsTemplate.uxml.meta -------------------------------------------------------------------------------- /Assets/Resources/detailedVersion.txt: -------------------------------------------------------------------------------- 1 | (4ff56b) 6000.0/release -------------------------------------------------------------------------------- /Assets/Resources/detailedVersion.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Resources/detailedVersion.txt.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main/LightingData.asset -------------------------------------------------------------------------------- /Assets/Scenes/Main/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main/MainSubScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main/MainSubScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main/MainSubScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main/MainSubScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Scenes/Main/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scenes/Main/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/ApplyTeamSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/ApplyTeamSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/ApplyTeamSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/ApplyTeamSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd44cd1cf07449a1b2c039344ab71fc0 3 | timeCreated: 1705897698 -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ActorTypeAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ActorTypeAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ActorTypeAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ActorTypeAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/BuildingDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/BuildingDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/BuildingDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/BuildingDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/FighterDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/FighterDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/FighterDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/FighterDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/ResearchDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/ResearchDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/ResearchDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/ResearchDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/ShipDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/ShipDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/ShipDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/ShipDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/TraderDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/TraderDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/TraderDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/TraderDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/TurretDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/TurretDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/TurretDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/TurretDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/TurretDataScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/TurretDataScriptableObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/TurretDataScriptableObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/TurretDataScriptableObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/WorkerDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/WorkerDataObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BlobAuthoring/WorkerDataObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BlobAuthoring/WorkerDataObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BuildingAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BuildingAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/BuildingAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/BuildingAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ConfigAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ConfigAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ConfigAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0a8396487f54196b5d24349929d2c1b 3 | timeCreated: 1705897759 -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/CopyEntityLocalTransformAsLtWAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/CopyEntityLocalTransformAsLtWAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/CopyEntityLocalTransformAsLtWAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 579c30a8885009a4e851ee7e850763ce -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/EntityNameAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/EntityNameAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/EntityNameAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/EntityNameAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/FactoryAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/FactoryAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/FactoryAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/FactoryAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/FighterAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/FighterAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/FighterAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4c9b7d66e024e8ea17a263c0ad3fd16 3 | timeCreated: 1707165572 -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/GameCameraAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/GameCameraAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/GameCameraAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/GameCameraAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/HealthAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/HealthAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/HealthAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/HealthAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/InitializableAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/InitializableAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/InitializableAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/InitializableAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/LaserAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/LaserAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/LaserAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/LaserAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/MoonAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/MoonAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/MoonAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/MoonAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/PlanetAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/PlanetAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/PlanetAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eff610e9a3e540ab850c8cc61daa8a5c 3 | timeCreated: 1705796285 -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ResearchAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ResearchAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ResearchAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ResearchAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ShipAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ShipAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ShipAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ShipAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ShipTurretAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ShipTurretAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/ShipTurretAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/ShipTurretAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TeamAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TeamAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TeamAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TeamAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TeamManagerAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TeamManagerAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TeamManagerAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TeamManagerAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TeamsSingletonAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TeamsSingletonAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TeamsSingletonAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TeamsSingletonAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TraderAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TraderAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TraderAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3d1d114cc92170468dfdcaa0e28d68c 3 | timeCreated: 1707165572 -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TurretAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TurretAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/TurretAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/TurretAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/WorkerAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Authoring/WorkerAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Authoring/WorkerAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af79804432ab4cad992bbeaa29d258c0 3 | timeCreated: 1706507547 -------------------------------------------------------------------------------- /Assets/Scripts/BeginSimulationMainThreadGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/BeginSimulationMainThreadGroup.cs -------------------------------------------------------------------------------- /Assets/Scripts/BeginSimulationMainThreadGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/BeginSimulationMainThreadGroup.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BuildSpatialDatabasesSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/BuildSpatialDatabasesSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/BuildSpatialDatabasesSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/BuildSpatialDatabasesSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BuildingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/BuildingSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/BuildingSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/BuildingSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Actor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Actor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Actor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Building.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Building.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Building.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Building.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Config.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Config.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Config.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/CopyTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/CopyTransform.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/CopyTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128beda613a7d244c840438cef1230bc -------------------------------------------------------------------------------- /Assets/Scripts/Components/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Game.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Game.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Game.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/GameCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/GameCamera.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/GameCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/GameCamera.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Health.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Health.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Health.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Health.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Laser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Laser.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Laser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Laser.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/MainCamera.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | public struct MainCamera : IComponentData 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /Assets/Scripts/Components/MainCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/MainCamera.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Moon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Moon.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Moon.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Moon.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Planet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Planet.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Planet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Planet.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/Ship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Ship.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Ship.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Ship.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Components/StatsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/StatsData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/StatsData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84604ee7297d43ffb82e5587dc3095cf 3 | timeCreated: 1708038309 -------------------------------------------------------------------------------- /Assets/Scripts/Components/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Team.cs -------------------------------------------------------------------------------- /Assets/Scripts/Components/Team.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Components/Team.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/CopyEntityLocalTransformAsLtWSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/CopyEntityLocalTransformAsLtWSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/CopyEntityLocalTransformAsLtWSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c29fa260de11c5647a5f80c503691e87 -------------------------------------------------------------------------------- /Assets/Scripts/DeathSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/DeathSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/DeathSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/DeathSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/FinishInitializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/FinishInitializeSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/FinishInitializeSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/FinishInitializeSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GameCameraSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/GameCameraSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/GameCameraSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/GameCameraSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GameInitializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/GameInitializeSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/GameInitializeSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f0ffed3a9b44e03a24e7413f80cd62f 3 | timeCreated: 1705899114 -------------------------------------------------------------------------------- /Assets/Scripts/LaserSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/LaserSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/LaserSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/LaserSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/MainCameraSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/MainCameraSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/MainCameraSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/MainCameraSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PlanetSelectionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/PlanetSelectionSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/PlanetSelectionSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c27792094fb4c9dba3cd8c649857764 3 | timeCreated: 1707842222 -------------------------------------------------------------------------------- /Assets/Scripts/PlanetSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/PlanetSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/PlanetSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/PlanetSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ShipSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/ShipSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/ShipSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2443083640064fc082f7b95499c6c9eb 3 | timeCreated: 1705909968 -------------------------------------------------------------------------------- /Assets/Scripts/SimulationRateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/SimulationRateSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/SimulationRateSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/SimulationRateSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TeamAISystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/TeamAISystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/TeamAISystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/TeamAISystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/EventRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/EventRegistry.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/EventRegistry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/EventRegistry.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/GameStatsScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/GameStatsScreen.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/GameStatsScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e83c97990c84e39b99c99bc5d7ae0ab 3 | timeCreated: 1710284795 -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/HUDScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/HUDScreen.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/HUDScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7ba665a71af4175832ea48ed64f3f2d 3 | timeCreated: 1708546807 -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/HomeScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/HomeScreen.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/HomeScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/HomeScreen.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/PlanetStatsScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/PlanetStatsScreen.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/PlanetStatsScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/PlanetStatsScreen.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsScreen.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsScreen.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d979291090924f9c9276250005ea0162 3 | timeCreated: 1709574229 -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/FighterSettingsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsSections/FighterSettingsData.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/FighterSettingsData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a595d81202349ec88cf0e2cc40a1bce 3 | timeCreated: 1709772676 -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/ShipSettingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsSections/ShipSettingData.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/ShipSettingData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2470f8d8dcf47e5ba9eba6b6b0eb891 3 | timeCreated: 1709574220 -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/TraderSettingsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsSections/TraderSettingsData.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/TraderSettingsData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsSections/TraderSettingsData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/WorkerSettingsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/Screens/SettingsSections/WorkerSettingsData.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Screens/SettingsSections/WorkerSettingsData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d742e47fdc74040bcd025bd1b151af7 3 | timeCreated: 1709772668 -------------------------------------------------------------------------------- /Assets/Scripts/UI/SimulationPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/SimulationPresenter.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/SimulationPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23146c8a911c41d09595bc0c7a164f18 3 | timeCreated: 1708463693 -------------------------------------------------------------------------------- /Assets/Scripts/UI/TabMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/TabMenu.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/TabMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/TabMenu.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIEvents.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIEvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIEvents.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIInputPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIInputPresenter.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIInputPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561006f07c9e46618a19ec81a5cceb79 3 | timeCreated: 1710197201 -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIRequests.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIRequests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8109f60da1444093880118acc79255a3 3 | timeCreated: 1708444114 -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIScreen.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UI/UIScreen.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UISystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/UISystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/UISystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f33067543238434eb16cc38119538da8 3 | timeCreated: 1709668883 -------------------------------------------------------------------------------- /Assets/Scripts/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/AIProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/AIProcessor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/AIProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/AIProcessor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/BlobAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/BlobAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/BlobAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/BlobAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/CursorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/CursorUtils.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/CursorUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/CursorUtils.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/GameUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/GameUtilities.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/GameUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/GameUtilities.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/ManagedResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/ManagedResources.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/ManagedResources.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/ManagedResources.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/MathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/MathUtilities.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/MathUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/MathUtilities.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/PlanetAssessmentCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/PlanetAssessmentCollector.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/PlanetAssessmentCollector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/PlanetAssessmentCollector.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/PlanetNavigationGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/PlanetNavigationGrid.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/PlanetNavigationGrid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/PlanetNavigationGrid.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/ShipQueryCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/ShipQueryCollector.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/ShipQueryCollector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/ShipQueryCollector.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SimulationDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SimulationDebug.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SimulationDebug.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SimulationDebug.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/BuildSpatialDatabaseGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/BuildSpatialDatabaseGroup.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/BuildSpatialDatabaseGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/BuildSpatialDatabaseGroup.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/ClearSpatialDatabaseSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/ClearSpatialDatabaseSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/ClearSpatialDatabaseSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/ClearSpatialDatabaseSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabase.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabase.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabaseAuthoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabaseAuthoring.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabaseAuthoring.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/SpatialDatabaseAuthoring.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/UniformOriginGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/UniformOriginGrid.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpatialDatabase/UniformOriginGrid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/Utilities/SpatialDatabase/UniformOriginGrid.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/VFXSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/VFXSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/VFXSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Scripts/VFXSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/Build Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Build Profiles.meta -------------------------------------------------------------------------------- /Assets/Settings/Build Profiles/Windows_Dev.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Build Profiles/Windows_Dev.asset -------------------------------------------------------------------------------- /Assets/Settings/Build Profiles/Windows_Dev.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Build Profiles/Windows_Dev.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/Build Profiles/Windows_Release.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Build Profiles/Windows_Release.asset -------------------------------------------------------------------------------- /Assets/Settings/Build Profiles/Windows_Release.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Build Profiles/Windows_Release.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Game.meta -------------------------------------------------------------------------------- /Assets/Settings/Game/TurretData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Game/TurretData.asset -------------------------------------------------------------------------------- /Assets/Settings/Game/TurretData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Game/TurretData.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/MainLightingSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/MainLightingSettings.lighting -------------------------------------------------------------------------------- /Assets/Settings/MainLightingSettings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/MainLightingSettings.lighting.meta -------------------------------------------------------------------------------- /Assets/Settings/Renderer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer.meta -------------------------------------------------------------------------------- /Assets/Settings/Renderer/SampleSceneProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/SampleSceneProfile.asset -------------------------------------------------------------------------------- /Assets/Settings/Renderer/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/SampleSceneProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/Renderer/URP-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/URP-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/Renderer/URP-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/URP-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/Renderer/URP-Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/URP-Settings.asset -------------------------------------------------------------------------------- /Assets/Settings/Renderer/URP-Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/URP-Settings.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/Renderer/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/Settings/Renderer/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Settings/Renderer/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Textures/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Textures/UI.meta -------------------------------------------------------------------------------- /Assets/Textures/UI/ui-atlas.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Textures/UI/ui-atlas.psd -------------------------------------------------------------------------------- /Assets/Textures/UI/ui-atlas.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/Textures/UI/ui-atlas.psd.meta -------------------------------------------------------------------------------- /Assets/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI.meta -------------------------------------------------------------------------------- /Assets/UI/PanelSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/PanelSettings.asset -------------------------------------------------------------------------------- /Assets/UI/PanelSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/PanelSettings.asset.meta -------------------------------------------------------------------------------- /Assets/UI/UnityThemes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/UnityThemes.meta -------------------------------------------------------------------------------- /Assets/UI/UnityThemes/UnityDefaultRuntimeTheme.tss: -------------------------------------------------------------------------------- 1 | @import url("unity-theme://default"); -------------------------------------------------------------------------------- /Assets/UI/UnityThemes/UnityDefaultRuntimeTheme.tss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/UnityThemes/UnityDefaultRuntimeTheme.tss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss/Buttons.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Buttons.uss -------------------------------------------------------------------------------- /Assets/UI/Uss/Buttons.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Buttons.uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss/Common.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Common.uss -------------------------------------------------------------------------------- /Assets/UI/Uss/Common.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Common.uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss/Controls.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Controls.uss -------------------------------------------------------------------------------- /Assets/UI/Uss/Controls.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Controls.uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss/GameStats.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/GameStats.uss -------------------------------------------------------------------------------- /Assets/UI/Uss/GameStats.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/GameStats.uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss/Settings.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Settings.uss -------------------------------------------------------------------------------- /Assets/UI/Uss/Settings.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Settings.uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uss/Stats.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Stats.uss -------------------------------------------------------------------------------- /Assets/UI/Uss/Stats.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uss/Stats.uss.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml/GameStatsScreen.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/GameStatsScreen.uxml -------------------------------------------------------------------------------- /Assets/UI/Uxml/GameStatsScreen.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/GameStatsScreen.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml/HUD.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/HUD.uxml -------------------------------------------------------------------------------- /Assets/UI/Uxml/HUD.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/HUD.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml/HomeScreen.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/HomeScreen.uxml -------------------------------------------------------------------------------- /Assets/UI/Uxml/HomeScreen.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/HomeScreen.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml/PlanetStatsScreen.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/PlanetStatsScreen.uxml -------------------------------------------------------------------------------- /Assets/UI/Uxml/PlanetStatsScreen.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/PlanetStatsScreen.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml/SettingScreen.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/SettingScreen.uxml -------------------------------------------------------------------------------- /Assets/UI/Uxml/SettingScreen.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/SettingScreen.uxml.meta -------------------------------------------------------------------------------- /Assets/UI/Uxml/UIScreens.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/UIScreens.uxml -------------------------------------------------------------------------------- /Assets/UI/Uxml/UIScreens.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UI/Uxml/UIScreens.uxml.meta -------------------------------------------------------------------------------- /Assets/UnityDefaultRuntimeTheme.tss: -------------------------------------------------------------------------------- 1 | @import url("unity-theme://default"); 2 | VisualElement {} -------------------------------------------------------------------------------- /Assets/UnityDefaultRuntimeTheme.tss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/UnityDefaultRuntimeTheme.tss.meta -------------------------------------------------------------------------------- /Assets/VFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX.meta -------------------------------------------------------------------------------- /Assets/VFX/ExplosionsGraph.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX/ExplosionsGraph.vfx -------------------------------------------------------------------------------- /Assets/VFX/ExplosionsGraph.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX/ExplosionsGraph.vfx.meta -------------------------------------------------------------------------------- /Assets/VFX/HitSparksGraph.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX/HitSparksGraph.vfx -------------------------------------------------------------------------------- /Assets/VFX/HitSparksGraph.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX/HitSparksGraph.vfx.meta -------------------------------------------------------------------------------- /Assets/VFX/ShipThrustersGraph.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX/ShipThrustersGraph.vfx -------------------------------------------------------------------------------- /Assets/VFX/ShipThrustersGraph.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Assets/VFX/ShipThrustersGraph.vfx.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_Android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/BurstAotSettings_Android.json -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EntitiesClientSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/EntitiesClientSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/README.md -------------------------------------------------------------------------------- /_Documentation/Images/GalaxySample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/GalaxySample.gif -------------------------------------------------------------------------------- /_Documentation/Images/debug-fighter-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-fighter-actions.png -------------------------------------------------------------------------------- /_Documentation/Images/debug-planet-nav-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-planet-nav-grid.png -------------------------------------------------------------------------------- /_Documentation/Images/debug-planet-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-planet-network.png -------------------------------------------------------------------------------- /_Documentation/Images/debug-ship-assessment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-ship-assessment.png -------------------------------------------------------------------------------- /_Documentation/Images/debug-spatial-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-spatial-database.png -------------------------------------------------------------------------------- /_Documentation/Images/debug-trader-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-trader-actions.png -------------------------------------------------------------------------------- /_Documentation/Images/debug-worker-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/debug-worker-actions.png -------------------------------------------------------------------------------- /_Documentation/Images/factory-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/factory-a.png -------------------------------------------------------------------------------- /_Documentation/Images/fighter-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/fighter-a.png -------------------------------------------------------------------------------- /_Documentation/Images/fighter-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/fighter-b.png -------------------------------------------------------------------------------- /_Documentation/Images/fighter-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/fighter-c.png -------------------------------------------------------------------------------- /_Documentation/Images/research-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/research-a.png -------------------------------------------------------------------------------- /_Documentation/Images/research-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/research-b.png -------------------------------------------------------------------------------- /_Documentation/Images/research-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/research-c.png -------------------------------------------------------------------------------- /_Documentation/Images/trader-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/trader-a.png -------------------------------------------------------------------------------- /_Documentation/Images/trader-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/trader-b.png -------------------------------------------------------------------------------- /_Documentation/Images/turret-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/turret-a.png -------------------------------------------------------------------------------- /_Documentation/Images/turret-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/turret-b.png -------------------------------------------------------------------------------- /_Documentation/Images/worker-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/worker-a.png -------------------------------------------------------------------------------- /_Documentation/Images/worker-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/Images/worker-b.png -------------------------------------------------------------------------------- /_Documentation/code-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/code-overview.md -------------------------------------------------------------------------------- /_Documentation/debug-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/debug-views.md -------------------------------------------------------------------------------- /_Documentation/game-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ECSGalaxySample/HEAD/_Documentation/game-overview.md --------------------------------------------------------------------------------