HiddenMonk / Unity3DCustomCharacterControllerCapsuleCollisionDetection

A custom unity3d capsule character controller that uses its own collision detection system.
MIT License
102 stars 26 forks source link

'ConvexHull' does not contain a definition for 'Create' #2

Closed meckzqz closed 4 years ago

meckzqz commented 4 years ago

Opening this repository in Unity 2019.3.12f1 yields an error on line 30 of ConvexHullGenerator.cs. A static method called Create on ConvexHull is being used, but it does not exist.

meckzqz commented 4 years ago

var hull = MIConvexHull.ConvexHull.Create(verts, .000001f);

Perhaps this will fix the issue?

HiddenMonk commented 4 years ago

Ah yes, thank you =). The reason I didnt have the error on my end is because I apparently had the class named differently, so it didnt have trouble knowing which ConvexHull static class to use.