wtct-hungary / UnityVision-iOS

This native plugin enables Unity to take advantage of specific features of Core-ML and Vision Framework on the iOS platform.
MIT License
133 stars 26 forks source link

added import CoreImage to VisionNative.swift to get rid of error #9

Closed CharStiles closed 4 years ago

CharStiles commented 5 years ago

I opened up the project after not using it for a while and I was getting an Error: “use of unresolved identifier” for CIImage error on the VisionNative.swift script on line 93 // Create an image from the current state of the buffer guard let image = CIImage(mtlTexture: texture, options: nil) else { return false }

my xcode is Version 11.0 (11A420a)

adding a simple import CoreImage to the top fixed my error. I really don't know why this error happened...

sebastianbk commented 5 years ago

This pull quest should be accepted.

Macoron commented 4 years ago

+++