add all files, project init

This commit is contained in:
Xevion
2020-05-16 09:19:27 -05:00
parent 5ebc31c4e1
commit 39af1b95f7
29 changed files with 1814 additions and 0 deletions

23
Assets/BoidController.cs Normal file
View 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()
{
}
}