問題タブ [unity3d-5]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - C# で記述されたネイティブ プラグイン EntryPointNotFoundException
Unity 用のネイティブ プラグインを開発しようとしています (Unity 2017.1.0f3 および VS 2015 を使用)。私のネイティブ プラグインのターゲット プラットフォームは UWP で、プラグインは C# で記述されています。
以下は、プラグインのコードと Unity のスクリプトです。
Windows 10 14393 を対象とするクラス ライブラリのプラグイン コード
Unity スクリプト コード
問題は、実行時に次EntryPointNotFoundException
のメッセージが表示されることです:
Unable to find an entry point named 'SaveSetting' in DLL UnityPluginTestUWP.dll'
これは、コンパイラによる関数名のマングリングが原因で発生する可能性があることをオンラインで読みました。しかし、これは C++ コードのみでした。私のプラグインは C# で書かれています。
これを克服するための助けは大歓迎です。