2017-03-12 17 views
0

このエラーについて教えてください。私は多くを検索しますが、何も見つかりませんでした。ユニティ名 'unzip'は現在のコンテキストに存在しません

/*====== Copyright (c) 2013-2014 Qualcomm Connected Experiences, Inc. All Rights Reserved. Qualcomm Confidential and Proprietary =========*/ 

using System.IO; 
using UnityEditor; 

namespace Vuforia.EditorClasses { 

    /// <summary> 
    /// class wrapping a JS functionality to unzip a file, registers itself at the Unzipper Singleton to provide the functionality. 
    /// </summary> 
    [InitializeOnLoad] 
    public class SharpZipLibUnzipper : IUnzipper { 
     /// <summary> 
     /// register an instance of this class at the singleton immediately 
     /// </summary> 
     static SharpZipLibUnzipper() { 
      Unzipper.Instance = new SharpZipLibUnzipper(); 
     } 

     public Stream UnzipFile(string path, string fileNameinZip) { 
      #if !EXCLUDE_JAVASCRIPT 
      return Unzip.Unzip(path, fileNameinZip); 
      #else return null; 
      #endif 
     } 
    } 
}  

enter image description here enter image description here

+3

あなたはQualcomm Connected Experiencesの著作権に違反していることをご存じですか? – rene

+0

Vuforiaの実行中にスクリプトを保存すると、このエラーが発生することがよくあります。閉じて再起動すると、私のエラーが削除されます。なぜ彼は違反ですか? SharpZipLibUnzipperクラスは、Vuforiaパッケージの一部です。 – Everts

+0

@Evertsコードスニペットに著作権表示があり、ここに投稿すると、コンテンツはcc-by-saとして再ライセンスされますが、元のコードの著作権では禁止されています。私はすでにSEまたはMODチームによって強制されるものではないことを確認しましたが、元の著作権者は[DMCA](https://meta.stackexchange.com/questions)を訴追および/または提出する法的権利を有しています/ 291995/do-stack-exchange-sites-allow-to-copy-copyright-in-code-snippets/291998#291998)リクエスト。だから、それは何よりも警告です。 – rene

答えて

0

ビルド時にエラーを構築するが、取得するときに発生します。 Vuforiaは要素を再読み込みしようとしますが、要素を見つけられません。エラーを修正してプラットフォームを切り替えて、作成中のプラットフォームに戻ったり、エディタを再起動したりすることができます。

関連する問題