I am using particle effect in libgdx. When I load file using Gdx.files.internal command it shows exception like this com.badlogic.gdx.utils.GdxRuntimeException: File not found: data\image.p (Internal), my code is given below...
ParticleEffect effect;
effect = new ParticleEffect();
effect.load(Gdx.files.internal("data/image.p"), Gdx.files.internal("data"));
I am using Particle Editor tool for making effect and save the effect using save button given in the tool.I think there is problem of making particleEffect.p file.Help me...???