ARjs_Unity icon indicating copy to clipboard operation
ARjs_Unity copied to clipboard

Compile file - No Animation include.

Open max903 opened this issue 3 years ago • 0 comments

It was noted that in the the compile file dose not include the animation.

After a code review, I find a fix.

Directory.Exists > File.Exists

e.g. if(Directory.Exists(cubeAnimationFilePath)) > if(File.Exists(cubeAnimationFilePath))

max903 avatar May 21 '21 08:05 max903