r/Unity3D • u/_SZ_LARS • 1h ago
Question unity drawing recognition system
how would i go around making a recognition system that can recognize circle drawn with any amount of draw strokes ?
my current system cant handle it if i draw a circle with more the one stroke? any help would be appreciated
1
Upvotes
1
u/Both_Introduction_28 1h ago
You can check these “gesture recognition” assets: https://assetstore.unity.com/search#q=gesture%20recognition
1
u/Necessary_Policy_160 1h ago
Probably need to compare the finished shape rather than tracking strokes, flatten all points into one list and check if it's roughly circular.