[ad_1]
C# で Autodesk Forge モデルを実行しています。 問題に遭遇します:
THREE.WebGLRenderer 71
hammer.js:1 THREE.WebGLRenderer 71
Can't use multiple render targets. Falling back to two passes. 36061
Error while processing SVF:
codeprojectForge.PNG – Google ドライブ[^]
私が試したこと:
この会社のマニュアルをグーグルで調べても役に立ちませんでした:
API | オートデスク フォージ[^]
codeprojectForge.PNG – Google ドライブ[^]
解決策は次のとおりです。
Web.config に次を追加します。
<system.webServer> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> </handlers> <staticContent> <mimeMap fileExtension=".svf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".pf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".pack" mimeType="application/octet-stream" /> </staticContent> </system.webServer>
解決策 1
上で AutoDesk Forge サポート ページ[^]:
Forge サポート チームは StackOverflow を監視し、Forge 関連のタグが付いたすべての質問に回答します。
多くの場合、Forge 開発者コミュニティのメンバーもアドバイスを提供します。
そこで、質問をする必要があります。
解決策 2
web.config に次の 3 行を追加するだけです。
<staticContent> <mimeMap fileExtension=".svf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".pf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".pack" mimeType="application/octet-stream" /> </staticContent>
例のように:
<system.webServer> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> </handlers> <staticContent> <mimeMap fileExtension=".svf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".pf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".pack" mimeType="application/octet-stream" /> </staticContent> </system.webServer>
[ad_2]
コメント