mirror of
https://github.com/Xevion/Boids.git
synced 2025-12-14 16:11:05 -06:00
add all files, project init
This commit is contained in:
23
Assets/BoidController.cs
Normal file
23
Assets/BoidController.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using Unity.Mathematics;
|
||||
using KNN;
|
||||
using KNN.Jobs;
|
||||
|
||||
public class BoidController : MonoBehaviour {
|
||||
public int BoidCount = 1000;
|
||||
public int BoidGroupRange = 1.0f;
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user