[GenesisFX] Deploying via JWS with OSX

So I’m deploying GenesisFX (version 1.2) via JWS and have received this error when I load up the Scene. I’m using OSX Leopard (which is Sun JRE 1.5.0_13)


Genesis FX (TM) Particle System v1.2 Developer Edition
(c) Copyright 2007 indie technologies, all rights reserved
Exception in thread "Thread-7" java.lang.NoSuchMethodError: com.indie.genesis.j3d.ParticleSystemManager.setName(Ljava/lang/String;)V
   at com.indie.genesis.j3d.effects.Effect.getManager(Effect.java:714)
   at com.indie.genesis.j3d.effects.Effect.buildParticleSystem(Effect.java:495)
   at com.indie.genesis.j3d.effects.Effect.build(Effect.java:470)
   at com.indie.genesis.j3d.effects.Effect.rewind(Effect.java:1124)

Any idea what might be causing this? It works fine in GNU/Linux.

Check the level of Java 3D installed on OSX. I believe that method was introduced a while ago (J3D 1.3 or 1.4?).

Mike

Ah, so you can’t over-ride the installed java3d in OSX from the jnlp file?

I tried something like this and it doesn’t work.


<resources os="windows Linux">
    <j2se version="1.5+" />
</resources>
<resources os="Mac OS">
   <j2se version="1.5+">
      <property name="j3d.rend" value="jogl"/>
   </j2se>
</resources>

Am I doing something wrong?