├── .gitignore ├── Assets ├── Materials.meta ├── Materials │ ├── Default.mat │ ├── Default.mat.meta │ ├── Universal Render Pipeline_Custom_UnlitWithDotsInstancing.mat │ └── Universal Render Pipeline_Custom_UnlitWithDotsInstancing.mat.meta ├── Prefabs.meta ├── Prefabs │ ├── Cube.prefab │ └── Cube.prefab.meta ├── Readme.asset ├── Readme.asset.meta ├── Scenes.meta ├── Scenes │ ├── BoidBRGScene.meta │ ├── BoidBRGScene.unity │ ├── BoidBRGScene.unity.meta │ └── BoidBRGScene │ │ ├── GlobalVolumeProfile.asset │ │ ├── GlobalVolumeProfile.asset.meta │ │ ├── Volume.png │ │ ├── Volume.png.meta │ │ ├── VolumeProfileAsset.png │ │ └── VolumeProfileAsset.png.meta ├── Scripts.meta ├── Scripts │ ├── BatchRendererGroupExample.meta │ ├── BatchRendererGroupExample │ │ ├── BatchRenderGroupBoidsRunner.cs │ │ ├── BatchRenderGroupBoidsRunner.cs.meta │ │ ├── ColoredBRGExample.cs │ │ ├── ColoredBRGExample.cs.meta │ │ ├── CopyMatricesJob.cs │ │ ├── CopyMatricesJob.cs.meta │ │ ├── SimpleBRGExample.cs │ │ └── SimpleBRGExample.cs.meta │ ├── GameObjectsExample.meta │ ├── GameObjectsExample │ │ ├── SimpleGameObjectsExample.cs │ │ └── SimpleGameObjectsExample.cs.meta │ ├── ThousandAnt.Boids.meta │ └── ThousandAnt.Boids │ │ ├── Boids.cs │ │ ├── Boids.cs.meta │ │ ├── BoidsPointerOnly.cs │ │ ├── BoidsPointerOnly.cs.meta │ │ ├── GameObjectsBoidsRunner.cs │ │ ├── GameObjectsBoidsRunner.cs.meta │ │ ├── InstancedBoidsRunner.cs │ │ ├── InstancedBoidsRunner.cs.meta │ │ ├── MaxJobUtility.cs │ │ ├── MaxJobUtility.cs.meta │ │ ├── Runner.cs │ │ ├── Runner.cs.meta │ │ ├── TransformExtensions.cs │ │ └── TransformExtensions.cs.meta ├── Settings.meta ├── Settings │ ├── SampleSceneProfile.asset │ ├── SampleSceneProfile.asset.meta │ ├── URP-Balanced-Renderer.asset │ ├── URP-Balanced-Renderer.asset.meta │ ├── URP-Balanced.asset │ ├── URP-Balanced.asset.meta │ ├── URP-HighFidelity-Renderer.asset │ ├── URP-HighFidelity-Renderer.asset.meta │ ├── URP-HighFidelity.asset │ ├── URP-HighFidelity.asset.meta │ ├── URP-Performant-Renderer.asset │ ├── URP-Performant-Renderer.asset.meta │ ├── URP-Performant.asset │ └── URP-Performant.asset.meta ├── Shaders.meta ├── Shaders │ ├── CustomURPUnlit.shader │ └── CustomURPUnlit.shader.meta ├── TutorialInfo.meta ├── TutorialInfo │ ├── Icons.meta │ ├── Icons │ │ ├── URP.png │ │ └── URP.png.meta │ ├── Layout.wlt │ ├── Layout.wlt.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ReadmeEditor.cs │ │ └── ReadmeEditor.cs.meta │ │ ├── Readme.cs │ │ └── Readme.cs.meta ├── UniversalRenderPipelineGlobalSettings.asset └── UniversalRenderPipelineGlobalSettings.asset.meta ├── BRG_Boids.gif ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── URP_shader_with_dots_instancing_support.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Materials/Default.mat -------------------------------------------------------------------------------- /Assets/Materials/Default.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Materials/Default.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Universal Render Pipeline_Custom_UnlitWithDotsInstancing.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Materials/Universal Render Pipeline_Custom_UnlitWithDotsInstancing.mat -------------------------------------------------------------------------------- /Assets/Materials/Universal Render Pipeline_Custom_UnlitWithDotsInstancing.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Materials/Universal Render Pipeline_Custom_UnlitWithDotsInstancing.mat.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Prefabs/Cube.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Prefabs/Cube.prefab.meta -------------------------------------------------------------------------------- /Assets/Readme.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Readme.asset -------------------------------------------------------------------------------- /Assets/Readme.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Readme.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene.meta -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene/GlobalVolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene/GlobalVolumeProfile.asset -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene/GlobalVolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene/GlobalVolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene/Volume.png -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene/Volume.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene/Volume.png.meta -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene/VolumeProfileAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene/VolumeProfileAsset.png -------------------------------------------------------------------------------- /Assets/Scenes/BoidBRGScene/VolumeProfileAsset.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scenes/BoidBRGScene/VolumeProfileAsset.png.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 959050f2f27245739ea0b66dddfb6872 3 | timeCreated: 1647385591 -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/BatchRenderGroupBoidsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/BatchRendererGroupExample/BatchRenderGroupBoidsRunner.cs -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/BatchRenderGroupBoidsRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7233b936c3249cfa3b29724a405ae58 3 | timeCreated: 1645738975 -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/ColoredBRGExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/BatchRendererGroupExample/ColoredBRGExample.cs -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/ColoredBRGExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24996138bebb40ffac922675ebd1e9fb 3 | timeCreated: 1649864587 -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/CopyMatricesJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/BatchRendererGroupExample/CopyMatricesJob.cs -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/CopyMatricesJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e26aa0ba257e47358edc2f9d649022e2 3 | timeCreated: 1647689971 -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/SimpleBRGExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/BatchRendererGroupExample/SimpleBRGExample.cs -------------------------------------------------------------------------------- /Assets/Scripts/BatchRendererGroupExample/SimpleBRGExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 097ea2ce0d654181915a091c381e35a3 3 | timeCreated: 1646937481 -------------------------------------------------------------------------------- /Assets/Scripts/GameObjectsExample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ce67c6b348649a998cb4a6a285887d1 3 | timeCreated: 1647690016 -------------------------------------------------------------------------------- /Assets/Scripts/GameObjectsExample/SimpleGameObjectsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/GameObjectsExample/SimpleGameObjectsExample.cs -------------------------------------------------------------------------------- /Assets/Scripts/GameObjectsExample/SimpleGameObjectsExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bad99df8c384725b49fc90797ed9d81 3 | timeCreated: 1647687215 -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/Boids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/Boids.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/Boids.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/Boids.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/BoidsPointerOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/BoidsPointerOnly.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/BoidsPointerOnly.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/BoidsPointerOnly.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/GameObjectsBoidsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/GameObjectsBoidsRunner.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/GameObjectsBoidsRunner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/GameObjectsBoidsRunner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/InstancedBoidsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/InstancedBoidsRunner.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/InstancedBoidsRunner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/InstancedBoidsRunner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/MaxJobUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/MaxJobUtility.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/MaxJobUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/MaxJobUtility.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/Runner.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/Runner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/Runner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/TransformExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/TransformExtensions.cs -------------------------------------------------------------------------------- /Assets/Scripts/ThousandAnt.Boids/TransformExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Scripts/ThousandAnt.Boids/TransformExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/SampleSceneProfile.asset -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/SampleSceneProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Balanced-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Balanced-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Balanced.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Balanced.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Balanced.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-HighFidelity-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-HighFidelity-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-HighFidelity.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-HighFidelity.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-HighFidelity.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Performant-Renderer.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Performant-Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Performant.asset -------------------------------------------------------------------------------- /Assets/Settings/URP-Performant.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Settings/URP-Performant.asset.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62dfec76bc394bd99fa92fcd910b6a9d 3 | timeCreated: 1649864697 -------------------------------------------------------------------------------- /Assets/Shaders/CustomURPUnlit.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/Shaders/CustomURPUnlit.shader -------------------------------------------------------------------------------- /Assets/Shaders/CustomURPUnlit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69b681e7d85d4368b8995e1fcf3eb148 3 | timeCreated: 1649864588 -------------------------------------------------------------------------------- /Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Icons.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons/URP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Icons/URP.png -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons/URP.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Icons/URP.png.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Layout.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Layout.wlt -------------------------------------------------------------------------------- /Assets/TutorialInfo/Layout.wlt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Layout.wlt.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Scripts.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Readme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Scripts/Readme.cs -------------------------------------------------------------------------------- /Assets/TutorialInfo/Scripts/Readme.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/TutorialInfo/Scripts/Readme.cs.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Assets/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /BRG_Boids.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/BRG_Boids.gif -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/README.md -------------------------------------------------------------------------------- /URP_shader_with_dots_instancing_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexMerzlikin/Unity-BatchRendererGroup-Boids/HEAD/URP_shader_with_dots_instancing_support.png --------------------------------------------------------------------------------