-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON build error #51
Comments
Thanks for reporting. Will look into it. |
Just search and replace JSON.Parse with JSONNode.Parse |
I'm unable to recreate this issue in |
@michaelboccara which platform were you building for? Windows? |
Hi, ok I know why the problem is happening with me only: I have other JSON packages installed in my project (with JSON as a namespace rather than a static class). Still strange that the compiler handles this ambiguity in such a bad way. For this package I guess it would be safer to use an explicit naming Vimeo.SimpleJSON.JSON. Or at least SimpleJSON.JSON. |
I have a forked branch that reproduces the problem and suggests a fix. Basically I suggest, to avoid problems, not to use the JSON static class, and write |
Fixed in #65 - now in |
Describe the issue
Build errors:
Assets/Vimeo/Scripts/Player/VimeoPlayer.cs(339,34): error CS0234: The type or namespace name
Parse' does not exist in the namespace
JSON'. Are you missing an assembly reference?Assets/Vimeo/Scripts/Recorder/VimeoPublisher.cs(55,42): error CS0234: The type or namespace name
Parse' does not exist in the namespace
JSON'. Are you missing an assembly reference?Assets/Vimeo/Scripts/Recorder/VimeoPublisher.cs(129,34): error CS0234: The type or namespace name
Parse' does not exist in the namespace
JSON'. Are you missing an assembly reference?Assets/Vimeo/Scripts/Recorder/VimeoPublisher.cs(147,34): error CS0234: The type or namespace name
Parse' does not exist in the namespace
JSON'. Are you missing an assembly reference?Assets/Vimeo/Scripts/Services/VimeoUploader.cs(93,37): error CS0234: The type or namespace name
Parse' does not exist in the namespace
JSON'. Are you missing an assembly reference?Steps to reproduce the problem
Import package vimeo-0.9.3.unitypackage
Build
Unity version
Unity 2017.3.1f1
vimeo-0.9.3.unitypackage
Operating system
Windows 10
The text was updated successfully, but these errors were encountered: