There are various examples of running Processing in Eclipse and IntelliJ, but You have to make settings in each environment. If there is a template to use from Ant, I think it will be easy to change the editor to use according to the work you want to make and the mood at that time.
The template is published here. https://github.com/enkatsu/ProcessingAnt
How to use
#Install if you don't have Ant
$ brew install ant
#Verification
$ ant -version
$ git clone [email protected]:enkatsu/ProcessingAnt.git
$ cd ProcessingAnt
# build.Edit xml(It may be easier to reuse if you save it somewhere at the time of editing)
# ...
# <property name="p5core" location="path/to/core_dir"/>
# <property name="p5dir" location="path/to/processing_dir"/>
#Example)
# <property name="p5core" location="/Applications/Processing.app/Contents/Java/core/library"/>
# <property name="p5core" location="/Users/User name/Documents/Processing"/>
# ...
#Run
$ ant
Recommended Posts