Hi! I need particle, who follows my cursor. For now I have made 3d particles on a view. Here is my code:
------------------------------------------------
var prtPos[3];
vec_set(prtPos, vector(mouse_cursor.x, mouse_cursor.y, 1500));
vec_for_screen(prtPos, particles_view);
effect(special_effect, 10, prtPos, nullvector);
--------------------------------------------------
It´s great, but if I make my panel visible (on a negative layer), I can see only my cursor, but not the particles.
Can anyone help me or are 2d particles much better for this effect?
Regards