-
Notifications
You must be signed in to change notification settings - Fork 428
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
unityのwww対応 #239
unityのwww対応 #239
Conversation
hiroj
commented
Apr 24, 2019
- WWWからUnityWebRequestTextureに変更
Texture.name = m_textureName; | ||
} | ||
} | ||
#elif UNITY_5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここは else
とするか、 あるいは条件分岐の最後に
+ #else
+ #error Unsupported Unity version
#endif
を追加することをお勧めします。今後何かのヒューマンエラーで条件に合致しない場合が発生してしまった場合、何も警告無く通信が行われないバグが発生する可能性があるからです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
レビューありがとうございます、修正入れます
@hiroj あ、すみませんこれ細かい指摘なのですが、
というコードを追加していただきましたが、そうではなく
としていただけないでしょうか? |
なるほど、了解しました |