├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Boids Simulation.csproj ├── Boids Simulation.sln ├── README.md ├── Rect.png ├── Rect.png.import ├── icon.svg ├── icon.svg.import ├── project.godot ├── scenes └── Main.tscn ├── scripts └── Main.cs └── shaders ├── compute.glsl └── compute.glsl.import /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Boids Simulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/Boids Simulation.csproj -------------------------------------------------------------------------------- /Boids Simulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/Boids Simulation.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/README.md -------------------------------------------------------------------------------- /Rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/Rect.png -------------------------------------------------------------------------------- /Rect.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/Rect.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/project.godot -------------------------------------------------------------------------------- /scenes/Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/scenes/Main.tscn -------------------------------------------------------------------------------- /scripts/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/scripts/Main.cs -------------------------------------------------------------------------------- /shaders/compute.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/shaders/compute.glsl -------------------------------------------------------------------------------- /shaders/compute.glsl.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarshcat/BoidsSim/HEAD/shaders/compute.glsl.import --------------------------------------------------------------------------------