Skip to content

Instantly share code, notes, and snippets.

@gyohk
Last active March 2, 2023 12:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gyohk/923a32e9b1e64ba79017a22d3f9de893 to your computer and use it in GitHub Desktop.
Save gyohk/923a32e9b1e64ba79017a22d3f9de893 to your computer and use it in GitHub Desktop.
processing3.x で P2D、P3Dモードの起動が遅い問題への対応

processing3.x で P2D、P3Dモードを使用した時、ウィルススキャナーの影響により起動までに数分かかることがある問題への対応(windows版)。

processing/processing#4783

使用方法: このスクリプトをバッチファイルとして保存した後、processing IDEの起動前に実行します。

@echo off

echo workaround the problem to slow startup when used in P2D, P3D mode In Processing3
echo see https://github.com/processing/processing/issues/4783

:top

timeout 3 > nul

taskkill /F /FI "IMAGENAME eq jogamp_exe_tst*" /IM * > nul

goto top
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment